diff --git a/.all-contributorsrc b/.all-contributorsrc
index 4bc1b0f09..066022540 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -54,9 +54,9 @@
},
{
"login": "AnonymousRandomPerson",
- "name": "Cheng Hann Gan",
+ "name": "AnonymousRandomPerson",
"avatar_url": "https://avatars.githubusercontent.com/u/6516839?v=4",
- "profile": "https://www.linkedin.com/in/chenghanngan/",
+ "profile": "https://github.com/AnonymousRandomPerson",
"contributions": [
"data",
"content",
diff --git a/.github/workflows/validate-json.yml b/.github/workflows/validate-json.yml
index b92b01faf..d5a8ef208 100644
--- a/.github/workflows/validate-json.yml
+++ b/.github/workflows/validate-json.yml
@@ -14,4 +14,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Validate JSON
- run: python3 tools/ci/validate_json.py web/atlas.json
\ No newline at end of file
+ run: |
+ pip3 install -r tools/ci/requirements.txt
+ python3 tools/ci/validate_json.py web/atlas.json tools/atlas.schema.json
\ No newline at end of file
diff --git a/README.md b/README.md
index a2a7ead57..18b3a92dd 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Stefano 💼 💻 🖋 🔣 🎨 🔍 🚇 🚧 📆 💬 🛡️ |
ash 💼 🖋 🔣 📆 👀 |
Aeywoo 💼 🐛 📝 🖋 🚧 🔬 |
- Cheng Hann Gan 🔣 🖋 🔬 💻 👀 |
+ AnonymousRandomPerson 🔣 🖋 🔬 💻 👀 |
mxdanger 💻 ️️️️♿️ 🐛 🎨 🤔 🚇 🚧 🔧 📓 |
Riley 🔣 🎨 📖 |
diff --git a/data/read-ids.txt b/data/read-ids.txt
index e31baec15..6c454dd39 100644
--- a/data/read-ids.txt
+++ b/data/read-ids.txt
@@ -12428,3 +12428,119 @@ zznclm
139750p
1396rq0
1396qh3
+139wliz
+139wkmg
+139wjth
+139win7
+139what
+139w6dx
+139w0dh
+139vkgm
+139x6q4
+139xofp
+139y7xc
+139y728
+139y4rq
+139xuo3
+139yrf8
+139yn8c
+139z0j3
+139zq2j
+13a03ls
+13a01du
+139zygq
+13a0c0u
+13a4aaj
+13a0kev
+13avsr7
+13avdmn
+13avbsh
+13b11x8
+13b0xy9
+13b0w09
+13b0uc2
+13b08t4
+13b06h3
+13b03y1
+13azjxp
+13c4o37
+13bvrmh
+13bbziq
+13bbvd1
+13c6z07
+13c6xr4
+13c6wlj
+13c6l1x
+13ca1kf
+13cbab1
+13cb6v0
+13cb4yy
+13cb3pc
+13da1zp
+13d9zrw
+13d9yx5
+13d9y0u
+13d9wlp
+13d9u5j
+13d9sou
+13dad21
+13e8ko4
+13e8hw8
+13e8fnb
+13e8943
+13e7l9n
+13e9oxm
+13e9nef
+13e9j4h
+13e9iaq
+13e9gpo
+13e9fsg
+13e9em9
+13e9d6p
+13e96oj
+13e91fk
+13e8tpk
+13e8o1k
+13eaf5d
+13eacvv
+13eablm
+13eb65e
+13eazw4
+13eaxib
+13f4got
+13f4aqb
+13f688x
+13f6met
+13f6jy4
+13fxyob
+13f6pgw
+13g3og4
+13g3c5j
+13g4sgv
+13g4n8g
+13g4el8
+13g4e06
+13g4cuu
+13g486r
+13go1p1
+13gqfuf
+13gq8is
+13himoo
+13hikya
+13hik47
+13hij9x
+13hiikh
+13hhxl5
+13hhuag
+13hhqe8
+13hhnl3
+13hga6l
+13hl0t9
+13hkwy4
+13hktj5
+13hks74
+13hkf6u
+13hk919
+13hk6vp
+13hl6p7
+13hlqjg
diff --git a/tools/aformatter.py b/tools/aformatter.py
index 365a68c08..01913c9b5 100644
--- a/tools/aformatter.py
+++ b/tools/aformatter.py
@@ -1,10 +1,12 @@
#!/usr/bin/python
+from io import TextIOWrapper
+from typing import List
import re
import json
import math
import traceback
-from typing import List
+import tqdm
END_NORMAL_IMAGE = "164"
END_WHITEOUT_IMAGE = "166"
@@ -302,7 +304,6 @@ def floor_points(entry: dict):
return entry
-
def validate(entry: dict):
"""
Validates the entry. Catch errors and tell warnings related to the entry.
@@ -339,16 +340,17 @@ def validate(entry: dict):
print(f"{key} of entry {entry['id']} is still invalid! {entry[key]}")
return return_status
-def per_line_entries(entries: list):
+def per_line_entries(entries: list, file: TextIOWrapper):
"""
Returns a string of all the entries, with every entry in one line.
"""
- out = "[\n"
- for entry in entries:
- if entry:
- out += json.dumps(entry, ensure_ascii=False) + ",\n"
- out = out[:-2] + "\n]"
- return out
+ file.write("[\n")
+ line_temp = ""
+ for entry in tqdm.tqdm(entries):
+ if line_temp:
+ file.write(line_temp + ",\n")
+ line_temp = json.dumps(entry, ensure_ascii=False)
+ file.write(line_temp + "\n]")
def format_all(entry: dict, silent=False):
"""
@@ -387,7 +389,7 @@ def print_(*args, **kwargs):
return entry
def format_all_entries(entries):
- for i in range(len(entries)):
+ for i in tqdm.trange(len(entries)):
try:
entry_formatted = format_all(entries[i], True)
validation_status = validate(entries[i])
@@ -399,8 +401,6 @@ def format_all_entries(entries):
except Exception:
print(f"Exception occured when formatting ID {entries[i]['id']}")
print(traceback.format_exc())
- if not (i % 200):
- print(f"{i} checked.")
def go(path):
@@ -411,10 +411,10 @@ def go(path):
format_all_entries(entries)
- print(f"{len(entries)} checked. Writing...")
+ print(f"Writing...")
with open(path, "w", encoding='utf-8', newline='\n') as f2:
- f2.write(per_line_entries(entries))
+ per_line_entries(entries, f2)
print("Writing completed. All done.")
diff --git a/tools/atlas.schema.json b/tools/atlas.schema.json
new file mode 100644
index 000000000..cf4f764de
--- /dev/null
+++ b/tools/atlas.schema.json
@@ -0,0 +1,116 @@
+{
+ "$schema": "https://json-schema.org/draft-07/schema",
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer",
+ "minimum": 0
+ }
+ ],
+ "description": "The ID of the entry. Usually this is the post ID of the new entry submission."
+ },
+ "name": {
+ "type": "string",
+ "description": "The short, descriptive name of the entry."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the entry. that will also be understood by somebody not familiar with the topic. Usually, the first sentence on Wikipedia is a good example."
+ },
+ "links": {
+ "type": "object",
+ "description": "The links related to the entry.",
+ "properties": {
+ "subreddit": {
+ "type": "array",
+ "description": "Subreddits that's either most relevant to the topic, or that was responsible for creating the artwork, excluding the r/.",
+ "items": {
+ "type": "string",
+ "description": "A subreddit that's either most relevant to the topic, or that was responsible for creating the artwork.",
+ "pattern": "^[A-Za-z0-9][A-Za-z0-9_]{1,20}$",
+ "minItems": 1
+ }
+ },
+ "website": {
+ "type": "array",
+ "description": "URL to websites related to the entry, including the http/https protocol. If you're describing a project, the project's main website would be suitable here.",
+ "items": {
+ "type": "string",
+ "description": "The URL to a website related to the entry.",
+ "pattern": "^https?://[^\\s/$.?#].[^\\s]*$",
+ "minItems": 1
+ }
+ },
+ "discord": {
+ "type": "array",
+ "description": "Invite codes of Discord servers related to the entry (excluding discord.gg/)",
+ "items": {
+ "type": "string",
+ "description": "The invite code of a Discord server related to the entry.",
+ "minItems": 1
+ }
+ },
+ "wiki": {
+ "type": "array",
+ "description": "Wiki pages related to the entry.",
+ "items": {
+ "type": "string",
+ "description": "The title of the wiki page related to the entry.",
+ "minItems": 1
+ }
+ }
+ },
+ "additionalProperties": false
+ },
+ "path": {
+ "type": "object",
+ "description": "The path of the entry.",
+ "patternProperties": {
+ "^(\\d+(-\\d+)?|\\w+(:\\d+(-\\d+)?)?)(, (\\d+(-\\d+)?|\\w+(:\\d+(-\\d+)?)?))*$": {
+ "type": "array",
+ "description": "A period containing the path points.",
+ "items": {
+ "type": "array",
+ "description": "A point.",
+ "items": {
+ "type": "number"
+ },
+ "minItems": 2,
+ "maxItems": 2
+ },
+ "minItems": 3
+ }
+ },
+ "additionalProperties": false,
+ "minProperties": 1
+ },
+ "center": {
+ "type": "object",
+ "description": "The center of the entry.",
+ "patternProperties": {
+ "^(\\d+(-\\d+)?|\\w+(:\\d+(-\\d+)?)?)(, (\\d+(-\\d+)?|\\w+(:\\d+(-\\d+)?)?))*$": {
+ "type": "array",
+ "description": "A period containing the center point.",
+ "items": {
+ "type": "number",
+ "description": "A point."
+ },
+ "minItems": 2,
+ "maxItems": 2
+ }
+ },
+ "additionalProperties": false,
+ "minProperties": 1
+ }
+ },
+ "required": ["id", "name", "description", "links", "path", "center"],
+ "additionalItems": true
+ }
+}
\ No newline at end of file
diff --git a/tools/ci/requirements.txt b/tools/ci/requirements.txt
new file mode 100644
index 000000000..7b8f01584
--- /dev/null
+++ b/tools/ci/requirements.txt
@@ -0,0 +1 @@
+jsonschema
\ No newline at end of file
diff --git a/tools/ci/validate_json.py b/tools/ci/validate_json.py
index 9f2bcfdfe..a9fc25d50 100644
--- a/tools/ci/validate_json.py
+++ b/tools/ci/validate_json.py
@@ -2,13 +2,23 @@
import sys
import json
+from jsonschema import validate
-path = "./../../web/atlas.json"
+atlasPath = "./../../web/atlas.json"
# path override as 1st param: validate_json.py path_to_file.json
if (len(sys.argv) > 1):
- path = sys.argv[1]
+ atlasPath = sys.argv[1]
-json.load(open(path, "r", encoding='utf-8'))
+schemaPath = "./../atlas.schema.json"
+
+# schema override as 2nd param: validate_json.py [...] path_to_schema.json
+if (len(sys.argv) > 2):
+ schemaPath = sys.argv[2]
+
+atlas = json.load(open(atlasPath, "r", encoding='utf-8'))
+schema = json.load(open(schemaPath, "r", encoding='utf-8'))
+
+validate(atlas, schema)
print("JSON is valid")
\ No newline at end of file
diff --git a/tools/merge_out.py b/tools/merge_out.py
index 6318fedf8..528cb1889 100644
--- a/tools/merge_out.py
+++ b/tools/merge_out.py
@@ -60,7 +60,7 @@
print('Writing...')
with open('../web/atlas.json', 'w', encoding='utf-8') as atlas_file:
- atlas_file.write(per_line_entries(atlas_json))
+ per_line_entries(atlas_json, atlas_file)
with open('../data/read-ids.txt', 'a', encoding='utf-8') as read_ids_file:
with open('temp-read-ids.txt', 'r+', encoding='utf-8') as read_ids_temp_file:
diff --git a/tools/oneoff/migrate_atlas_format.py b/tools/oneoff/migrate_atlas_format.py
index 7ec4e1578..efdb1c580 100644
--- a/tools/oneoff/migrate_atlas_format.py
+++ b/tools/oneoff/migrate_atlas_format.py
@@ -7,9 +7,12 @@
- submitted_by removed
"""
+from io import TextIOWrapper
import re
import json
+import tqdm
+
END_IMAGE = 166
INIT_CANVAS_RANGE = (1, END_IMAGE)
EXPANSION_1_RANGE = (56, END_IMAGE)
@@ -73,16 +76,17 @@ def migrate_atlas_format(entry: dict):
return toreturn
-def per_line_entries(entries: list):
+def per_line_entries(entries: list, file: TextIOWrapper):
"""
Returns a string of all the entries, with every entry in one line.
"""
- out = "[\n"
- for entry in entries:
- if entry:
- out += json.dumps(entry, ensure_ascii=False) + ",\n"
- out = out[:-2] + "\n]"
- return out
+ file.write("[\n")
+ line_temp = ""
+ for entry in tqdm.tqdm(entries):
+ if line_temp:
+ file.write(line_temp + ",\n")
+ line_temp = json.dumps(entry, ensure_ascii=False)
+ file.write(line_temp + "\n]")
if __name__ == '__main__':
@@ -93,16 +97,14 @@ def go(path):
with open(path, "r+", encoding='UTF-8') as f1:
entries = json.loads(f1.read())
- for i in range(len(entries)):
+ for i in tqdm.trange(len(entries)):
entry_formatted = migrate_atlas_format(entries[i])
entries[i] = entry_formatted
- if not (i % 1000):
- print(f"{i} checked.")
print(f"{len(entries)} checked. Writing...")
with open(path, "w", encoding='utf-8', newline='\n') as f2:
- f2.write(per_line_entries(entries))
+ per_line_entries(entries, f2)
print("Writing completed. All done.")
diff --git a/tools/redditcrawl.py b/tools/redditcrawl.py
index 9f5a4103f..f64f1cb7b 100755
--- a/tools/redditcrawl.py
+++ b/tools/redditcrawl.py
@@ -103,13 +103,13 @@ def set_flair(submission, flair):
if submission.link_flair_text == "Edit Entry":
- assert submission_json["id"] != 0, "Edit invalid because ID is tampered, it must not be 0!"
+ assert submission_json["id"] > 0, "Edit invalid because ID is tampered, it must not be 0 or -1!"
submission_json_dummy = {"id": submission_json["id"], "edit": submission.id}
else:
- assert submission_json["id"] == 0, "Edit invalid because ID is tampered, it must be 0!"
+ assert submission_json["id"] <= 0, "Addition invalid because ID is tampered, it must be 0 or -1!"
submission_json_dummy = {"id": submission.id}
diff --git a/tools/requirements.txt b/tools/requirements.txt
index 9d9d90a49..a4bb482ca 100644
--- a/tools/requirements.txt
+++ b/tools/requirements.txt
@@ -1 +1,2 @@
-praw
\ No newline at end of file
+praw
+tqdm
\ No newline at end of file
diff --git a/tools/scale_back.py b/tools/scale_back.py
index 75cd0bf4d..9cbccd2e7 100644
--- a/tools/scale_back.py
+++ b/tools/scale_back.py
@@ -1,10 +1,12 @@
#!/usr/bin/python
+from io import TextIOWrapper
import json
import traceback
import numpy
from PIL import Image, ImageDraw
import gc
+import tqdm
"""
# 166 to 164 with reference of 165
@@ -147,16 +149,17 @@ def remove_white(entry: dict):
return entry
-def per_line_entries(entries: list):
+def per_line_entries(entries: list, file: TextIOWrapper):
"""
Returns a string of all the entries, with every entry in one line.
"""
- out = "[\n"
- for entry in entries:
- if entry:
- out += json.dumps(entry, ensure_ascii=False) + ",\n"
- out = out[:-2] + "\n]"
- return out
+ file.write("[\n")
+ line_temp = ""
+ for entry in tqdm.tqdm(entries):
+ if line_temp:
+ file.write(line_temp + ",\n")
+ line_temp = json.dumps(entry, ensure_ascii=False)
+ file.write(line_temp + "\n]")
def format_all(entry: dict, silent=False):
def print_(*args, **kwargs):
@@ -168,7 +171,7 @@ def print_(*args, **kwargs):
return entry
def scale_back_entries(entries):
- for i in range(len(entries)):
+ for i in tqdm.trange(len(entries)):
try:
entry_formatted = format_all(entries[i], True)
entries[i] = entry_formatted
@@ -191,7 +194,7 @@ def go(path):
print(f"{len(entries)} checked. Writing...")
with open(path, "w", encoding='utf-8', newline='\n') as f2:
- f2.write(per_line_entries(entries))
+ per_line_entries(entries, f2)
print("Writing completed. All done.")
diff --git a/web/_js/main/draw.js b/web/_js/main/draw.js
index dafafd5aa..e5e17b2d7 100644
--- a/web/_js/main/draw.js
+++ b/web/_js/main/draw.js
@@ -260,7 +260,7 @@ function initDraw() {
function generateExportObject() {
const exportObject = {
- id: entryId ?? 0,
+ id: entryId ?? -1,
name: nameField.value,
description: descriptionField.value,
links: {},
@@ -578,7 +578,7 @@ function initDraw() {
inputButton.className = "btn btn-outline-secondary"
inputButton.title = "Remove website"
inputButton.innerHTML = ''
- inputButton.addEventListener('click', () => removeFieldButton(inputGroup, array, index))
+ inputButton.addEventListener('click', () => removeFieldButton(inputGroup, websiteGroupElements, index))
}
inputGroup.appendChild(inputButton)
}
@@ -621,7 +621,7 @@ function initDraw() {
inputButton.className = "btn btn-outline-secondary"
inputButton.title = "Remove subreddit"
inputButton.innerHTML = ''
- inputButton.addEventListener('click', () => removeFieldButton(inputGroup, array, index))
+ inputButton.addEventListener('click', () => removeFieldButton(inputGroup, subredditGroupElements, index))
}
inputField.addEventListener('paste', event => {
@@ -666,7 +666,7 @@ function initDraw() {
inputButton.className = "btn btn-outline-secondary"
inputButton.title = "Remove Discord invite"
inputButton.innerHTML = ''
- inputButton.addEventListener('click', () => removeFieldButton(inputGroup, array, index))
+ inputButton.addEventListener('click', () => removeFieldButton(inputGroup, discordGroupElements, index))
}
inputField.addEventListener('paste', event => {
@@ -705,7 +705,7 @@ function initDraw() {
inputButton.className = "btn btn-outline-secondary"
inputButton.title = "Remove wiki page"
inputButton.innerHTML = ''
- inputButton.addEventListener('click', () => removeFieldButton(inputGroup, array, index))
+ inputButton.addEventListener('click', () => removeFieldButton(inputGroup, wikiGroupElements, index))
}
inputGroup.appendChild(inputButton)
}
@@ -878,12 +878,12 @@ function initPeriodGroups() {
if (path.length >= 3) {
periodCenter = calculateCenter(path)
// @instance-only
- if ((periodCenter[1] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[1])) {
+ if ((periodCenter[1] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[1])) {
// Second expansion
- startPeriodEl.value = variationsConfig[variation].expansions[1];
- } else if ((periodCenter[0] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[0])) {
+ startPeriodEl.value = variationsConfig[getCurrentVariation()].expansions[1];
+ } else if ((periodCenter[0] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[0])) {
// First expansion
- startPeriodEl.value = variationsConfig[variation].expansions[0];
+ startPeriodEl.value = variationsConfig[getCurrentVariation()].expansions[0];
}
}
startPeriodUpdate(startPeriodEl.value)
@@ -897,12 +897,16 @@ function initPeriodGroups() {
startPeriodUpdate(startPeriodEl.value)
})
startPeriodViewEl.addEventListener('click', () => {
- updateTime(parseInt(startPeriodEl.value), variation)
+ updateTime(parseInt(startPeriodEl.value), getCurrentVariation())
// Set zoom view
periodCenter = calculateCenter(path)
setView(periodCenter[0], periodCenter[1], setZoomByPath(path))
})
+
+ function getCurrentVariation() {
+ return periodVariationEl[periodVariationEl.selectedIndex].value
+ }
function startPeriodUpdate(value) {
endPeriodListEl.innerHTML = ''
@@ -910,7 +914,7 @@ function initPeriodGroups() {
// Update time only when value changes
if (startPeriodEl.value !== timelineSlider.value) {
timelineSlider.value = value
- updateTime(parseInt(value), variation)
+ updateTime(parseInt(value), getCurrentVariation())
}
// Set start incremental button disabled states
@@ -924,11 +928,11 @@ function initPeriodGroups() {
if (path.length >= 3) {
periodCenter = calculateCenter(path)
// @instance-only
- if ((periodCenter[1] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[1])) {
+ if ((periodCenter[1] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[1])) {
// Second expansion
startPeriodLeftEl.disabled = true
startPeriodRightEl.disabled = false
- } else if ((periodCenter[0] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[0])) {
+ } else if ((periodCenter[0] > 1000) && (startPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[0])) {
// First expansion
startPeriodLeftEl.disabled = true
startPeriodRightEl.disabled = false
@@ -945,12 +949,12 @@ function initPeriodGroups() {
if (path.length >= 3) {
periodCenter = calculateCenter(path)
// @instance-only
- if ((periodCenter[1] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[1])) {
+ if ((periodCenter[1] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[1])) {
// Second expansion
- endPeriodEl.value = variationsConfig[variation].expansions[1];
- } else if ((periodCenter[0] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[0])) {
+ endPeriodEl.value = variationsConfig[getCurrentVariation()].expansions[1];
+ } else if ((periodCenter[0] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[0])) {
// First expansion
- endPeriodEl.value = variationsConfig[variation].expansions[0];
+ endPeriodEl.value = variationsConfig[getCurrentVariation()].expansions[0];
}
}
endPeriodUpdate(endPeriodEl.value)
@@ -964,7 +968,7 @@ function initPeriodGroups() {
endPeriodUpdate(endPeriodEl.value)
})
endPeriodViewEl.addEventListener('click', () => {
- updateTime(parseInt(endPeriodEl.value), variation)
+ updateTime(parseInt(endPeriodEl.value), getCurrentVariation())
// Set zoom view
periodCenter = calculateCenter(path)
@@ -976,8 +980,8 @@ function initPeriodGroups() {
// Update time only when value changes
if (endPeriodEl.value !== timelineSlider.value) {
timelineSlider.value = value
- updateTime(parseInt(value), variation)
}
+ updateTime(parseInt(value), getCurrentVariation(), true)
// Set end incremental button disabled states
if (endPeriodEl.value === endPeriodEl.min) {
@@ -990,11 +994,11 @@ function initPeriodGroups() {
if (path.length >= 3) {
periodCenter = calculateCenter(path)
// @instance-only
- if (periodCenter && (periodCenter[1] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[1])) {
+ if (periodCenter && (periodCenter[1] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[1])) {
// Second expansion
endPeriodLeftEl.disabled = true
endPeriodRightEl.disabled = false
- } else if (periodCenter && (periodCenter[0] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[variation].expansions[0])) {
+ } else if (periodCenter && (periodCenter[0] > 1000) && (endPeriodEl.valueAsNumber <= variationsConfig[getCurrentVariation()].expansions[0])) {
// First expansion
endPeriodLeftEl.disabled = true
endPeriodRightEl.disabled = false
diff --git a/web/_js/main/infoblock.js b/web/_js/main/infoblock.js
index 80cf9ddef..8635db7f7 100644
--- a/web/_js/main/infoblock.js
+++ b/web/_js/main/infoblock.js
@@ -155,7 +155,7 @@ function createInfoBlock(entry, isPreview) {
if (!link) return
const wikiLinkElement = baseLinkElement.cloneNode()
wikiLinkElement.href = "https://place-wiki.stefanocoding.me/wiki/" + link.replace(/ /g, '_')
- wikiLinkElement.innerHTML = ` Wiki Article`
+ wikiLinkElement.innerHTML = `r/place Wiki Article`
wikiGroupElement.appendChild(wikiLinkElement)
})
}
diff --git a/web/atlas.json b/web/atlas.json
index a0bd7748a..99cdda3b5 100644
--- a/web/atlas.json
+++ b/web/atlas.json
@@ -25,7 +25,7 @@
{"id": "000033", "name": "Moka pot", "description": "An traditional Italian coffee maker.", "links": {"website": ["https://en.wikipedia.org/wiki/Moka_pot"], "subreddit": ["italy", "ItalyPlace", "placeitaly", "Italia"]}, "path": {"54-100": [[821, 361], [814, 367], [814, 371], [816, 373], [816, 375], [818, 377], [818, 385], [821, 390], [821, 392], [820, 395], [815, 400], [815, 405], [819, 408], [842, 408], [846, 402], [846, 396], [851, 396], [851, 393], [850, 393], [850, 387], [842, 381], [840, 381], [840, 377], [837, 374], [836, 374], [833, 377], [833, 381], [831, 381], [824, 387], [823, 387], [823, 380], [824, 375], [830, 373], [831, 372], [831, 368], [825, 361]], "101-166, 41-53, T:0-1": [[846, 404], [846, 400], [845, 400], [844, 399], [844, 396], [843, 395], [843, 393], [847, 389], [848, 390], [848, 391], [847, 392], [847, 393], [848, 394], [848, 395], [849, 394], [849, 387], [848, 386], [848, 385], [847, 385], [846, 384], [845, 384], [843, 382], [839, 382], [837, 380], [836, 380], [834, 382], [828, 382], [828, 383], [825, 386], [825, 387], [822, 390], [822, 391], [820, 393], [820, 395], [819, 396], [819, 397], [817, 399], [816, 399], [816, 403], [817, 404], [817, 405], [818, 405], [819, 406], [824, 406], [826, 404], [826, 398], [825, 397], [824, 396], [824, 392], [825, 391], [825, 390], [826, 389], [827, 389], [830, 392], [830, 393], [831, 394], [831, 395], [829, 397], [829, 399], [828, 400], [828, 406], [830, 406], [831, 407], [843, 407], [844, 406], [845, 406], [846, 405]]}, "center": {"54-100": [833, 395], "101-166, 41-53, T:0-1": [837, 389]}},
{"id": "000034", "name": "Toki Pona", "description": "Toki Pona is a minimalist constructed language by Sonja Lang (jan Sonja).\n\nThis the first site on the canvas decorated by the Toki Pona community.", "links": {"website": ["https://tokipona.org/", "https://en.wikipedia.org/wiki/Toki_Pona"], "subreddit": ["tokipona"]}, "path": {"63-71": [[739, 325], [739, 330], [740, 330], [740, 360], [786, 360], [786, 330], [757, 330], [757, 325]], "53-62": [[740, 327], [740, 360], [786, 360], [786, 330], [760, 330], [760, 327]], "16-52": [[740, 327], [740, 360], [786, 360], [786, 330], [778, 330], [778, 327]], "1-15": [[742, 329], [739, 332], [739, 345], [741, 347], [741, 355], [742, 355], [742, 361], [783, 361], [783, 355], [784, 355], [784, 347], [786, 345], [786, 332], [783, 329]], "72-164, T:0-1": [[739, 325], [739, 330], [740, 330], [740, 360], [786, 360], [786, 330], [764, 330], [764, 331], [756, 331], [756, 330], [749, 330], [749, 325]]}, "center": {"63-71": [755, 345], "53-62": [756, 345], "16-52": [763, 344], "1-15": [763, 345], "72-164, T:0-1": [770, 345]}},
{"id": "000035", "name": ":happysperm:/:squirtyay:", "description": "This blue squirt originally appeared as an enemy in the game Bastion, but has since become an icon in several communities (often unrelated to Bastion), most notably as a series of Discord server emotes. Its current form on the canvas represents the :happysperm:/:squirtyay: variant. It was built together by r/civbattleroyale, r/CivHybridGames, r/civAIgames, r/civmoddingcentral, The Legacy, The Nerd Hive, and other individuals who recognised the art from Bastion.", "links": {"website": ["https://bastion.fandom.com/wiki/Squirt"], "subreddit": ["civbattleroyale", "CivHybridGames", "civAIgames", "civmoddingcentral"]}, "path": {"6-18": [[720, 361], [716, 363], [713, 367], [713, 373], [715, 376], [728, 376], [730, 374], [730, 367], [727, 363], [723, 361]], "19-164, T:0-1": [[720, 361], [716, 363], [713, 367], [713, 374], [715, 378], [719, 380], [724, 380], [728, 377], [730, 374], [730, 367], [727, 363], [723, 361]]}, "center": {"6-18": [722, 369], "19-164, T:0-1": [722, 371]}},
-{"id": "000036", "name": "Java", "description": "The Java Logo. Built and maintained by the Java Discord server. discord.gg/java", "links": {}, "path": {"56-165, T:0-1": [[1215, 870], [1224, 870], [1224, 879], [1215, 879]]}, "center": {"56-165, T:0-1": [1220, 875]}},
+{"id": "000036", "name": "Java", "description": "Java is an object-oriented programming language.\n\nThis art was built and maintained by the Java Discord server.", "links": {"website": ["https://www.java.com/en/", "https://en.wikipedia.org/wiki/Java_(programming_language)"], "discord": ["java"]}, "path": {"93-165, T:0-1": [[1220, 869], [1216, 873], [1214, 877], [1214, 879], [1216, 881], [1224, 881], [1227, 878], [1227, 877], [1224, 874], [1224, 872], [1221, 869]]}, "center": {"93-165, T:0-1": [1220, 876]}},
{"id": "000037", "name": "Tally Hall", "description": "Tally Hall is an American rock band.\n\nThis art was a joint effort between r/tallyhall and r/lemondemon. Above it, in the trans pride flag, is \"Ally Hall\", a joint project between r/tallyhall and r/transplace.", "links": {"website": ["https://www.tallyhall.com", "https://en.wikipedia.org/wiki/Tally_Hall"], "subreddit": ["tallyhall", "lemondemon"], "discord": ["jZjmeq86tV"]}, "path": {"7-12": [[766, 476], [766, 507], [800, 507], [800, 476]], "5-6": [[575, 70], [541, 70], [540, 53], [574, 53]], "3-4": [[603, 89], [603, 118], [635, 118], [635, 89]], "13-164, T:0-1": [[753, 476], [753, 521], [763, 521], [763, 507], [787, 507], [787, 476]]}, "center": {"7-12": [783, 492], "5-6": [558, 62], "3-4": [619, 104], "13-164, T:0-1": [771, 492]}},
{"id": "000039", "name": "Miracle butterfly", "description": "The miracle butterfly is a major plot element in the Disney movie Encanto.\n\nA piece created by r/Encanto, this butterfly's place was granted in a deal with Oyasumi Punpun in exchange for guarding their piece. It saw minimal griefing, as both parties defended it.", "links": {"website": ["https://en.wikipedia.org/wiki/Encanto_(film)"], "subreddit": ["Encanto"]}, "path": {"101-167, 65-96, T:0-1": [[1919, 270], [1919, 281], [1928, 281], [1933, 270]]}, "center": {"101-167, 65-96, T:0-1": [1925, 276]}},
{"id": "000041", "name": "Amulet of Yendor", "description": "The Amulet of Yendor is a powerful artifact in the game Pixel Dungeon. It is a reference to the same item in Brogue and Rogue, two roguelike games that influenced Pixel Dungeon.", "links": {"website": ["https://pixeldungeon.fandom.com/wiki/Amulet_of_Yendor"], "subreddit": ["PixelDungeon"]}, "path": {"2-12": [[696, 362], [691, 367], [691, 374], [696, 379], [703, 379], [708, 374], [708, 367], [703, 362]], "13-166, T:0-1": [[697, 360], [692, 365], [692, 370], [697, 375], [702, 375], [707, 370], [707, 365], [702, 360]]}, "center": {"2-12": [700, 371], "13-166, T:0-1": [700, 368]}},
@@ -56,7 +56,7 @@
{"id": "000072", "name": "Formula 1", "description": "Formula 1 is a professional car racing organization and championship. This art features logos of all 2022 teams. The Williams-W with the addition of \"FW\" is in honour of the late founder Frank Williams.\n\n\"Keep fighting Michael\" honours Michael Schumacher who is still fighting for his life after a devastating skiing accident many years ago.\n\n\"JB17\" is a testiment to Jules Bianchi, who suffered a fatal accident during the 2014 Japanese Grand Prix.\n\n\"AH19\" is a testiment to the late Anthoine Hubert who lost his life during the 2019 Belgian Grand Prix in the Saturday race in Formula 2.", "links": {"website": ["https://en.wikipedia.org/wiki/Formula_One"], "subreddit": ["formula1"]}, "path": {"1-42": [[447, 761], [447, 830], [571, 830], [571, 761]], "43-165, T:0-1": [[448, 762], [571, 762], [571, 829], [433, 829], [433, 757], [448, 757]]}, "center": {"1-42": [509, 796], "43-165, T:0-1": [540, 810]}},
{"id": "000073", "name": "Technische Universität Hansestadt Hamburg", "description": "Technische Universität Hansestadt Hamburg (English: Hamburg University of Technology) is a university near Hamburg, Germany.", "links": {"website": ["https://www.tuhh.de", "https://en.wikipedia.org/wiki/Hamburg_University_of_Technology"], "subreddit": ["TU_HH"]}, "path": {"55-68": [[221, 165], [221, 171], [239, 171], [239, 165]], "44-54": [[221, 165], [221, 169], [239, 169], [239, 165]], "69-165, T:0-1": [[221, 165], [245, 165], [245, 171], [221, 171]]}, "center": {"55-68": [230, 168], "44-54": [230, 167], "69-165, T:0-1": [233, 168]}},
{"id": "000074", "name": "Ethereum", "description": "Ethereum is a blockchain powering smart contracts and cryptocurrencies, including the cryptocurrency ETH itself.\n\nThe Ethereum logo is drawn between Loopring and Immutable X, two Ethereum layer 2 solutions that have a partnership with GameStop for an upcoming marketplace. It was built by a small team of about 50 people after a smaller version south of the current location was taken over. It was rebuilt after an attack by the trees below in conjunction with the German flag, and later added a prism effect with a laser coming from the Loopring logo, through the ETH crystal, and splitting into a rainbow on the Immutable side.", "links": {"website": ["http://ethereum.org/", "https://en.wikipedia.org/wiki/Ethereum"], "discord": ["BMCdDHvNm6"]}, "path": {"15-44, 51-165, T:0-1": [[840, 857], [828, 877], [828, 880], [840, 896], [841, 896], [853, 880], [853, 877], [841, 857]]}, "center": {"15-44, 51-165, T:0-1": [841, 877]}},
-{"id": "000075", "name": "Destiny", "description": "Gaming and politics Twitch streamer and YouTuber Steven Kenneth \"Destiny\" Bonnell II.", "links": {"website": ["https://destiny.gg", "https://en.wikipedia.org/wiki/Destiny_(streamer)"], "subreddit": ["Destiny"]}, "path": {"3-165, T:0-1": [[334, 78], [399, 78], [399, 131], [334, 131]]}, "center": {"3-165, T:0-1": [367, 105]}},
+{"id": "000075", "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": {"3-165, T:0-1": [[334, 78], [399, 78], [399, 131], [334, 131]]}, "center": {"3-165, T:0-1": [367, 105]}},
{"id": "000076", "name": "lttstore.com", "description": "lttstore.com is an online store for branded merchandise from the YouTube channel Linus Tech Tips. It is commonly shouted out on Linus Tech Tips videos.\n\nSpammers made repeated attempts to replace two pixels of the 'O' in .com with orange in order to alter the text to .cum.", "links": {"website": ["https://www.lttstore.com/"], "subreddit": ["LinusTechTips"]}, "path": {"45-64": [[48, 765], [48, 777], [125, 777], [125, 765]], "65-166, 9-44, T:0-1": [[48, 765], [48, 777], [117, 777], [117, 765]]}, "center": {"45-64": [87, 771], "65-166, 9-44, T:0-1": [83, 771]}},
{"id": "000077", "name": "Löwenzahn", "description": "Löwenzahn (German for \"dandelion\") is a popular German children's TV show.", "links": {"website": ["https://en.wikipedia.org/wiki/L%C3%B6wenzahn"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"85-95": [[509, 831], [509, 836], [507, 836], [504, 839], [503, 841], [503, 844], [504, 845], [504, 848], [507, 851], [507, 854], [506, 856], [503, 856], [503, 860], [504, 861], [504, 863], [503, 863], [501, 865], [501, 866], [534, 866], [536, 864], [536, 861], [534, 861], [530, 857], [533, 857], [533, 854], [537, 854], [537, 848], [539, 848], [539, 843], [538, 843], [536, 845], [535, 845], [533, 843], [533, 841], [543, 836], [549, 836], [553, 838], [559, 838], [560, 839], [563, 839], [563, 840], [564, 841], [564, 844], [566, 846], [576, 846], [576, 848], [581, 848], [581, 849], [582, 852], [584, 854], [589, 854], [591, 856], [592, 860], [603, 860], [603, 862], [605, 864], [607, 865], [609, 862], [609, 858], [605, 854], [608, 851], [611, 851], [612, 850], [614, 850], [614, 856], [616, 856], [619, 853], [623, 853], [623, 855], [625, 857], [625, 860], [630, 860], [632, 862], [633, 861], [633, 859], [634, 858], [634, 855], [637, 855], [638, 856], [640, 854], [648, 854], [649, 855], [651, 855], [651, 856], [653, 857], [653, 859], [656, 859], [656, 857], [659, 857], [661, 855], [659, 853], [660, 852], [665, 852], [665, 849], [668, 849], [669, 847], [673, 847], [673, 844], [674, 844], [677, 837], [677, 836], [674, 836], [673, 835], [672, 836], [672, 840], [671, 841], [671, 844], [667, 844], [666, 843], [665, 844], [665, 845], [663, 845], [661, 847], [661, 849], [659, 850], [657, 850], [657, 846], [655, 846], [655, 849], [647, 849], [650, 846], [648, 844], [646, 846], [646, 847], [645, 848], [642, 848], [642, 846], [640, 844], [638, 846], [638, 847], [632, 847], [632, 845], [631, 845], [629, 847], [629, 849], [626, 849], [626, 847], [624, 847], [623, 846], [618, 846], [618, 843], [616, 843], [613, 846], [613, 847], [607, 847], [605, 845], [601, 843], [571, 843], [571, 839], [568, 839], [568, 836], [565, 836], [563, 834], [568, 833], [571, 830], [571, 828], [570, 828], [569, 829], [565, 829], [565, 831], [555, 831], [555, 829], [540, 829], [539, 830], [534, 832], [523, 832], [520, 829], [519, 830], [512, 830], [511, 831]], "53-84, 96-166, T:0-1": [[512, 829], [508, 831], [508, 833], [510, 836], [507, 836], [504, 838], [502, 841], [502, 844], [503, 845], [503, 849], [505, 849], [509, 853], [509, 855], [507, 855], [507, 858], [505, 858], [505, 863], [510, 865], [518, 865], [519, 866], [522, 866], [523, 865], [525, 865], [527, 862], [533, 862], [536, 859], [536, 855], [537, 855], [537, 847], [539, 845], [539, 839], [537, 839], [537, 834], [534, 834], [534, 832], [527, 832], [525, 834], [524, 834], [520, 830], [518, 830], [516, 832], [515, 832], [515, 831], [513, 829]]}, "center": {"85-95": [520, 846], "53-84, 96-166, T:0-1": [523, 848]}},
{"id": "000078", "name": "Colosseum", "description": "The Colosseum is an ancient Roman gladiator arena and amphitheater built in Rome, Italy.", "links": {"website": ["https://en.wikipedia.org/wiki/Colosseum"], "subreddit": ["italy", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"43-101": [[789, 404], [811, 404], [814, 409], [814, 412], [817, 417], [820, 421], [820, 425], [822, 427], [825, 429], [830, 429], [834, 422], [855, 422], [855, 450], [789, 450], [789, 441], [787, 441], [787, 439], [789, 439], [789, 430], [787, 430], [787, 428], [789, 427], [789, 419], [787, 419], [787, 417], [789, 417]], "102-165, T:0-1": [[789, 404], [811, 404], [814, 409], [814, 412], [817, 417], [824, 417], [824, 419], [825, 419], [825, 428], [830, 428], [834, 422], [855, 422], [855, 450], [789, 450], [789, 441], [787, 441], [787, 439], [789, 439], [789, 430], [787, 430], [787, 428], [789, 428], [789, 419], [787, 419], [787, 417], [789, 417]]}, "center": {"43-101": [806, 433], "102-165, T:0-1": [808, 432]}},
@@ -76,10 +76,10 @@
{"id": "000097", "name": "Niko", "description": "Niko is the main character in the indie video game OneShot. Here they are depicted riding a Roomba and holding a lightbulb (The Sun).\n\nThis artwork was originally located slightly higher up. However, it couldn't survive the massive Ukrainian flag, so it was relocated here, where it stayed for the rest of the event. The green dot on the Roomba represents that it's on and is present in the original game. Since it is a small detail, many people thought it was a mistake and replaced the light with a purple pixel, but the green light made it to the final canvas.", "links": {"website": ["https://oneshot.fandom.com/wiki/Niko"], "subreddit": ["oneshot"], "discord": ["5dQMafBgGZ"]}, "path": {"1-3": [[917, 218], [917, 225], [916, 225], [916, 236], [914, 239], [914, 240], [921, 248], [921, 251], [929, 251], [929, 249], [939, 238], [939, 237], [937, 237], [937, 225], [936, 225], [936, 218]], "4-166, T:0-1": [[911, 252], [911, 259], [910, 260], [910, 274], [913, 277], [913, 279], [917, 284], [925, 284], [929, 279], [929, 277], [930, 277], [933, 274], [933, 259], [932, 259], [932, 252]]}, "center": {"1-3": [927, 235], "4-166, T:0-1": [922, 268]}},
{"id": "000098", "name": "r/196", "description": "r/196 is a shitposting subreddit. The only directly stated rule of r/196 is that you must post before you leave.", "links": {"subreddit": ["196"]}, "path": {"1-165, T:0-1": [[174, 629], [241, 629], [241, 698], [174, 698]]}, "center": {"1-165, T:0-1": [190, 647]}},
{"id": "000099", "name": "Lemon Demon", "description": "Lemon Demon is an American band.\n\nThis Lemon Demon logo was designed by u/iforgotmypasswordss, and was part of a joint project between r/lemondemon and r/tallyhall", "links": {"website": ["https://en.wikipedia.org/wiki/Lemon_Demon"], "subreddit": ["lemondemon", "tallyhall"], "discord": ["jZjmeq86tV"]}, "path": {"8-11": [[766, 398], [766, 429], [800, 429], [800, 398]], "12-166, T:0-1": [[752, 397], [752, 430], [788, 430], [788, 397]]}, "center": {"8-11": [783, 414], "12-166, T:0-1": [770, 414]}},
-{"id": "000100", "name": "The Inkunzi Logo", "description": "The Logo for the nation rp Inkunzi, a geopolitical Nation RP on a fantasy planet. Made by CalmDownLevelUp", "links": {"website": ["https://www.youtube.com/watch?v=gLXxk7ZsrDM"], "subreddit": ["CalmDownLevelUp"]}, "path": {"56-165, T:0-1": [[1845, 806], [1845, 815], [1835, 815], [1835, 806]]}, "center": {"56-165, T:0-1": [1840, 811]}},
+{"id": "000100", "name": "Project Inkunzi", "description": "Project Inkunzi is a geopolitical nation role-play where you role-play as nations on a fantasy planet. It was made by YouTuber CalmDownLevelUp.", "links": {"website": ["https://project-inkunzi.fandom.com/wiki/Project_Inkunzi_Wiki", "https://www.youtube.com/watch?v=gLXxk7ZsrDM"], "subreddit": ["Inkunzi", "CalmDownLevelUp"]}, "path": {"150-165, T:0-1": [[1836, 805], [1833, 808], [1833, 810], [1838, 815], [1843, 810], [1843, 808], [1840, 805], [1838, 807]]}, "center": {"150-165, T:0-1": [1838, 810]}},
{"id": "000103", "name": "Ohio State University", "description": "The Ohio State University (OSU, not to be confused with the rhythm game \"osu!\") is a university located in Columbus, Ohio, United States. OSU's school colors are scarlet and gray, which can be seen around their Block O logo at the bottom left of the artwork. The Block O, together with the Buckeye nut, are the logos for the Ohio State University. OSU is famous for its American football rivalry with the University of Michigan, with the 15-2 representing the current streak of 15 wins against UofM's 2. The Ohio flag is on the top right, representing the state of Ohio, USA. The bottom right has the \"Script Ohio\", a long-time Ohio State tradition from the school's marching band where members of the band will form the word \"Ohio\" in script during football games.\n\nA second Block O is situated next to Purdue University & Rutgers University elsewhere on r/place.", "links": {"website": ["https://www.osu.edu", "https://en.wikipedia.org/wiki/Ohio_State_University"], "subreddit": ["OSU"]}, "path": {"28-36": [[705, 889], [705, 905], [759, 905], [759, 889]], "9-19": [[712, 865], [712, 887], [772, 887], [772, 865]], "2-8": [[716, 858], [712, 862], [712, 883], [716, 887], [726, 887], [730, 883], [730, 862], [726, 858]], "60-165, T:0-1": [[1331, 794], [1331, 830], [1364, 830], [1364, 794]]}, "center": {"28-36": [732, 897], "9-19": [742, 876], "2-8": [721, 873], "60-165, T:0-1": [1348, 812]}},
{"id": "000105", "name": "PotatoMcWhiskey", "description": "PotatoMcWhiskey is a YouTuber and Twitch streamer who plays games such as Civilization VI.", "links": {"website": ["https://www.youtube.com/user/PotatoMcWhiskey/", "https://www.twitch.tv/potatomcwhiskey"], "subreddit": ["PotatoMcWhiskey"]}, "path": {"64-66": [[1513, 61], [1508, 68], [1508, 73], [1503, 73], [1501, 75], [1501, 78], [1502, 79], [1502, 87], [1500, 91], [1500, 95], [1503, 102], [1505, 105], [1507, 105], [1508, 106], [1512, 106], [1513, 107], [1514, 107], [1515, 106], [1523, 106], [1533, 90], [1533, 73], [1525, 65], [1528, 62], [1526, 60], [1515, 60]], "67-166, T:0-1": [[1513, 61], [1508, 68], [1508, 73], [1503, 73], [1501, 75], [1501, 79], [1502, 80], [1502, 87], [1501, 88], [1501, 93], [1503, 95], [1506, 95], [1510, 98], [1519, 98], [1522, 105], [1524, 105], [1532, 89], [1532, 83], [1533, 82], [1533, 77], [1531, 75], [1531, 70], [1527, 67], [1527, 62], [1525, 60], [1518, 60], [1517, 61]]}, "center": {"64-66": [1517, 86], "67-166, T:0-1": [1518, 84]}},
-{"id": "000106", "name": "Operation Gooseflight", "description": "Splinter from r/canada to escape the meme of messing with the flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada"], "subreddit": ["canada"]}, "path": {"56-166, T:0-1": [[1810, 869], [1810, 895], [1807, 895], [1807, 916], [1794, 929], [1792, 929], [1792, 932], [1793, 932], [1793, 935], [1803, 935], [1804, 936], [1805, 935], [1830, 935], [1830, 869]]}, "center": {"56-166, T:0-1": [1817, 906]}},
+{"id": "000106", "name": "Canada", "description": "Canada is a country in North America.\n\nThis art, known as Operation Gooseflight, was a splinter from r/canada to escape the meme of messing with the Canadian flag in the initial canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"56-122": [[1779, 869], [1785, 873], [1786, 877], [1786, 882], [1783, 884], [1783, 887], [1788, 887], [1790, 889], [1806, 889], [1806, 911], [1807, 912], [1807, 916], [1793, 930], [1793, 934], [1830, 934], [1830, 869]], "124-166, T:0-1": [[1810, 869], [1810, 895], [1807, 895], [1807, 916], [1794, 929], [1792, 929], [1792, 932], [1793, 932], [1793, 935], [1803, 935], [1804, 936], [1805, 935], [1830, 935], [1830, 869]]}, "center": {"56-122": [1817, 882], "124-166, T:0-1": [1817, 923]}},
{"id": "000107", "name": "Critical Role", "description": "Emblem of the actual-play Dungeons and Dragons series.", "links": {"website": ["https://critrole.com/"], "subreddit": ["CriticalRole", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[513, 963], [538, 963], [538, 991], [513, 991]]}, "center": {"1-166, T:0-1": [526, 977]}},
{"id": "000108", "name": "Palico", "description": "An iconic character from the game series, Monster Hunter.", "links": {"website": ["https://monsterhunterworld.wiki.fextralife.com/Palicoes"], "subreddit": ["MonsterHunter"]}, "path": {"23-90": [[748, 608], [748, 635], [769, 635], [776, 622], [776, 608]], "13-22": [[748, 613], [748, 634], [760, 634], [760, 637], [769, 637], [769, 613]], "92-165, T:0-1": [[748, 608], [748, 636], [768, 636], [782, 609], [782, 608]]}, "center": {"23-90": [761, 621], "13-22": [759, 624], "92-165, T:0-1": [761, 621]}},
{"id": "000109", "name": "Flag of Portugal", "description": "Portugal is a country in Southwestern Europe. This flag of Portugal contains depictions of Portuguese poet Luís de Camões, Pena National Palace, cartoon character Zé Povinho, and Afonso Henriques (first king of Portugal).", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Flag_of_Portugal"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"56-64": [[865, 308], [864, 360], [856, 360], [856, 371], [923, 371], [923, 360], [1099, 360], [1107, 353], [1113, 353], [1120, 360], [1121, 360], [1121, 312], [1098, 312], [1090, 308]], "41-55": [[865, 308], [865, 360], [856, 360], [856, 371], [923, 371], [923, 360], [952, 360], [952, 308]], "35-40": [[865, 308], [865, 360], [856, 360], [856, 371], [865, 371], [865, 408], [923, 408], [923, 368], [942, 357], [942, 308]], "18-34": [[865, 312], [865, 360], [856, 360], [856, 371], [865, 371], [865, 407], [923, 407], [923, 367], [952, 367], [952, 312]], "1-17": [[865, 312], [865, 360], [856, 360], [856, 371], [921, 371], [921, 360], [952, 360], [952, 312]], "65-166, T:0-1": [[865, 308], [865, 360], [856, 360], [856, 371], [923, 371], [923, 360], [1043, 360], [1096, 308]]}, "center": {"56-64": [900, 339], "41-55": [900, 339], "35-40": [899, 343], "18-34": [898, 345], "1-17": [898, 341], "65-166, T:0-1": [900, 339]}},
@@ -97,7 +97,7 @@
{"id": "000123", "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.\n\nThe flag of Palestine was a collaborative effort between r/Palestine and r/Islam. The flag's length was shortened to give room to r/chess and r/AnarchyChess as part of an alliance. The place was originally an Israeli flag made by r/Israel. With the help of the two chess subreddits, many more subreddits, and 4chan, the flag was changed to the Palestine flag. The Israelis attempted to raid the flag and change it back, but the Palestinians and their allies held their ground.", "links": {"website": ["https://en.wikipedia.org/wiki/State_of_Palestine", "https://en.wikipedia.org/wiki/Flag_of_Palestine"], "subreddit": ["Palestine", "Islam"]}, "path": {"13-14, 18-39, 43-165, T:0-1": [[20, 643], [20, 679], [70, 679], [70, 643]]}, "center": {"13-14, 18-39, 43-165, T:0-1": [45, 661]}},
{"id": "000124", "name": "Intercity Express", "description": "Intercity Express (ICE) is a high-speed train system operating in Germany. It is known for having really bad network reception while travelling with the Deutsche Bahn, Germany's national railway company; this is denoted by the nearby EDGE (E) symbol with red connection bars indicating a slow connection, in contrast to the fast internet on the French TGV train on the other side of the EU flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Intercity_Express"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"49-61": [[344, 848], [330, 854], [325, 859], [325, 864], [328, 867], [334, 867], [335, 866], [373, 866], [373, 848]], "62-85": [[344, 848], [330, 854], [325, 859], [325, 865], [296, 865], [296, 868], [373, 868], [373, 848]], "86-166, T:0-1": [[344, 848], [330, 854], [325, 859], [325, 865], [296, 865], [296, 868], [403, 868], [403, 866], [373, 866], [373, 848]]}, "center": {"49-61": [363, 857], "62-85": [346, 858], "86-166, T:0-1": [350, 858]}},
{"id": "000125", "name": "End of speed limit", "description": "German road sign used on the Autobahn (German highway) to indicate the end of all speed and passing limits.", "links": {"website": ["https://en.wikipedia.org/wiki/Autobahn"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"135-151": [[570, 845], [565, 850], [565, 854], [570, 859], [570, 863], [569, 864], [571, 866], [573, 866], [575, 864], [574, 863], [574, 860], [580, 854], [580, 850], [576, 846], [574, 845]], "67-134": [[570, 845], [565, 850], [565, 854], [569, 858], [569, 859], [570, 860], [570, 866], [573, 866], [573, 860], [574, 860], [579, 855], [579, 850], [574, 845]], "152-166, T:0-1": [[568, 866], [575, 866], [575, 863], [573, 863], [573, 860], [574, 860], [580, 854], [580, 850], [576, 846], [574, 845], [570, 845], [565, 850], [565, 854], [569, 858], [569, 859], [570, 860], [570, 863], [568, 863]]}, "center": {"135-151": [573, 852], "67-134": [572, 852], "152-166, T:0-1": [573, 852]}},
-{"id": "000126", "name": "arte", "description": "arte is a European public service channel that promotes cultural programming. It's a coorporation between French and German broadcasting companies.", "links": {"website": ["https://www.arte.tv/en/"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-165, T:0-1": [[1200, 830], [1200, 868], [1126, 868], [1126, 829]]}, "center": {"56-165, T:0-1": [1163, 849]}},
+{"id": "000126", "name": "arte", "description": "arte is a European public service channel that promotes culture. It is a collaboration between French and German broadcasting companies, hence its location on the canvas between the French and German flags.", "links": {"website": ["https://www.arte.tv/en/", "https://en.wikipedia.org/wiki/Arte"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"59-84": [[1125, 829], [1125, 869], [1201, 869], [1201, 829]], "85-165, T:0-1": [[1128, 828], [1128, 870], [1201, 870], [1201, 828]]}, "center": {"59-84": [1163, 849], "85-165, T:0-1": [1165, 849]}},
{"id": "000127", "name": "Die Sendung mit der Maus", "description": "Die Sendung mit der Maus (The Show with the Mouse) is a German children's television series, popular nation-wide for its educational content. It usually runs for 30 minutes every Sunday and teaches things about the world with some short cartoons in between. The mouse, the elephant, and the duck are the mascots of the show and are often featured in the in-between cartoons.", "links": {"website": ["https://www.wdrmaus.de/", "https://en.wikipedia.org/wiki/Die_Sendung_mit_der_Maus"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"77-87": [[73, 868], [74, 867], [93, 867], [94, 868], [104, 868], [104, 863], [106, 863], [106, 856], [108, 854], [105, 851], [102, 853], [100, 853], [100, 852], [103, 848], [103, 844], [101, 841], [98, 839], [94, 841], [92, 846], [90, 844], [92, 841], [92, 840], [84, 835], [82, 835], [82, 832], [78, 832], [78, 834], [76, 834], [74, 836], [75, 837], [75, 843], [76, 844], [76, 846], [74, 849], [70, 846], [69, 846], [61, 850], [59, 853], [59, 856], [63, 860], [61, 863], [57, 863], [57, 864], [59, 866], [64, 868]], "72-76": [[73, 868], [74, 867], [93, 867], [94, 868], [104, 868], [104, 863], [106, 863], [106, 856], [108, 854], [105, 851], [102, 853], [100, 853], [100, 852], [103, 848], [103, 844], [101, 841], [98, 839], [94, 841], [92, 846], [90, 844], [92, 841], [92, 840], [84, 835], [82, 835], [82, 832], [78, 832], [78, 834], [76, 834], [74, 836], [75, 837], [75, 843], [76, 844], [76, 846], [74, 849], [70, 846], [69, 846], [61, 850], [59, 853], [59, 856], [63, 860], [61, 863], [54, 863], [52, 862], [57, 857], [57, 856], [54, 853], [48, 853], [45, 856], [45, 857], [52, 864], [64, 868]], "68-71": [[73, 868], [74, 867], [93, 867], [94, 868], [104, 868], [104, 863], [106, 863], [106, 856], [108, 854], [105, 851], [102, 853], [100, 853], [100, 852], [103, 848], [103, 844], [101, 841], [98, 839], [94, 841], [92, 846], [90, 844], [92, 841], [92, 840], [84, 835], [82, 835], [82, 832], [78, 832], [78, 834], [76, 834], [74, 836], [75, 837], [75, 843], [76, 844], [76, 846], [74, 849], [70, 846], [69, 846], [61, 850], [59, 853], [59, 856], [63, 860], [61, 863], [56, 863], [54, 861], [54, 860], [55, 859], [55, 858], [53, 856], [49, 856], [47, 858], [47, 859], [52, 864], [56, 866], [61, 866], [64, 868]], "13-67": [[73, 868], [74, 867], [93, 867], [94, 868], [104, 868], [104, 863], [106, 863], [106, 856], [108, 854], [105, 851], [102, 853], [100, 853], [100, 852], [103, 848], [103, 844], [101, 841], [98, 839], [94, 841], [92, 846], [90, 844], [92, 841], [92, 840], [84, 835], [82, 835], [82, 832], [78, 832], [78, 834], [76, 834], [74, 836], [75, 837], [75, 843], [76, 844], [76, 846], [74, 849], [70, 846], [69, 846], [61, 850], [59, 853], [59, 858], [57, 856], [54, 859], [56, 861], [56, 866], [60, 866], [63, 868]], "88-166, T:0-1": [[73, 868], [74, 867], [93, 867], [94, 868], [104, 868], [104, 863], [106, 863], [106, 856], [108, 854], [105, 851], [102, 853], [100, 853], [100, 852], [103, 848], [103, 844], [101, 841], [98, 839], [94, 841], [92, 846], [90, 844], [92, 841], [92, 840], [84, 835], [82, 835], [82, 832], [78, 832], [78, 834], [76, 834], [74, 836], [75, 837], [75, 843], [76, 844], [76, 846], [74, 849], [70, 846], [69, 846], [61, 850], [59, 853], [59, 856], [63, 860], [59, 864], [56, 862], [54, 862], [58, 858], [58, 857], [56, 855], [54, 854], [48, 854], [45, 857], [45, 858], [51, 864], [56, 864], [59, 866], [64, 868]]}, "center": {"77-87": [84, 855], "72-76": [84, 855], "68-71": [84, 855], "13-67": [84, 855], "88-166, T:0-1": [84, 855]}},
{"id": "000128", "name": "Flag of the European Union", "description": "The European Union (EU) is an international organization of European countries.\n\nThis EU flag is drawn at the intersection of the flags of France and Germany, both founding members of the EU, to symbolize an alliance between the two. A peace dove was later added to the flag.", "links": {"website": ["http://europa.eu/", "https://en.wikipedia.org/wiki/European_Union", "https://en.wikipedia.org/wiki/Flag_of_the_European_Union"], "subreddit": ["PlaceEU", "placefrance", "franceplace", "placeFR", "france", "placeDE", "de", "germany"], "discord": ["uxm3wbrHke", "placeDE"]}, "path": {"10-166, T:0-1": [[373, 829], [433, 829], [433, 867], [373, 867]]}, "center": {"10-166, T:0-1": [403, 848]}},
{"id": "000129", "name": "Bernd das Brot", "description": "Bernd das Brot is a puppet character, star mascot, and cult figure of the German children's television channel KI.KA. He is holding a beer and saying his catchphrase \"Mist\" (English: \"Damn\").", "links": {"website": ["https://en.wikipedia.org/wiki/Bernd_das_Brot"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"54-90": [[189, 829], [185, 833], [185, 850], [183, 850], [181, 848], [179, 848], [176, 851], [176, 854], [174, 854], [173, 855], [171, 855], [169, 857], [169, 860], [171, 862], [169, 864], [169, 865], [172, 868], [175, 868], [177, 870], [181, 870], [181, 868], [183, 865], [184, 864], [185, 864], [185, 874], [214, 874], [214, 863], [217, 863], [219, 865], [221, 865], [222, 866], [223, 866], [227, 870], [228, 870], [229, 871], [238, 871], [239, 872], [241, 872], [243, 869], [247, 871], [254, 866], [254, 864], [251, 864], [250, 865], [248, 865], [246, 863], [245, 863], [245, 855], [244, 854], [244, 850], [241, 847], [236, 844], [232, 844], [228, 847], [228, 848], [220, 848], [220, 850], [215, 850], [215, 845], [217, 843], [217, 833], [214, 831], [207, 830], [200, 830], [198, 829]], "41-53": [[189, 829], [185, 833], [185, 850], [183, 850], [181, 848], [179, 848], [176, 851], [176, 854], [174, 854], [173, 855], [171, 855], [169, 857], [169, 860], [171, 862], [169, 864], [169, 865], [172, 868], [175, 868], [177, 870], [181, 870], [181, 868], [183, 865], [184, 864], [185, 864], [185, 874], [214, 874], [214, 866], [218, 870], [222, 870], [222, 868], [224, 868], [226, 866], [226, 862], [228, 860], [228, 858], [226, 856], [222, 856], [224, 853], [224, 851], [222, 849], [220, 849], [215, 851], [215, 843], [217, 834], [214, 831], [191, 829]], "91-166, T:0-1": [[189, 829], [185, 833], [185, 850], [183, 850], [181, 848], [179, 848], [176, 851], [176, 854], [174, 854], [173, 855], [171, 855], [169, 857], [169, 860], [171, 862], [169, 864], [169, 865], [172, 868], [175, 868], [177, 870], [181, 870], [181, 868], [183, 865], [184, 864], [185, 864], [185, 874], [214, 874], [214, 863], [217, 863], [219, 865], [221, 865], [222, 866], [223, 866], [227, 870], [228, 870], [229, 871], [238, 871], [239, 872], [241, 872], [243, 869], [247, 871], [254, 866], [254, 864], [251, 864], [250, 865], [248, 865], [246, 863], [245, 863], [245, 855], [244, 854], [244, 850], [241, 847], [241, 835], [239, 832], [219, 832], [217, 835], [216, 835], [216, 832]]}, "center": {"54-90": [200, 856], "41-53": [200, 857], "91-166, T:0-1": [203, 848]}},
@@ -143,11 +143,11 @@
{"id": "000183", "name": "Coldplay", "description": "Coldplay is a British rock band. This art shows several of the band's albums: Viva la Vida (2008), A Rush of Blood to the Head (2002), X&Y (2005), Mylo Xyloto (2011), Parachutes (2000), and A Head Full of Dreams (2015).", "links": {"website": ["https://coldplay.com", "https://en.wikipedia.org/wiki/Coldplay"], "subreddit": ["Coldplay"], "discord": ["coldplay"]}, "path": {"58-98": [[1717, 35], [1717, 52], [1744, 52], [1744, 35]], "99-166, T:0-1": [[1695, 35], [1745, 35], [1745, 45], [1744, 45], [1744, 52], [1717, 52], [1717, 47], [1695, 47]]}, "center": {"58-98": [1731, 44], "99-166, T:0-1": [1724, 43]}},
{"id": "000185", "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"]}, "path": {"5-22": [[174, 719], [174, 750], [182, 750], [182, 749], [199, 749], [199, 719]], "23-166, T:0-1": [[182, 719], [182, 724], [178, 724], [173, 727], [170, 730], [168, 734], [168, 740], [170, 744], [170, 747], [168, 750], [168, 751], [169, 751], [172, 749], [175, 749], [179, 751], [185, 751], [190, 748], [195, 741], [195, 737], [200, 737], [200, 721], [199, 721], [196, 724], [191, 719]]}, "center": {"5-22": [187, 735], "23-166, T:0-1": [181, 737]}},
{"id": "000188", "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"]}, "path": {"35-71": [[175, 751], [172, 754], [172, 761], [175, 764], [180, 764], [183, 761], [183, 754], [180, 751]], "72-166, T:0-1": [[170, 750], [165, 755], [165, 759], [167, 764], [170, 765], [177, 764], [180, 764], [182, 759], [182, 756], [181, 753], [175, 749]]}, "center": {"35-71": [178, 758], "72-166, T:0-1": [174, 757]}},
-{"id": "000189", "name": "Shuba Duck", "description": "Shuba Duck, a.k.a. Dancing Duck Oozora Subaru or Subaru Duck, refers to an animation of a duck in a backwards baseball cap dancing alongside virtual Hololive influencer Oozora Subaru. The duck is a representation of Subaru, who is often likened to a duck for her raspy ASMR voice, among other reasons. The duck took on the nickname \"Shuba Duck\" or \"Shubaduck\" based on Subaru's habit of regularly saying \"shuba\" when excited.", "links": {"website": ["https://knowyourmeme.com/memes/shuba-duck-dancing-duck-oozora-subaru"], "subreddit": ["oozorasubaru", "Hololive"]}, "path": {"11-165, T:0-1": [[238, 782], [235, 787], [235, 790], [233, 791], [238, 793], [237, 796], [232, 801], [232, 805], [238, 809], [235, 813], [246, 813], [246, 810], [252, 806], [253, 802], [250, 798], [248, 797], [246, 799], [243, 797], [243, 792], [247, 790], [247, 789], [245, 787], [244, 782]]}, "center": {"11-165, T:0-1": [241, 803]}},
-{"id": "000190", "name": "Udin", "description": "Udin is the mascot of Kureiji Ollie, a VTuber from Hololive Indonesia.", "links": {"website": ["https://www.youtube.com/channel/UCYz_5n-uDuChHtLo7My1HnQ", "https://virtualyoutuber.fandom.com/wiki/Kureiji_Ollie"], "subreddit": ["Hololive"]}, "path": {"5-166, T:0-1": [[282, 759], [280, 757], [280, 756], [282, 754], [285, 754], [287, 756], [290, 753], [293, 753], [293, 755], [295, 754], [297, 754], [299, 756], [299, 767], [298, 768], [298, 769], [295, 772], [294, 772], [292, 773], [286, 773], [285, 772], [284, 772], [281, 769], [281, 768], [280, 767], [280, 762], [281, 761]]}, "center": {"5-166, T:0-1": [289, 765]}},
-{"id": "000191", "name": "PEKO!!!", "description": "\"Peko\" is the catchphrase used by Usada Pekora, a VTuber from Hololive 3rd Gen. Japan branch.", "links": {"website": ["https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "https://virtualyoutuber.fandom.com/wiki/Usada_Pekora"], "subreddit": ["Pekora", "Hololive"]}, "path": {"33-166, T:0-1": [[225, 781], [225, 805], [231, 805], [231, 781]]}, "center": {"33-166, T:0-1": [228, 793]}},
-{"id": "000192", "name": "Mini YAGOO", "description": "YAGOO is the nickname of Motoaki Tanigo, the CEO of the company behind Hololive Production, COVER Corporation. His nickname originated from a misreading of his name \"Tanigo\" as \"YAGOO\" by Oozora Subaru, one of Hololive's talents.\n\nTanigo's profile pictures mostly use his portrait without his body, so limbs were drawn for him during one stream. This depiction of Tanigo, named Mini YAGOO, became a running gag.", "links": {"website": ["https://twitter.com/tanigox", "https://hololive.wiki/wiki/YAGOO"], "subreddit": ["oozorasubaru", "Hololive"]}, "path": {"24-166, T:0-1": [[232, 813], [232, 817], [229, 817], [229, 828], [233, 828], [233, 829], [250, 829], [250, 817], [246, 813]]}, "center": {"24-166, T:0-1": [240, 821]}},
-{"id": "000193", "name": "Haaton", "description": "Akai Haato is a VTuber from Hololive's 1st Generation from Japan. She also has a nickname \"Haachama\". Her fanbase is officially called \"Haaton\" (はあとん), which is a combination of \"Haato\" and \"ton\" 豚 (pig). They are represented by a yellow plush pig that also works as her mascot.", "links": {"website": ["https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1354, 894], [1370, 894], [1370, 901], [1354, 901]]}, "center": {"56-166, T:0-1": [1362, 898]}},
+{"id": "000189", "name": "Shuba Duck", "description": "Shuba Duck, a.k.a. Dancing Duck Oozora Subaru or Subaru Duck, refers to an animation of a duck in a backwards baseball cap dancing alongside virtual Hololive influencer Oozora Subaru. The duck is a representation of Subaru, who is often likened to a duck for her raspy ASMR voice, among other reasons. The duck took on the nickname \"Shuba Duck\" or \"Shubaduck\" based on Subaru's habit of regularly saying \"shuba\" when excited.", "links": {"website": ["https://knowyourmeme.com/memes/shuba-duck-dancing-duck-oozora-subaru"], "subreddit": ["oozorasubaru", "Hololive"], "discord": ["holofans"]}, "path": {"11-165, T:0-1": [[238, 782], [235, 787], [235, 790], [233, 791], [238, 793], [237, 796], [232, 801], [232, 805], [238, 809], [235, 813], [246, 813], [246, 810], [252, 806], [253, 802], [250, 798], [248, 797], [246, 799], [243, 797], [243, 792], [247, 790], [247, 789], [245, 787], [244, 782]]}, "center": {"11-165, T:0-1": [241, 803]}},
+{"id": "000190", "name": "Udin", "description": "Udin is the mascot of Kureiji Ollie, a VTuber from Hololive Indonesia.", "links": {"website": ["https://www.youtube.com/channel/UCYz_5n-uDuChHtLo7My1HnQ", "https://virtualyoutuber.fandom.com/wiki/Kureiji_Ollie"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"5-166, T:0-1": [[282, 759], [280, 757], [280, 756], [282, 754], [285, 754], [287, 756], [290, 753], [293, 753], [293, 755], [295, 754], [297, 754], [299, 756], [299, 767], [298, 768], [298, 769], [295, 772], [294, 772], [292, 773], [286, 773], [285, 772], [284, 772], [281, 769], [281, 768], [280, 767], [280, 762], [281, 761]]}, "center": {"5-166, T:0-1": [289, 765]}},
+{"id": "000191", "name": "PEKO!!!", "description": "\"Peko\" is the catchphrase used by Usada Pekora, a VTuber from Hololive 3rd Gen. Japan branch.", "links": {"website": ["https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "https://virtualyoutuber.fandom.com/wiki/Usada_Pekora"], "subreddit": ["Pekora", "Hololive"], "discord": ["holofans"]}, "path": {"33-166, T:0-1": [[225, 781], [225, 805], [231, 805], [231, 781]]}, "center": {"33-166, T:0-1": [228, 793]}},
+{"id": "000192", "name": "Mini YAGOO", "description": "YAGOO is the nickname of Motoaki Tanigo, the CEO of the company behind Hololive Production, COVER Corporation. His nickname originated from a misreading of his name \"Tanigo\" as \"YAGOO\" by Oozora Subaru, one of Hololive's talents.\n\nTanigo's profile pictures mostly use his portrait without his body, so limbs were drawn for him during one stream. This depiction of Tanigo, named Mini YAGOO, became a running gag.", "links": {"website": ["https://twitter.com/tanigox", "https://hololive.wiki/wiki/YAGOO"], "subreddit": ["oozorasubaru", "Hololive"], "discord": ["holofans"]}, "path": {"24-166, T:0-1": [[232, 813], [232, 817], [229, 817], [229, 828], [233, 828], [233, 829], [250, 829], [250, 817], [246, 813]]}, "center": {"24-166, T:0-1": [240, 821]}},
+{"id": "000193", "name": "Haaton", "description": "Haaton (はあとん) is the official name of the fanbase of Akai Haato (nicknamed \"Haachama\"), a VTuber from Hololive's 1st Generation from Japan. The name \"Haaton\" is a combination of \"Haato\" and \"ton\" 豚 (pig). Haaton is represented by a yellow plush pig that also works as Haato's mascot.", "links": {"website": ["https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg", "https://virtualyoutuber.fandom.com/wiki/Akai_Haato"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"66-166, T:0-1": [[1354, 893], [1354, 898], [1353, 899], [1353, 902], [1371, 902], [1371, 899], [1370, 898], [1370, 893], [1369, 893], [1365, 896], [1359, 896], [1355, 893]]}, "center": {"66-166, T:0-1": [1366, 899]}},
{"id": "000196", "name": "Oaklands", "description": "A pixel art version of the game Oaklands on Roblox, made by Typical Developers.", "links": {"website": ["https://twitter.com/TypicalDevelops"], "subreddit": ["Oaklands"]}, "path": {"125-166, T:0-1": [[0, 1113], [41, 1113], [41, 1122], [0, 1122]]}, "center": {"125-166, T:0-1": [21, 1118]}},
{"id": "000199", "name": "McMaster University", "description": "The school crest of McMaster University (Mac), located in Hamilton, Ontario, Canada.", "links": {"website": ["https://www.mcmaster.ca/", "https://en.wikipedia.org/wiki/McMaster_University"], "subreddit": ["McMaster"]}, "path": {"74-87": [[1246, 35], [1246, 51], [1255, 59], [1264, 51], [1264, 35], [1263, 35], [1263, 30], [1247, 30], [1247, 35]], "58-73": [[1246, 34], [1246, 49], [1255, 58], [1264, 49], [1264, 34]], "88-166, T:0-1": [[1246, 35], [1246, 51], [1255, 59], [1264, 51], [1264, 35]]}, "center": {"74-87": [1255, 43], "58-73": [1255, 44], "88-166, T:0-1": [1255, 45]}},
{"id": "000200", "name": "ImmutableX", "description": "ImmutableX is a Layer 2 scaling solution for NFTs built on Ethereum.", "links": {"website": ["https://www.immutable.com/"]}, "path": {"11-14": [[842, 855], [842, 897], [907, 897], [907, 855]], "106-140, 15-40, 51-103": [[841, 856], [906, 856], [906, 896], [841, 896], [853, 879], [853, 876], [841, 857]], "141-165, T:0-1": [[841, 856], [905, 856], [906, 865], [900, 870], [896, 878], [896, 885], [904, 890], [904, 896], [841, 896], [853, 880], [853, 876]]}, "center": {"11-14": [875, 876], "106-140, 15-40, 51-103": [874, 876], "141-165, T:0-1": [874, 876]}},
@@ -198,14 +198,14 @@
{"id": "000249", "name": "Protea", "description": "Proteas are a species of plant mostly found in South Africa. The King Protea is the national flower of South Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Protea"], "subreddit": ["SouthAfrica"]}, "path": {"109-165, T:0-1": [[765, 1053], [764, 1051], [765, 1050], [767, 1050], [768, 1050], [767, 1049], [767, 1048], [768, 1048], [769, 1049], [770, 1048], [770, 1047], [771, 1046], [772, 1048], [773, 1048], [773, 1049], [774, 1048], [775, 1048], [775, 1047], [775, 1049], [774, 1050], [775, 1051], [776, 1050], [777, 1049], [778, 1048], [778, 1049], [778, 1051], [777, 1052], [777, 1053], [777, 1054], [777, 1056], [776, 1057], [775, 1058], [775, 1060], [774, 1061], [773, 1060], [772, 1059], [771, 1061], [773, 1063], [772, 1064], [770, 1064], [770, 1063], [771, 1060], [769, 1060], [768, 1061], [767, 1060], [767, 1058], [767, 1057], [766, 1057], [766, 1056], [766, 1055], [765, 1055]]}, "center": {"109-165, T:0-1": [771, 1054]}},
{"id": "000250", "name": "Alula", "description": "A smaller version of the character Alula from Oneshot. Original sprite by Glitchious404.", "links": {"website": ["https://oneshot.fandom.com/wiki/Alula"], "subreddit": ["oneshot"]}, "path": {"109-166, T:0-1": [[1084, 1705], [1083, 1705], [1083, 1704], [1082, 1704], [1079, 1704], [1079, 1703], [1079, 1702], [1079, 1701], [1079, 1698], [1078, 1698], [1078, 1697], [1078, 1693], [1077, 1697], [1077, 1696], [1079, 1693], [1079, 1691], [1080, 1691], [1080, 1690], [1081, 1690], [1081, 1689], [1081, 1688], [1081, 1686], [1081, 1683], [1083, 1683], [1083, 1684], [1084, 1684], [1084, 1685], [1085, 1685], [1085, 1686], [1085, 1687], [1086, 1688], [1086, 1687], [1087, 1688], [1088, 1688], [1088, 1687], [1088, 1686], [1089, 1686], [1089, 1685], [1090, 1685], [1090, 1684], [1091, 1684], [1092, 1684], [1092, 1689], [1091, 1690], [1092, 1690], [1092, 1692], [1093, 1692], [1093, 1697], [1092, 1697], [1092, 1700], [1093, 1700], [1093, 1701], [1093, 1702], [1093, 1704], [1090, 1704], [1090, 1705], [1087, 1705]]}, "center": {"109-166, T:0-1": [1086, 1695]}},
{"id": "000251", "name": "Atlas", "description": "The Atlas is an iconic symbol of the game No Man's Sky.", "links": {"website": ["https://nomanssky.fandom.com/wiki/The_Atlas"], "subreddit": ["NoMansSkyTheGame"]}, "path": {"109-166, T:0-1": [[1633, 1611], [1616, 1628], [1616, 1629], [1633, 1656], [1650, 1629], [1650, 1628]]}, "center": {"109-166, T:0-1": [1633, 1632]}},
-{"id": "000252", "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"]}, "path": {"11-166, T:0-1": [[302, 758], [321, 758], [321, 777], [302, 777]]}, "center": {"11-166, T:0-1": [312, 768]}},
+{"id": "000252", "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": ["holofans"]}, "path": {"11-166, T:0-1": [[302, 758], [321, 758], [321, 777], [302, 777]]}, "center": {"11-166, T:0-1": [312, 768]}},
{"id": "000253", "name": "r/baduk", "description": "the subreddit for the ancient board game Go/Baduk/Weiqi", "links": {"subreddit": ["baduk"]}, "path": {"109-166, T:0-1": [[1494, 1279], [1550, 1279], [1550, 1289], [1494, 1289]]}, "center": {"109-166, T:0-1": [1522, 1284]}},
{"id": "000258", "name": "Green Lattice", "description": "Green Lattice was a peaceful faction, determined to fill the canvas with a beautiful orderly light and dark green lattice, That would serve as a safe home for art to live", "links": {"subreddit": ["GreenLattice"]}, "path": {"109-166, T:0-1": [[1499, 1499], [1569, 1499], [1570, 1518], [1620, 1520], [1620, 1539], [1595, 1539], [1594, 1580], [1535, 1579], [1534, 1585], [1499, 1586], [1498, 1499]]}, "center": {"109-166, T:0-1": [1547, 1542]}},
{"id": "000259", "name": "Scott Munley", "description": "Scott Manley's head nightmarishly projected onto the Mun. Fly nś̟̬a̗̪͓̬f̟͓̮̕e̴̙͇̞.", "links": {"website": ["https://www.youtube.com/channel/UCxzC4EngIsMrPmbm6Nxvb-A"], "subreddit": ["SpaceXPlace"]}, "path": {"109-165, T:0-1": [[938, 1519], [940, 1516], [943, 1513], [948, 1513], [952, 1515], [953, 1518], [953, 1523], [951, 1527], [949, 1528], [944, 1529], [940, 1526], [938, 1523]]}, "center": {"109-165, T:0-1": [946, 1521]}},
{"id": "000261", "name": "University of Washington", "description": "The University of Washington is a university in Seattle, Washington, United States. The university was founded in 1861, and is known for cherry trees and lots of rain. The school's mascot is a husky.\n\nThis art features some of the school's characteristic cherry tree blossoms. It was allied with Washington State University, Simon Fraser University, Hermitcraft, and more.", "links": {"website": ["http://uw.edu/", "https://en.wikipedia.org/wiki/University_of_Washington"], "subreddit": ["udub"]}, "path": {"66-73": [[889, 520], [889, 528], [905, 528], [905, 520]], "32-65": [[889, 520], [889, 528], [901, 528], [901, 520]], "26-31": [[884, 520], [884, 528], [895, 528], [895, 520]], "74-165, T:0-1": [[889, 520], [889, 534], [905, 534], [905, 520]]}, "center": {"66-73": [897, 524], "32-65": [895, 524], "26-31": [890, 524], "74-165, T:0-1": [897, 527]}},
{"id": "000262", "name": "Green Bay Packers", "description": "The Green Bay Packers are a historic American football team based in Green Bay, Wisconsin 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\nThe Packers have won 13 league championships, the most in NFL history, with nine pre-Super Bowl NFL titles and four Super Bowl victories.\n\nGO PACK GO!", "links": {"website": ["https://www.packers.com/", "https://en.wikipedia.org/wiki/Green_Bay_Packers"], "subreddit": ["GreenBayPackers", "place_CentralAlliance"]}, "path": {"1-164, T:0-1": [[407, 913], [428, 913], [428, 931], [407, 931]]}, "center": {"1-164, T:0-1": [418, 922]}},
{"id": "000263", "name": "Roskilde Cathedral", "description": "A cathedral from the Danish city of Roskilde.", "links": {"website": ["https://roskildedomkirke.dk/english/", "https://en.wikipedia.org/wiki/Roskilde_Cathedral"], "subreddit": ["place_nordicunion", "Denmark"]}, "path": {"97-165, T:0-1": [[281, 118], [281, 127], [280, 129], [277, 132], [277, 138], [276, 139], [276, 158], [303, 158], [303, 139], [301, 137], [301, 131], [298, 127], [298, 117], [297, 117], [295, 119], [295, 127], [292, 131], [292, 135], [287, 131], [284, 127], [284, 118]]}, "center": {"97-165, T:0-1": [290, 146]}},
-{"id": "000264", "name": "Club Atlético River Plate", "description": "Club Atlético River Plate is a sports club based in Buenos Aires, Argentina. They are rivals with the Boca Juniors club, also from Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Club_Atl%C3%A9tico_River_Plate"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"158-165, T:0-1": [[1129, 645], [1127, 647], [1127, 651], [1128, 652], [1128, 661], [1138, 661], [1138, 652], [1132, 646], [1131, 646], [1130, 645]]}, "center": {"158-165, T:0-1": [1133, 654]}},
+{"id": "000264", "name": "Club Atlético River Plate", "description": "Club Atlético River Plate is a sports club based in Buenos Aires, Argentina. They are rivals with the Boca Juniors club, also from Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Club_Atl%C3%A9tico_River_Plate"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"158-165, T:0-1": [[1129, 645], [1127, 647], [1127, 651], [1128, 652], [1128, 661], [1138, 661], [1138, 652], [1132, 646], [1131, 646], [1130, 645]]}, "center": {"158-165, T:0-1": [1133, 654]}},
{"id": "000266", "name": "Flag of Liechtenstein", "description": "Liechtenstein is a small country in Central Europe.\n\nThis space was donated by Switzerland on day 2 of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Liechtenstein", "https://en.wikipedia.org/wiki/Flag_of_Liechtenstein"], "discord": ["JS9eFKty"]}, "path": {"38-166, T:0-1": [[583, 682], [583, 683], [588, 689], [588, 691], [595, 697], [595, 699], [598, 699], [598, 682]]}, "center": {"38-166, T:0-1": [593, 687]}},
{"id": "000268", "name": "University of Michigan logo", "description": "The logo of the University of Michigan.", "links": {"website": ["https://umich.edu", "https://en.wikipedia.org/wiki/University_of_Michigan"], "subreddit": ["uofm", "MichiganWolverines"]}, "path": {"4-165, T:0-1": [[396, 274], [428, 274], [428, 297], [396, 297]]}, "center": {"4-165, T:0-1": [412, 286]}},
{"id": "000269", "name": "Average Greek vs. Turk Debate", "description": "\"Average Greek vs. Turk Debate\" is a popular meme video in Greece and Turkey, created by wow_mao. It's about the most peaceful and chad debate in the Balkans ever. This image features the thumbnail of the video, with the flags of Greece and Turkey along with gigachads from each country.", "links": {"website": ["https://www.youtube.com/watch?v=HfFx5UvzSxc"], "subreddit": ["Wow_Mao", "2balkan4you"]}, "path": {"58-165, T:0-1": [[1200, 700], [1200, 773], [1329, 773], [1329, 700]]}, "center": {"58-165, T:0-1": [1265, 737]}},
@@ -225,37 +225,37 @@
{"id": "000294", "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.", "links": {"website": ["https://ddlc.moe/", "https://en.wikipedia.org/wiki/Doki_Doki_Literature_Club!"], "subreddit": ["DDLC"]}, "path": {"109-165, T:0-1": [[1550, 1184], [1550, 1200], [1600, 1200], [1600, 1184]]}, "center": {"109-165, T:0-1": [1575, 1192]}},
{"id": "000295", "name": "r/spaceXPlace and affiliates mural", "description": "SpaceX and related interests. Features Starship S20, Starman / Roadster, The Hubble Space Telescope, Starhopper, and the logos for Tesla and LabPadre. Also features shoutouts to RGV Aerial Photography, Tim Dodd (The Everyday Astronaut), NasaSpaceflightLive, and Kerbal Space Program", "links": {"subreddit": ["SpaceXPlace"]}, "path": {"109-165, T:0-1": [[941, 1638], [941, 1631], [900, 1631], [905, 1620], [930, 1620], [930, 1610], [916, 1610], [916, 1606], [933, 1599], [934, 1592], [943, 1591], [949, 1585], [949, 1556], [954, 1551], [955, 1543], [952, 1535], [936, 1528], [935, 1524], [931, 1524], [930, 1528], [926, 1529], [919, 1522], [915, 1519], [901, 1519], [902, 1524], [894, 1522], [882, 1539], [881, 1546], [887, 1547], [887, 1580], [845, 1580], [846, 1612], [890, 1611], [894, 1637]]}, "center": {"109-165, T:0-1": [906, 1576]}},
{"id": "000297", "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 flying in the clouds with a night sky backdrop.\n\nA picture of Kirby was originally built here by Russian streamer Bratishkinoff. YouTube streamer Ludwig Ahgren used his chat to overtake Bratishkinoff's Kirby and build his own Kirby art, dividing his chat into nine teams to draw the piece quickly and efficiently. The art was overall loved by all communities (including Bratishkinoff) and saw minimal sabotage throughout the rest of r/place.\n\nIn a small but nevertheless amusing struggle, many attempted to give Kirby goofy-looking \"teeth\" right up to the very end.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)", "https://www.youtube.com/c/Ludwigahgren"], "subreddit": ["LudwigAhgren"]}, "path": {"103-108": [[1800, 539], [1800, 637], [1892, 637], [1892, 539]], "109-166, T:0-1": [[1800, 539], [1890, 539], [1890, 623], [1800, 623]]}, "center": {"103-108": [1846, 588], "109-166, T:0-1": [1845, 581]}},
-{"id": "000299", "name": "Marisad", "description": "Marisa Kirisame is a character from Touhou Project. In the fan-made anime \"Memories of Phantasm\", she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom, who dubbed her \"Marisad\" (Marisa + sad). Additionally the emote of Marisa crying spreaded across many Touhou-related Discord servers, further adding to its popularity.", "links": {"website": ["https://en.touhouwiki.net/wiki/Marisa_Kirisame"], "subreddit": ["Marisad", "touhou"], "discord": ["UVkWNdhQ"]}, "path": {"56-166, T:0-1": [[1785, 870], [1786, 870], [1809, 870], [1809, 893], [1791, 893], [1785, 887]]}, "center": {"56-166, T:0-1": [1797, 881]}},
+{"id": "000299", "name": "Marisad", "description": "Marisa Kirisame is a character from Touhou Project. In the fan-made anime Fantasy Kaleidoscope ~The Memories of Phantasm~, she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom after being popularized by Touhou YouTuber Chiruno, and was dubbed \"Marisad\" (Marisa + sad). Additionally the emote of Marisa crying spread across many Touhou-related Discord servers, further adding to its popularity.", "links": {"website": ["https://en.touhouwiki.net/wiki/Marisa_Kirisame"], "subreddit": ["Marisad", "touhou"], "discord": ["UVkWNdhQ"]}, "path": {"125-166, T:0-1": [[1784, 868], [1784, 889], [1787, 889], [1789, 891], [1789, 895], [1798, 895], [1800, 897], [1802, 895], [1810, 895], [1810, 868]]}, "center": {"125-166, T:0-1": [1797, 881]}},
{"id": "000300", "name": "New Zealand", "description": "New Zealand, known as Aotearoa in the indigineous Māori language, is a country in Oceania. This art features icons of New Zealand, including the Laser Kiwi, kākāpō, Goodnight Kiwi, Tino Rangatiratanga, kiwifruit, flanders (Anzac) poppies, and a map of New Zealand.\n\nThis art was made by r/newzealand and allied with the Seattle Seahawks and Thailand.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Zealand"], "subreddit": ["newzealand"]}, "path": {"76-81": [[1539, 709], [1539, 728], [1533, 728], [1533, 731], [1514, 731], [1514, 747], [1547, 747], [1552, 752], [1552, 767], [1577, 767], [1577, 729], [1554, 729], [1554, 714], [1554, 709]], "61-75": [[1539, 709], [1539, 728], [1533, 728], [1533, 731], [1515, 731], [1515, 747], [1552, 747], [1552, 709]], "82-165, T:0-1": [[1514, 731], [1514, 747], [1550, 747], [1550, 768], [1579, 768], [1579, 760], [1577, 760], [1577, 728], [1554, 728], [1554, 714], [1557, 711], [1563, 711], [1563, 706], [1562, 706], [1562, 689], [1515, 689], [1515, 711], [1539, 711], [1539, 728], [1514, 728]]}, "center": {"76-81": [1563, 743], "61-75": [1542, 737], "82-165, T:0-1": [1563, 742]}},
-{"id": "000301", "name": "Sakamata Chloe's Mask", "description": "A mask worn by Sakamata Chloe, a member of holoX, or hololive 6th Gen.", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1387, 1064], [1388, 1063], [1398, 1063], [1399, 1064], [1399, 1067], [1398, 1068], [1397, 1069], [1397, 1070], [1397, 1071], [1391, 1071], [1391, 1070], [1389, 1070], [1388, 1070], [1388, 1069], [1387, 1069], [1387, 1068], [1386, 1068], [1386, 1064], [1387, 1064], [1388, 1064]]}, "center": {"109-165, T:0-1": [1393, 1067]}},
+{"id": "000301", "name": "Sakamata Chloe's Mask", "description": "A mask worn by Sakamata Chloe, a member of holoX, or hololive 6th Gen.", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1387, 1064], [1388, 1063], [1398, 1063], [1399, 1064], [1399, 1067], [1398, 1068], [1397, 1069], [1397, 1070], [1397, 1071], [1391, 1071], [1391, 1070], [1389, 1070], [1388, 1070], [1388, 1069], [1387, 1069], [1387, 1068], [1386, 1068], [1386, 1064], [1387, 1064], [1388, 1064]]}, "center": {"109-165, T:0-1": [1393, 1067]}},
{"id": "000305", "name": "Zero", "description": "The main character of the indie game \"Katana ZERO\", a stylish neo-noir, action-platformer.", "links": {"website": ["https://katanazero.com/", "https://store.steampowered.com/app/460950/Katana_ZERO/", "https://katana-zero.fandom.com/wiki/Katana_Zero_Wiki"], "subreddit": ["KatanaZero"], "discord": ["katanazero"]}, "path": {"109-166, T:0-1": [[1136, 1857], [1164, 1857], [1164, 1871], [1166, 1871], [1166, 1885], [1166, 1883], [1165, 1883], [1163, 1881], [1159, 1885], [1159, 1890], [1159, 1893], [1136, 1893]]}, "center": {"109-166, T:0-1": [1150, 1874]}},
-{"id": "000306", "name": "The Stormlight Archive/Malazan", "description": "The Stormlight Archive and Malazan are both fantasy book series. The two communities worked together, becoming what is now the Science Fiction-Fantasy Alliance. Features characters from both series. The sword at the top is Nightblood from Warbreaker, The top two characters are Shallan (left) and Kaladin (right), accompanied by their respective sprens, Pattern and Sylphrena.", "links": {"subreddit": ["Stormlight_Archive", "malazan", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1830, 870], [1868, 870], [1868, 949], [1830, 949], [1830, 913]]}, "center": {"56-166, T:0-1": [1849, 910]}},
+{"id": "000306", "name": "The Stormlight Archive/Malazan", "description": "The Stormlight Archive and Malazan are both fantasy book series. The two communities worked together, becoming what is now the Science Fiction-Fantasy Alliance\n\nIn the middle of this art is a piece combining symbols from both The Stormlight Archive and Malazan. Around the symbol are elements from both series. From The Stormlight Archive, the sword at the top is Nightblood from Warbreaker and the top two characters are Shallan (left) and Kaladin (right), accompanied by their respective sprens, Pattern and Sylphrena. From Malazan, the main character Anomander Rake is pictured.", "links": {"website": ["https://www.brandonsanderson.com/the-stormlight-archive-series/", "https://en.wikipedia.org/wiki/Malazan_Book_of_the_Fallen"], "subreddit": ["Stormlight_Archive", "Malazan", "Cosmere", "SFFA"]}, "path": {"58-78, 81-87": [[1829, 879], [1829, 950], [1869, 950], [1869, 879]], "88-166, T:0-1": [[1829, 869], [1829, 950], [1869, 950], [1869, 869]]}, "center": {"58-78, 81-87": [1849, 915], "88-166, T:0-1": [1849, 910]}},
{"id": "000308", "name": "Koishi Komeiji", "description": "She is a satori, a mind reading yokai from Touhou Project. She also loves her hat.", "links": {"website": ["https://en.touhouwiki.net/wiki/Koishi_Komeiji"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1621, 1484], [1621, 1517], [1654, 1517], [1654, 1484]]}, "center": {"109-166, T:0-1": [1638, 1501]}},
-{"id": "000310", "name": "The Last Dance", "description": "A picture of Lionel Messi and Cristiano Ronaldo in representation of the brotherhood between Portuguese and Argentinian communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Messi%E2%80%93Ronaldo_rivalry"], "subreddit": ["portugal", "PORTUGALCARALHO", "argentina", "ArgPixelArt", "Republica_Argentina", "dankargentina"]}, "path": {"109-165, T:0-1": [[1532, 1831], [1536, 1831], [1534, 1824], [1537, 1821], [1543, 1823], [1542, 1831], [1548, 1835], [1555, 1845], [1559, 1857], [1558, 1869], [1554, 1871], [1551, 1868], [1552, 1860], [1551, 1854], [1549, 1857], [1550, 1874], [1550, 1884], [1548, 1891], [1547, 1904], [1546, 1909], [1541, 1911], [1533, 1910], [1520, 1912], [1514, 1912], [1512, 1901], [1510, 1884], [1511, 1871], [1511, 1868], [1505, 1863], [1503, 1856], [1504, 1850], [1510, 1839], [1515, 1836], [1520, 1830], [1522, 1827], [1528, 1825], [1531, 1830]]}, "center": {"109-165, T:0-1": [1531, 1868]}},
+{"id": "000310", "name": "The Last Dance", "description": "A picture of Lionel Messi and Cristiano Ronaldo in representation of the brotherhood between Portuguese and Argentinian communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Messi%E2%80%93Ronaldo_rivalry"], "subreddit": ["portugal", "PORTUGALCARALHO", "argentina", "ArgPixelArt", "Republica_Argentina"]}, "path": {"109-165, T:0-1": [[1532, 1831], [1536, 1831], [1534, 1824], [1537, 1821], [1543, 1823], [1542, 1831], [1548, 1835], [1555, 1845], [1559, 1857], [1558, 1869], [1554, 1871], [1551, 1868], [1552, 1860], [1551, 1854], [1549, 1857], [1550, 1874], [1550, 1884], [1548, 1891], [1547, 1904], [1546, 1909], [1541, 1911], [1533, 1910], [1520, 1912], [1514, 1912], [1512, 1901], [1510, 1884], [1511, 1871], [1511, 1868], [1505, 1863], [1503, 1856], [1504, 1850], [1510, 1839], [1515, 1836], [1520, 1830], [1522, 1827], [1528, 1825], [1531, 1830]]}, "center": {"109-165, T:0-1": [1531, 1868]}},
{"id": "000311", "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": {"3-12": [[0, 430], [19, 430], [19, 452], [0, 452]], "13-43": [[0, 429], [32, 429], [32, 452], [0, 452]], "132-161, 44-122, T:0-1": [[0, 428], [36, 428], [36, 464], [0, 464]]}, "center": {"3-12": [10, 441], "13-43": [16, 441], "132-161, 44-122, T:0-1": [18, 446]}},
{"id": "000312", "name": "Flag of Namibia", "description": "The flag of Namibia, a largely desert nation to South Africa's north.", "links": {"website": ["https://en.wikipedia.org/wiki/Namibia"]}, "path": {"109-165, T:0-1": [[751, 1068], [751, 1072], [757, 1072], [757, 1068]]}, "center": {"109-165, T:0-1": [754, 1070]}},
{"id": "000315", "name": "Flag of Botswana", "description": "The flag of the Southern African nation, Botswana. Bordered by Namibia, Zambia, Zimbabwe, and South Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Botswana"], "subreddit": ["botswana"]}, "path": {"109-165, T:0-1": [[743, 1067], [750, 1067], [750, 1072], [743, 1072]]}, "center": {"109-165, T:0-1": [747, 1070]}},
{"id": "000317", "name": "Avali", "description": "A fictional species of feathered raptors created by RyuujinZERO and popularized by a mod for the game Starbound. The art is a sprite from the mod.", "links": {"website": ["https://community.playstarbound.com/resources/avali-triage.2852/triage.2852/"], "subreddit": ["avali"]}, "path": {"109-166, T:0-1": [[1477, 1260], [1477, 1302], [1446, 1302], [1446, 1260]]}, "center": {"109-166, T:0-1": [1462, 1281]}},
-{"id": "000318", "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": ["brasil", "argentina", "Republica_Argentina", "dankargentina", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"62-164, T:0-1": [[1023, 634], [1029, 639], [1039, 638], [1043, 633], [1040, 628], [1039, 619], [1040, 612], [1043, 606], [1041, 597], [1036, 590], [1030, 589], [1024, 593], [1022, 600], [1022, 607], [1024, 610], [1025, 614], [1028, 617], [1028, 624], [1025, 628], [1024, 634]]}, "center": {"62-164, T:0-1": [1032, 604]}},
+{"id": "000318", "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": ["brasil", "argentina", "Republica_Argentina", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"62-164, T:0-1": [[1023, 634], [1029, 639], [1039, 638], [1043, 633], [1040, 628], [1039, 619], [1040, 612], [1043, 606], [1041, 597], [1036, 590], [1030, 589], [1024, 593], [1022, 600], [1022, 607], [1024, 610], [1025, 614], [1028, 617], [1028, 624], [1025, 628], [1024, 634]]}, "center": {"62-164, T:0-1": [1032, 604]}},
{"id": "000319", "name": "Flag of Lesotho", "description": "A small flag of Lesotho, a land-locked enclave nation of South Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesotho"]}, "path": {"109-165, T:0-1": [[736, 1068], [736, 1072], [742, 1072], [742, 1068]]}, "center": {"109-165, T:0-1": [739, 1070]}},
{"id": "000320", "name": "osu!hungary", "description": "The Hungarian osu! community. An insanely dedicated osu! group. With the help from the osu! Storyboarder Banquet community, and after the negotiations with the Star Wars community, our logo and our community efforts will live forever and ever.", "links": {"subreddit": ["osuplace", "osugame"], "discord": ["rFYD6Pq"]}, "path": {"109-166, T:0-1": [[713, 1657], [719, 1654], [726, 1658], [726, 1664], [713, 1664]]}, "center": {"109-166, T:0-1": [719, 1660]}},
{"id": "000321", "name": "Serball", "description": "A parody of the character Serval from the anime Kemono Friends. She is a playable character in the Roblox game Become Fumo", "links": {"website": ["https://www.roblox.com/games/6238705697/Become-Fumo"]}, "path": {"109-166, T:0-1": [[607, 1569], [603, 1574], [604, 1581], [608, 1583], [617, 1583], [620, 1580], [620, 1578], [620, 1574], [620, 1572], [617, 1571], [611, 1569]]}, "center": {"109-166, T:0-1": [612, 1576]}},
{"id": "000322", "name": "Saudi Arabia", "description": "featuring the saudi emblem and some Arabic coffee", "links": {"subreddit": ["saudiarabia"]}, "path": {"109-166, T:0-1": [[1591, 1044], [1645, 1044], [1645, 1074], [1591, 1074]]}, "center": {"109-166, T:0-1": [1618, 1059]}},
{"id": "000323", "name": "Hat Mouse", "description": "A mouse who sells hats in the game Stardew Valley.\n\n\"Hi. Me sell hats. Okay, poke? Come to old old old haus, poke. Bring coines.\" - Hat Mouse", "links": {"website": ["https://stardewvalleywiki.com/Abandoned_House"], "subreddit": ["StardewValley"]}, "path": {"109-166, T:0-1": [[1708, 1008], [1767, 1008], [1767, 1043], [1709, 1042]]}, "center": {"109-166, T:0-1": [1738, 1025]}},
{"id": "000325", "name": "Starman / Tesla Roadster", "description": "Elon Musk's Tesla Roaster and its sole passenger, Starman (not to scale). Currently orbiting the sun near the orbits of Earth and Mars.", "links": {"website": ["https://spacein3d.com/where-is-starman-live-tracker/"], "subreddit": ["spacexplace"]}, "path": {"109-166, T:0-1": [[908, 1608], [911, 1609], [932, 1599], [933, 1589], [930, 1587], [931, 1572], [929, 1560], [921, 1554], [912, 1554], [903, 1561], [904, 1584], [910, 1594], [910, 1604], [908, 1605], [905, 1605]]}, "center": {"109-166, T:0-1": [918, 1580]}},
-{"id": "000328", "name": "Capybara", "description": "The capybara (called \"carpincho\" in Argentina) is a symbolic animal in the region.", "links": {"website": ["https://en.wikipedia.org/wiki/Capybara"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"8-165, T:0-1": [[923, 662], [923, 665], [922, 666], [919, 666], [917, 668], [917, 669], [916, 669], [916, 674], [919, 677], [924, 677], [925, 676], [927, 676], [928, 677], [932, 677], [932, 671], [934, 671], [936, 669], [936, 665], [934, 663], [928, 663], [927, 662]]}, "center": {"8-165, T:0-1": [926, 670]}},
+{"id": "000328", "name": "Capybara", "description": "The capybara (called \"carpincho\" in Argentina) is a symbolic animal in the region.", "links": {"website": ["https://en.wikipedia.org/wiki/Capybara"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"8-165, T:0-1": [[923, 662], [923, 665], [922, 666], [919, 666], [917, 668], [917, 669], [916, 669], [916, 674], [919, 677], [924, 677], [925, 676], [927, 676], [928, 677], [932, 677], [932, 671], [934, 671], [936, 669], [936, 665], [934, 663], [928, 663], [927, 662]]}, "center": {"8-165, T:0-1": [926, 670]}},
{"id": "000330", "name": "Hubble Space Telescope", "description": "NASA's HST, launched in 1990 aboard the Space Shuttle Discovery.", "links": {"website": ["https://www.nasa.gov/mission_pages/hubble/main/index.html"], "subreddit": ["spaceXPlace"]}, "path": {"109-165, T:0-1": [[919, 1535], [918, 1534], [913, 1528], [913, 1526], [916, 1522], [919, 1522], [924, 1527], [925, 1529], [933, 1533], [931, 1528], [931, 1526], [934, 1525], [935, 1526], [935, 1533], [938, 1530], [953, 1537], [950, 1540], [954, 1543], [955, 1548], [952, 1552], [949, 1554], [946, 1554], [941, 1551], [936, 1555], [921, 1548], [926, 1543], [921, 1539], [920, 1534]]}, "center": {"109-165, T:0-1": [935, 1540]}},
{"id": "000333", "name": "Sakuya Izayoi", "description": "The perfect and elegant maid from Touhou Project.", "links": {"website": ["https://en.touhouwiki.net/wiki/Sakuya_Izayoi"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1654, 1451], [1654, 1484], [1687, 1484], [1687, 1451]]}, "center": {"109-166, T:0-1": [1671, 1468]}},
{"id": "000334", "name": "Battle for Dream Island", "description": "Battle for Dream Island (BFDI) is a YouTube web series where anthropomorphic objects compete in a competition to win the titular luxury island, Dream Island.\n\nThis art was made by the Battle for Dream Island r/place community, with the characters Firey, Donut, Four, X, Cloudy, and the announcers.", "links": {"website": ["https://bfdi.tv/", "https://www.youtube.com/watch?v=YQa2-DY7Y_Q&list=PL24C8378F296DB656&ab_channel=jacknjellify"], "subreddit": ["BattleForDreamIsland", "place_CentralAlliance"]}, "path": {"18-106": [[608, 865], [608, 886], [609, 886], [609, 894], [628, 894], [628, 886], [631, 886], [631, 865]], "111-166, T:0-1": [[481, 1062], [481, 1069], [480, 1070], [477, 1070], [477, 1092], [511, 1092], [511, 1062]]}, "center": {"18-106": [620, 890], "111-166, T:0-1": [494, 1087]}},
{"id": "000336", "name": "r/duck_place", "description": "A chain of ducks holding hands, originally created by r/duck_place. r/croatia, r/serbia, and r/outerwilds helped out by adding hats and a marshmallow on a stick to sit on.", "links": {"website": ["https://en.wikipedia.org/wiki/Duck"], "subreddit": ["duck_place", "serbia", "croatia", "outerwilds", "place_CentralAlliance"]}, "path": {"20-35": [[255, 905], [255, 908], [254, 909], [254, 911], [255, 912], [255, 915], [339, 916], [339, 917], [401, 917], [401, 910], [303, 910], [303, 909], [301, 909], [301, 905]], "3-19": [[256, 907], [253, 910], [255, 912], [255, 913], [257, 915], [257, 916], [483, 916], [483, 912], [484, 911], [487, 911], [487, 905], [258, 905]], "36-166, T:0-1": [[293, 901], [293, 907], [291, 907], [292, 907], [292, 912], [293, 912], [293, 916], [294, 916], [294, 917], [295, 917], [295, 918], [296, 918], [297, 918], [297, 917], [368, 917], [368, 918], [368, 919], [389, 919], [389, 920], [394, 920], [394, 919], [395, 919], [395, 918], [396, 918], [396, 917], [404, 917], [404, 909], [400, 909], [400, 906], [393, 906], [393, 909], [389, 909], [389, 906], [382, 906], [382, 909], [378, 909], [378, 906], [371, 906], [371, 909], [367, 909], [367, 906], [361, 906], [360, 906], [360, 909], [357, 909], [357, 905], [353, 905], [353, 906], [352, 906], [352, 905], [348, 905], [348, 909], [346, 909], [346, 905], [343, 905], [342, 905], [342, 906], [341, 906], [341, 905], [338, 905], [337, 905], [337, 909], [335, 909], [335, 905], [331, 905], [331, 906], [330, 906], [330, 905], [327, 905], [326, 905], [326, 909], [324, 909], [324, 905], [321, 905], [320, 905], [320, 906], [319, 906], [319, 905], [315, 905], [315, 909], [313, 909], [313, 902], [309, 902], [309, 903], [308, 903], [308, 902], [304, 902], [304, 909], [302, 909], [302, 900], [293, 900]]}, "center": {"20-35": [282, 910], "3-19": [370, 911], "36-166, T:0-1": [374, 913]}},
-{"id": "000337", "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America. This Argentinian flag has tango dancers, fernet con coca, mate, Obelisco, Mafalda, and San Martín crossing the Andes.\n\nThis flag was allied with Love Live!, Brazil, Uruguay, the Minnesota Vikings, and more. They successfully defended their art against large streamer raids.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"1-54": [[905, 619], [905, 665], [999, 665], [999, 619]], "55-165, T:0-1": [[905, 619], [1290, 620], [1290, 664], [1260, 664], [1260, 654], [1246, 654], [1243, 657], [1243, 665], [905, 665]]}, "center": {"1-54": [952, 642], "55-165, T:0-1": [928, 642]}},
+{"id": "000337", "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America. This Argentinian flag has tango dancers, fernet con coca, mate, Obelisco, Mafalda, and San Martín crossing the Andes.\n\nThis flag was allied with Love Live!, Brazil, Uruguay, the Minnesota Vikings, and more. They successfully defended their art against large streamer raids.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"1-54": [[905, 619], [905, 665], [999, 665], [999, 619]], "55-165, T:0-1": [[905, 619], [1290, 620], [1290, 664], [1260, 664], [1260, 654], [1246, 654], [1243, 657], [1243, 665], [905, 665]]}, "center": {"1-54": [952, 642], "55-165, T:0-1": [928, 642]}},
{"id": "000340", "name": "Etika", "description": "A memorial dedicated to the iconic YouTube streamer Desmond Daniel Amofah, more commonly known as Etika. This art features 2 Joy-Cons, a Minecraft heart, a Smash Ball, a Subway sandwich, his iconic 'E' logo, and his saying FRFX meaning \"for real facts\". Etika's Sponsor Discord worked together to gather as many Joy-Con Boyz as possible to work on both Etika memorials.", "links": {"website": ["http://etikaworldnetwork.com/", "https://en.wikipedia.org/wiki/Etika"], "subreddit": ["EtikaRedditNetwork"], "discord": ["VHzRpZ3327"]}, "path": {"78-103": [[1579, 165], [1579, 176], [1660, 176], [1660, 147], [1615, 147], [1615, 165]], "56-77": [[1615, 147], [1615, 176], [1660, 176], [1660, 147]], "104-166, T:0-1": [[1578, 165], [1616, 165], [1616, 148], [1617, 147], [1659, 147], [1659, 176], [1588, 174], [1578, 174], [1569, 177], [1568, 165]]}, "center": {"78-103": [1630, 162], "56-77": [1638, 162], "104-166, T:0-1": [1627, 154]}},
{"id": "000342", "name": "Flag of Azerbaijan", "description": "Azerbaijan is a country in the Caucasus region of Eastern Europe and Western Asia.\n\nThis flag was originally a little bit more left, but its moon and star have been moved to the middle.\n\nAzerbaijan and Hungary squabbled initially in multiple border conflicts. Despite the prickly start (e.g., Azerbaijan's war with r/furry_irl), Azerbaijan and Hungary became valued allies to their local group. Both territories were lost due to the expansion of the Nordic territories, and the flag moved to its current location.", "links": {"website": ["https://en.wikipedia.org/wiki/Azerbaijan", "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan"], "subreddit": ["placeazerbaijan", "azerbaijan"]}, "path": {"96-97": [[1008, 166], [1008, 197], [1072, 197], [1072, 166]], "89-93": [[852, 166], [852, 197], [1065, 197], [1065, 166], [893, 166], [893, 67], [799, 67], [799, 89], [893, 89], [893, 166]], "94-95": [[852, 166], [852, 197], [1072, 197], [1072, 166]], "80-88": [[799, 67], [799, 89], [893, 89], [893, 67]], "52-79": [[799, 69], [799, 89], [893, 89], [893, 69]], "39-51": [[800, 69], [800, 89], [929, 89], [929, 69]], "35-37": [[875, 69], [875, 76], [893, 76], [893, 69]], "3-4": [[968, 78], [968, 88], [977, 88], [977, 78]], "20-27": [[299, 299], [367, 299], [367, 318], [299, 318]], "7-19": [[333, 299], [367, 299], [367, 318], [333, 318]], "98-166, T:0-1": [[825, 166], [825, 198], [1072, 198], [1072, 166]]}, "center": {"96-97": [1040, 182], "89-93": [929, 182], "94-95": [962, 182], "80-88": [846, 78], "52-79": [846, 79], "39-51": [865, 79], "35-37": [884, 73], "3-4": [973, 83], "20-27": [333, 309], "7-19": [350, 309], "98-166, T:0-1": [949, 182]}},
-{"id": "000345", "name": "Obelisco de Buenos Aires", "description": "The Obelisco de Buenos Aires (Obelisk of Buenos Aires) is a national historic monument and icon of Buenos Aires, Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelisco_de_Buenos_Aires"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"61-165, T:0-1": [[1126, 624], [1124, 627], [1124, 653], [1123, 653], [1123, 656], [1129, 656], [1129, 653], [1128, 653], [1128, 627]]}, "center": {"61-165, T:0-1": [1126, 641]}},
-{"id": "000347", "name": "Crossing of the Andes", "description": "The Crossing of the Andes (Spanish: Cruce de los Andes) was one of the most important feats in the Argentine and Chilean wars of independence, in which a combined army of Argentine soldiers and Chilean exiles invaded Chile, leading to Chile's liberation from Spanish rule. Crossing the Andes mountain range was a major step in the strategy devised by José de San Martín to defeat the royalist forces at their stronghold of Lima, Viceroyalty of Perú, and secure the Spanish-American independence movements.", "links": {"website": ["https://en.wikipedia.org/wiki/Crossing_of_the_Andes"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"72-148": [[1203, 640], [1200, 643], [1200, 650], [1199, 651], [1199, 653], [1197, 653], [1197, 657], [1200, 657], [1200, 660], [1201, 661], [1201, 665], [1243, 665], [1243, 657], [1240, 654], [1240, 652], [1246, 652], [1246, 654], [1260, 654], [1260, 664], [1290, 664], [1290, 645], [1287, 640], [1280, 635], [1274, 642], [1266, 634], [1264, 634], [1256, 642], [1253, 639], [1246, 647], [1245, 647], [1243, 645], [1238, 651], [1237, 651], [1234, 648], [1231, 651], [1230, 651], [1227, 648], [1225, 648], [1217, 656], [1213, 662], [1213, 658], [1211, 656], [1211, 649], [1213, 649], [1213, 647], [1211, 647], [1208, 644], [1207, 644], [1204, 647], [1204, 640]], "149-165, T:0-1": [[1201, 665], [1201, 658], [1197, 656], [1196, 655], [1196, 654], [1198, 654], [1198, 651], [1199, 650], [1199, 646], [1200, 646], [1200, 621], [1201, 621], [1203, 623], [1203, 647], [1205, 647], [1207, 645], [1212, 645], [1212, 656], [1213, 657], [1213, 659], [1214, 659], [1224, 649], [1224, 644], [1230, 644], [1230, 652], [1233, 649], [1233, 644], [1239, 644], [1239, 648], [1240, 648], [1242, 646], [1242, 641], [1248, 641], [1248, 644], [1252, 640], [1252, 635], [1258, 635], [1258, 640], [1264, 634], [1264, 630], [1270, 630], [1270, 638], [1272, 640], [1272, 635], [1278, 635], [1278, 638], [1280, 636], [1280, 631], [1286, 631], [1286, 635], [1289, 638], [1289, 639], [1287, 639], [1287, 645], [1290, 648], [1290, 664], [1260, 664], [1260, 654], [1246, 654], [1246, 652], [1240, 652], [1240, 654], [1243, 657], [1243, 665]]}, "center": {"72-148": [1278, 653], "149-165, T:0-1": [1276, 652]}},
+{"id": "000345", "name": "Obelisco de Buenos Aires", "description": "The Obelisco de Buenos Aires (Obelisk of Buenos Aires) is a national historic monument and icon of Buenos Aires, Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Obelisco_de_Buenos_Aires"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"61-165, T:0-1": [[1126, 624], [1124, 627], [1124, 653], [1123, 653], [1123, 656], [1129, 656], [1129, 653], [1128, 653], [1128, 627]]}, "center": {"61-165, T:0-1": [1126, 641]}},
+{"id": "000347", "name": "Crossing of the Andes", "description": "The Crossing of the Andes (Spanish: Cruce de los Andes) was one of the most important feats in the Argentine and Chilean wars of independence, in which a combined army of Argentine soldiers and Chilean exiles invaded Chile, leading to Chile's liberation from Spanish rule. Crossing the Andes mountain range was a major step in the strategy devised by José de San Martín to defeat the royalist forces at their stronghold of Lima, Viceroyalty of Perú, and secure the Spanish-American independence movements.", "links": {"website": ["https://en.wikipedia.org/wiki/Crossing_of_the_Andes"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"72-148": [[1203, 640], [1200, 643], [1200, 650], [1199, 651], [1199, 653], [1197, 653], [1197, 657], [1200, 657], [1200, 660], [1201, 661], [1201, 665], [1243, 665], [1243, 657], [1240, 654], [1240, 652], [1246, 652], [1246, 654], [1260, 654], [1260, 664], [1290, 664], [1290, 645], [1287, 640], [1280, 635], [1274, 642], [1266, 634], [1264, 634], [1256, 642], [1253, 639], [1246, 647], [1245, 647], [1243, 645], [1238, 651], [1237, 651], [1234, 648], [1231, 651], [1230, 651], [1227, 648], [1225, 648], [1217, 656], [1213, 662], [1213, 658], [1211, 656], [1211, 649], [1213, 649], [1213, 647], [1211, 647], [1208, 644], [1207, 644], [1204, 647], [1204, 640]], "149-165, T:0-1": [[1201, 665], [1201, 658], [1197, 656], [1196, 655], [1196, 654], [1198, 654], [1198, 651], [1199, 650], [1199, 646], [1200, 646], [1200, 621], [1201, 621], [1203, 623], [1203, 647], [1205, 647], [1207, 645], [1212, 645], [1212, 656], [1213, 657], [1213, 659], [1214, 659], [1224, 649], [1224, 644], [1230, 644], [1230, 652], [1233, 649], [1233, 644], [1239, 644], [1239, 648], [1240, 648], [1242, 646], [1242, 641], [1248, 641], [1248, 644], [1252, 640], [1252, 635], [1258, 635], [1258, 640], [1264, 634], [1264, 630], [1270, 630], [1270, 638], [1272, 640], [1272, 635], [1278, 635], [1278, 638], [1280, 636], [1280, 631], [1286, 631], [1286, 635], [1289, 638], [1289, 639], [1287, 639], [1287, 645], [1290, 648], [1290, 664], [1260, 664], [1260, 654], [1246, 654], [1246, 652], [1240, 652], [1240, 654], [1243, 657], [1243, 665]]}, "center": {"72-148": [1278, 653], "149-165, T:0-1": [1276, 652]}},
{"id": "000352", "name": "Kawashiro Nitori", "description": "Kawashiro Nitori is a character from the Touhou Project. She is one of the kappas, a tech-savvy group in Touhou.\n\nNitori was the first of the three Touhou artworks in this region to be constructed in this area, established on the first day of the event. She was later attacked by a streamers, and was redesigned into a leaning position to avoid further streamer attacks. This art was originally designed by BoopyLoops, and was redesigned by Roger 22 and Sakuya Izaoyi.", "links": {"website": ["https://en.touhouwiki.net/wiki/Nitori_Kawashiro"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"134-147, 28-114, T:0-1": [[477, 528], [473, 530], [470, 534], [469, 537], [469, 540], [471, 542], [471, 548], [473, 548], [473, 549], [475, 551], [476, 551], [476, 553], [485, 553], [485, 551], [486, 551], [488, 549], [488, 548], [490, 548], [490, 542], [492, 540], [492, 537], [491, 536], [491, 534], [489, 532], [489, 531], [487, 529], [484, 528]], "115-133, 148-157": [[477, 528], [473, 530], [470, 533], [470, 536], [469, 537], [469, 541], [492, 541], [492, 537], [490, 533], [488, 530], [485, 528]], "158-166": [[474, 528], [470, 533], [469, 536], [469, 538], [471, 541], [501, 541], [501, 540], [499, 538], [499, 536], [497, 534], [494, 534], [493, 533], [490, 533], [488, 529], [487, 528], [485, 528], [484, 527], [477, 527], [476, 528]]}, "center": {"134-147, 28-114, T:0-1": [480, 538], "115-133, 148-157": [481, 535], "158-166": [482, 534]}},
{"id": "000354", "name": "Nordic Union", "description": "A collection of countries in northern Europe, including Denmark, Finland, Iceland, Norway, and Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Nordic_countries"], "subreddit": ["place_nordicunion", "AlandIslands", "Denmark", "FaroeIslands", "Greenland", "Iceland", "Norge", "SaamiPeople", "Suomi", "sweden"]}, "path": {"109-146": [[215, 35], [215, 93], [186, 93], [186, 97], [207, 97], [207, 100], [235, 100], [235, 125], [267, 125], [267, 128], [271, 128], [271, 131], [273, 131], [273, 134], [276, 134], [276, 158], [337, 158], [337, 171], [433, 171], [433, 298], [555, 298], [555, 285], [594, 285], [594, 202], [634, 202], [634, 106], [799, 106], [799, 89], [893, 89], [893, 70], [885, 70], [885, 68], [840, 68], [840, 70], [707, 70], [707, 35]], "94-108": [[180, 93], [180, 96], [207, 96], [207, 100], [234, 100], [234, 125], [267, 125], [267, 128], [270, 128], [270, 131], [273, 131], [273, 134], [276, 134], [276, 158], [337, 158], [337, 160], [431, 160], [431, 179], [439, 179], [439, 193], [433, 193], [433, 298], [555, 298], [555, 285], [594, 285], [594, 202], [634, 202], [634, 106], [799, 106], [799, 89], [893, 89], [893, 69], [840, 69], [840, 70], [707, 70], [707, 35], [215, 35], [215, 93]], "61-93": [[215, 35], [215, 96], [231, 96], [231, 101], [258, 101], [258, 125], [267, 125], [267, 128], [270, 128], [270, 131], [273, 131], [273, 134], [333, 133], [333, 136], [337, 136], [339, 138], [339, 152], [340, 152], [340, 160], [431, 160], [431, 179], [439, 179], [439, 192], [433, 192], [433, 298], [536, 298], [536, 202], [634, 202], [634, 106], [799, 106], [799, 67], [842, 67], [842, 35], [791, 36], [791, 70], [707, 70], [707, 71], [656, 71], [656, 35]], "1-60": [[297, 35], [297, 45], [301, 45], [301, 84], [245, 84], [245, 104], [265, 104], [265, 108], [274, 116], [291, 116], [291, 134], [290, 134], [290, 156], [293, 156], [293, 159], [337, 159], [337, 160], [372, 160], [372, 162], [634, 162], [634, 106], [781, 106], [781, 94], [785, 94], [785, 85], [790, 85], [790, 70], [602, 70], [602, 35]], "147-166, T:0-1": [[187, 93], [187, 97], [207, 97], [207, 100], [235, 100], [235, 125], [267, 125], [267, 128], [270, 128], [270, 131], [273, 131], [273, 134], [276, 134], [276, 158], [340, 158], [340, 171], [433, 171], [433, 298], [540, 298], [541, 297], [541, 290], [542, 289], [554, 289], [555, 288], [555, 285], [594, 285], [594, 202], [634, 202], [634, 189], [635, 189], [635, 186], [634, 186], [634, 185], [636, 182], [636, 179], [634, 179], [634, 138], [799, 138], [799, 89], [893, 89], [893, 69], [886, 69], [886, 67], [840, 67], [840, 70], [707, 70], [707, 35], [538, 35], [538, 33], [536, 31], [534, 31], [532, 33], [530, 31], [528, 31], [526, 33], [526, 35], [501, 35], [501, 33], [499, 31], [497, 31], [496, 32], [495, 32], [494, 31], [492, 31], [490, 33], [490, 35], [363, 35], [359, 39], [355, 35], [296, 35], [294, 33], [254, 33], [252, 35], [215, 35], [215, 93]]}, "center": {"109-146": [524, 133], "94-108": [525, 133], "61-93": [508, 121], "1-60": [518, 99], "147-166, T:0-1": [524, 133]}},
-{"id": "000359", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"67-164, T:0-1": [[1174, 665], [1174, 659], [1169, 657], [1168, 656], [1168, 647], [1167, 646], [1167, 642], [1170, 637], [1171, 636], [1172, 636], [1172, 632], [1186, 632], [1186, 636], [1187, 636], [1191, 641], [1191, 656], [1189, 658], [1186, 659], [1186, 665]]}, "center": {"67-164, T:0-1": [1180, 648]}},
+{"id": "000359", "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": ["argentina", "Republica_Argentina"]}, "path": {"67-164, T:0-1": [[1174, 665], [1174, 659], [1169, 657], [1168, 656], [1168, 647], [1167, 646], [1167, 642], [1170, 637], [1171, 636], [1172, 636], [1172, 632], [1186, 632], [1186, 636], [1187, 636], [1191, 641], [1191, 656], [1189, 658], [1186, 659], [1186, 665]]}, "center": {"67-164, T:0-1": [1180, 648]}},
{"id": "000361", "name": "Overly Sarcastic Productions", "description": "An edutainment YouTube channel based around discussing literature, mythology, and history with sarcasm and attitude. Blue managed to recover from being nuked by Dr. Pepper before r/place's final moments.", "links": {"website": ["https://www.youtube.com/c/OverlySarcasticProductionsChannel"], "subreddit": ["osp"]}, "path": {"109-166, T:0-1": [[1703, 1648], [1714, 1648], [1714, 1625], [1705, 1625], [1705, 1622], [1700, 1622], [1697, 1624], [1693, 1624], [1691, 1628], [1702, 1638]]}, "center": {"109-166, T:0-1": [1705, 1634]}},
{"id": "000365", "name": "The untitled Teddy and Ben show", "description": "The untitled Teddy and Ben show is the final web series by wavetro, a former YouTuber who created original 3D animated web series. The pictured characters are Teddy and Ben, the show's main characters. The series was cut short when wavetro left his YouTube career to pursue new interests.", "links": {"website": ["https://www.youtube.com/watch?v=MSOEsx8DbkQ", "https://wavetro.net/"], "subreddit": ["wavetro"]}, "path": {"115-165, T:0-1": [[1049, 400], [1049, 409], [1052, 409], [1052, 411], [1055, 414], [1060, 414], [1063, 411], [1063, 402], [1061, 400]]}, "center": {"115-165, T:0-1": [1057, 406]}},
{"id": "000366", "name": "Shade", "description": "Shade, the main character from the game The Longing, is hiding behind Cookie Clicker, a game that the devs of The Longing were inspired by. The Longing is an unusual mix of a point-and-click adventure and an idle game. The player controls a Shade, who is told to keep watch of a sleeping King for 400 days until he awakens. The catch: these 400 days start to count down in real-time.", "links": {"website": ["http://www.399d-23h-59m-59s.com/"], "subreddit": ["TheLonging"]}, "path": {"91-166, T:0-1": [[1561, 179], [1558, 183], [1558, 191], [1561, 191], [1563, 193], [1567, 193], [1567, 186], [1568, 185], [1568, 179]]}, "center": {"91-166, T:0-1": [1563, 184]}},
@@ -265,7 +265,7 @@
{"id": "000376", "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\nThis art was added along the way while maintaining the larger Derpy Hooves art.", "links": {"website": ["https://mlp.fandom.com/wiki/Fluttershy"], "subreddit": ["mylittlepony", "MLP_Pixel"], "discord": ["manechat"]}, "path": {"53-57": [[668, 207], [666, 209], [666, 211], [661, 211], [658, 214], [658, 219], [669, 219], [672, 217], [675, 212], [675, 210], [672, 207]], "111, 135-165, T:0-1": [[1986, 357], [1983, 360], [1983, 362], [1984, 363], [1984, 364], [1986, 366], [1986, 367], [1987, 368], [1988, 368], [1989, 369], [1999, 369], [1999, 363], [1997, 361], [1994, 361], [1994, 363], [1992, 363], [1992, 357]]}, "center": {"53-57": [670, 211], "111, 135-165, T:0-1": [1988, 361]}},
{"id": "000377", "name": "Bow", "description": "Bow is a character from the YouTube show Inanimate Insanity. She is pictured holding up the Earth drawn by r/BuildTheEarth.", "links": {"website": ["https://inanimateinsanity.fandom.com/wiki/Bow", "https://www.inanimateinsanity.com/"], "subreddit": ["inanimateinsanity"]}, "path": {"12-166, T:0-1": [[59, 631], [59, 643], [77, 643], [77, 631]]}, "center": {"12-166, T:0-1": [68, 637]}},
{"id": "000378", "name": "Touhou 6: Embodiment of Scarlet Devil", "description": "The icon of Touhou 6: Embodiment of Scarlet Devil, depicting the character Kirisame Marisa. It was originally allocated a spot near the beginning of the start button beside the League of Legends logo, but the area was invaded by the League of Legends community, and after much fighting the Touhou r/place Discord made the decision to place it here.", "links": {"website": ["https://en.wikipedia.org/wiki/Embodiment_of_Scarlet_Devil"], "subreddit": ["touhou", "placestart"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1109, 1973], [1109, 1997], [1135, 1996], [1135, 1973]]}, "center": {"109-166, T:0-1": [1122, 1985]}},
-{"id": "000381", "name": "Starscape", "description": "A small artwork relating to the Roblox game Starscape.", "links": {"website": ["https://www.roblox.com/games/679715583/Starscape-Beta"], "subreddit": ["starscaperoblox"]}, "path": {"56-166, T:0-1": [[1693, 832], [1632, 833], [1631, 842], [1693, 842]]}, "center": {"56-166, T:0-1": [1663, 837]}},
+{"id": "000381", "name": "Starscape", "description": "Starscape is a game on the game platform Roblox.", "links": {"website": ["https://www.roblox.com/games/679715583/Starscape-Beta"], "subreddit": ["StarscapeRoblox"]}, "path": {"151-166, T:0-1": [[1632, 832], [1632, 842], [1692, 842], [1692, 832]]}, "center": {"151-166, T:0-1": [1662, 837]}},
{"id": "000383", "name": "r/unixporn", "description": "r/unixporn is a subreddit focused on customization of Unix-based (*NIX) operating systems like Linux and macOS. Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make \"ricers\" (desktop customizers) happy. Maybe a server running on an Amiga computer, or a ThinkPad laptop signed by C++ creator Bjarne Stroustrup? Show the world how sexy your computer can be!", "links": {"website": ["https://unixporn.github.io/"], "subreddit": ["unixporn"]}, "path": {"114-144": [[9, 756], [9, 765], [20, 765], [20, 756]], "145-164, T:0-1": [[0, 756], [0, 765], [11, 765], [12, 766], [17, 766], [20, 763], [20, 758], [17, 755], [13, 755], [12, 756]]}, "center": {"114-144": [15, 761], "145-164, T:0-1": [14, 761]}},
{"id": "000398", "name": "Flag of Costa Rica", "description": "Costa Rica is a small country in Central America known for its peaceful environment, biodiversity, and beautiful landscapes. The pictures in the banner feature a white-tailed fawn (a national symbol), the 1968 Arenal volcano eruption, a red-eyed tree frog, Lizano sauce, \"Pura Vida\" (popular greeting and slogan), a keel-billed toucan, a sloth, a hummingbird, and the national flower (Guaria Morada or country purple girl). The hearts were made to show Spanish YouTuber Ticos's support, with seven drawn to represent Costa Rica's seven provinces.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"117-143": [[1246, 426], [1596, 427], [1596, 421], [1621, 421], [1621, 446], [1246, 446]], "79-96": [[1239, 427], [1481, 427], [1481, 416], [1495, 416], [1495, 427], [1597, 427], [1597, 446], [1239, 446]], "57-78": [[1403, 427], [1621, 427], [1621, 446], [1403, 446]], "109-116": [[1246, 426], [1416, 426], [1416, 414], [1424, 414], [1427, 418], [1427, 426], [1621, 427], [1621, 446], [1246, 446]], "144-166, 97-108, T:0-1": [[1246, 426], [1621, 427], [1621, 446], [1246, 446]]}, "center": {"117-143": [1609, 434], "79-96": [1488, 435], "57-78": [1512, 437], "109-116": [1422, 435], "144-166, 97-108, T:0-1": [1465, 436]}},
{"id": "000399", "name": "Tumindig", "description": "Tumindig is a drawing of a fist raised upwards, and is a Filipino symbol of standing up against tyranny especially when the threat of dictatorship looms near the country. The original Tumindig artwork was created in 2021 by Filipino satirist and cartoonist Kevin Eric Raymundo, a.k.a. Tarantadong Kalbo. Raymundo created the artwork out of frustration at the government response to the COVID-19 pandemic. The word \"tumindig\" means \"standing up\", \"raise your voice\", or \"arise\" in the Filipino language.\n\nTumindig is also the mascot of r/Philippines, who placed this art. Rather than Tumindig's regular white color scheme, this artwork features Tumindig in the colors of the flag of the Philippines. Tumindig is wearing a salakót, a traditional Filipino hat. The pink background represents Leni Robredo, a presidential candidate for the Philippines in the election cycle that was ongoing during r/place 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Tumindig"], "subreddit": ["Philippines"]}, "path": {"60-86": [[1333, 599], [1333, 671], [1347, 671], [1347, 644], [1373, 644], [1373, 599]], "158-166, 87-145, T:0-1": [[1374, 599], [1333, 599], [1333, 648], [1374, 648]]}, "center": {"60-86": [1353, 619], "158-166, 87-145, T:0-1": [1354, 624]}},
@@ -283,7 +283,7 @@
{"id": "000257", "name": "Saudi Arabia", "description": "The Saudi flag drawn by the r/SaudiArabia Discord displaying the traditional palm trees and swords, a mabkhara, a dallah, and a peepo wearing a thobe.", "links": {"subreddit": ["SaudiArabia"]}, "path": {"109-166, T:0-1": [[1645, 1044], [1645, 1074], [1591, 1074], [1591, 1044]]}, "center": {"109-166, T:0-1": [1618, 1059]}},
{"id": "000260", "name": "Amaterasu", "description": "Amaterasu is the lupine protagonist of the video game Ōkami (2006).\n\nThis placement was organized mainly by the Ōkami speedrunning community, and contributed to by all loving fans.", "links": {"website": ["https://okami.speedruns.wiki/Main_Page", "https://en.wikipedia.org/wiki/%C5%8Ckami"], "subreddit": ["Okami"]}, "path": {"29-45": [[886, 212], [886, 228], [905, 228], [905, 212]], "25-28": [[874, 206], [874, 213], [877, 220], [881, 223], [883, 223], [888, 220], [888, 215], [884, 212], [879, 212], [879, 205]], "74-166, T:0-1": [[996, 389], [991, 394], [991, 399], [993, 401], [993, 404], [996, 404], [996, 406], [1000, 406], [1000, 407], [1003, 407], [1010, 398], [1010, 390], [1007, 390], [1007, 389]]}, "center": {"29-45": [896, 220], "25-28": [882, 217], "74-166, T:0-1": [1000, 397]}},
{"id": "000275", "name": "Flag of Denmark", "description": "Denmark is a country in Northern Europe. Its flag is known as the Dannebrog.\n\nThis Danish flag contains a Lego brick and the famous Lego astronaut, since Lego is a Danish company. A swan, the national bird of Denmark, is also on the flag. The three shadowy figures are Egon Olsen, Benny Frandsen and Kjeld Jensen. They make up the group called \"Olsen-banden\", a series of Danish crime comedies.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["Denmark"]}, "path": {"83-118": [[536, 285], [536, 343], [689, 343], [689, 320], [638, 320], [638, 285]], "1-79": [[542, 285], [542, 342], [689, 342], [689, 320], [638, 320], [638, 285]], "T:0-1": [[555, 285], [536, 285], [536, 343], [689, 343], [689, 320], [638, 320], [638, 285]], "130-166": [[536, 285], [536, 343], [689, 343], [689, 320], [638, 320], [638, 294], [658, 294], [658, 285]]}, "center": {"83-118": [565, 314], "1-79": [571, 314], "T:0-1": [565, 314], "130-166": [565, 314]}},
-{"id": "000281", "name": "Cosmere R.A.F.O.", "description": "The Cosmere is the greater universe in which The Stormlight Archive - and many of Brandon Sanderson's other adult fiction books - take place. RAFO is a term Brandon Sanderson uses at signings as a non-answer for prying fans. It means 'Read and Find Out.' When Brandon uses this, it is neutral, and neither means one is right or one is wrong. Many things are RAFO'd because they would spoil future books.", "links": {"subreddit": ["Cosmere"]}, "path": {"1-165, T:0-1": [[861, 924], [901, 924], [901, 974], [861, 974]]}, "center": {"1-165, T:0-1": [881, 949]}},
+{"id": "000281", "name": "Cosmere R.A.F.O.", "description": "The Cosmere is the greater universe in which The Stormlight Archive - and many of Brandon Sanderson's other adult fiction books - take place. RAFO is a term Brandon Sanderson uses at signings as a non-answer for prying fans. It means 'Read and Find Out.' When Brandon uses this, it is neutral, and neither means one is right or one is wrong. Many things are RAFO'd because they would spoil future books.", "links": {"subreddit": ["placeCosmere", "Cosmere"]}, "path": {"1-165, T:0-1": [[861, 924], [901, 924], [901, 974], [861, 974]]}, "center": {"1-165, T:0-1": [881, 949]}},
{"id": "000284", "name": "Gir from Invader Zim", "description": "Gir from the show 'Invader Zim'", "links": {"subreddit": ["invaderzim"]}, "path": {"109-166, T:0-1": [[1332, 1344], [1331, 1344], [1347, 1317], [1332, 1317], [1332, 1344], [1347, 1344], [1348, 1318], [1347, 1318], [1348, 1318], [1347, 1318], [1348, 1318], [1347, 1318], [1348, 1317], [1348, 1318], [1349, 1318], [1347, 1317], [1331, 1344]]}, "center": {"109-166, T:0-1": [1340, 1330]}},
{"id": "000287", "name": "Arctic Monkeys", "description": "Arctic Monkeys are a British rock band. This space contains six studio albums: Tranquility Base Hotel & Casino; Suck It And See; Humbug; Whatever People Say I Am, That's What I'm Not; Favourite Worst Nightmare; and AM. The art also contains a solo extended play (EP) by the band's lead singer Alex Turner: Submarine. There are also references to the Monkeys' fandom favorite meme: \"bric[c]\" and a song of theirs called 505 from Favourite Worst Nightmare.", "links": {"website": ["http://arcticmonkeys.com/", "https://en.wikipedia.org/wiki/Arctic_Monkeys"], "subreddit": ["arcticmonkeys"]}, "path": {"122-134": [[1315, 344], [1315, 382], [1330, 382], [1330, 368], [1345, 368], [1345, 382], [1360, 382], [1360, 367], [1357, 367], [1357, 344], [1341, 344], [1341, 360], [1357, 360], [1357, 367], [1345, 367], [1345, 368], [1329, 368], [1329, 344]], "90-121": [[1315, 344], [1315, 369], [1314, 369], [1314, 382], [1330, 382], [1330, 344], [1341, 344], [1341, 360], [1357, 360], [1357, 344]], "135-166, T:0-1": [[1315, 344], [1315, 382], [1361, 382], [1361, 344]]}, "center": {"122-134": [1349, 352], "90-121": [1322, 373], "135-166, T:0-1": [1338, 363]}},
{"id": "000298", "name": "Futurama", "description": "The Futurama section, created by r/futurama users (with help from several allied communities). It depicts many characters from the show, as well as their spaceship The Planet Express Ship, seen flying against a starry background. Underneath that is the subreddit's handle. Allied communities featured in this space include:\n\nr/IASIP - The main cast of 'It's Always Sunny in Philadelphia' can be seen in the taskbar section.\nHolly HQ - the 'H' trans flag behind the spaceship.\nr/byzantium - The Byzantium flag to the right.\nr/panama - The Panamanian flag was flying from the ship's turret for much of r/place.\nMushrooms - placed by a lone redditor in memoriam of a loved one.\nPurple Dragon - Another small community sharing space with r/futurama.\nr/kiminonawa - Towards the very end of r/place, a mini version of the Comet Tiamat from the anime film 'Your Name' was also added to the canvas above the Planet Express.", "links": {"subreddit": ["futurama", "IASIP", "Panama", "kiminonawa", "byzantium", "placestart"]}, "path": {"109-166, T:0-1": [[1201, 1954], [1299, 1954], [1300, 1970], [1286, 1972], [1288, 2000], [1219, 1999], [1219, 1971], [1201, 1971]]}, "center": {"109-166, T:0-1": [1252, 1975]}},
@@ -342,15 +342,15 @@
{"id": "twp5vg", "name": "Das Sandmännchen", "description": "Das Sandmännchen (\"The Little Sandman\") is a German children's bedtime television programme using stop-motion animation. It was originally produced during the era of divided Germany by West German radio station Sender Freies Berlin (SFB) from 1959 to 1989, with a similar program titled Unser Sandmännchen (\"Our Little Sandman\") aired by East German radio station Deutscher Fernsehfunk (DFF). Since German reunification, the series has been broadcast on behalf of German public broadcaster ARD by Rundfunk Berlin-Brandenburg (RBB), Mitteldeutscher Rundfunk (MDR), and KiKa. Watching this program has been a bedtime ritual for small children in many households.", "links": {"website": ["https://en.wikipedia.org/wiki/Sandm%C3%A4nnchen", "https://de.wikipedia.org/wiki/Sandm%C3%A4nnchen"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"58-166, T:0-1": [[490, 829], [479, 836], [472, 844], [471, 846], [471, 849], [473, 852], [477, 853], [480, 856], [477, 859], [476, 861], [476, 862], [480, 866], [495, 866], [497, 863], [502, 861], [504, 857], [506, 857], [508, 854], [508, 853], [506, 850], [503, 850], [503, 846], [499, 839], [495, 835], [493, 835], [491, 833], [491, 832], [493, 830], [492, 829]]}, "center": {"58-166, T:0-1": [489, 847]}},
{"id": "twp5i8", "name": "Springbok", "description": "The national animal of South Africa, seen here perched on the head of Nelson Mandela. Once extremely common, its population has been reduced by hunting and poaching.", "links": {"website": ["https://en.wikipedia.org/wiki/Springbok"], "subreddit": ["SouthAfrica"]}, "path": {"1-165, T:0-1": [[737, 1007], [736, 1006], [736, 1005], [735, 1003], [734, 1003], [734, 1001], [731, 1001], [730, 1000], [729, 999], [728, 998], [729, 997], [731, 997], [733, 998], [734, 1000], [735, 998], [734, 997], [734, 996], [733, 995], [731, 995], [730, 994], [729, 994], [729, 993], [730, 992], [731, 992], [732, 991], [731, 990], [730, 989], [729, 988], [729, 987], [728, 986], [728, 985], [729, 984], [730, 983], [731, 983], [732, 983], [731, 985], [731, 984], [731, 985], [731, 986], [732, 986], [733, 987], [734, 987], [735, 988], [735, 989], [736, 989], [737, 989], [738, 988], [738, 987], [737, 987], [737, 985], [736, 985], [736, 984], [736, 983], [735, 983], [738, 983], [739, 984], [738, 984], [740, 985], [739, 985], [740, 986], [741, 987], [742, 988], [744, 988], [745, 988], [745, 989], [747, 989], [748, 989], [747, 990], [749, 990], [750, 991], [750, 994], [749, 994], [749, 995], [748, 995], [747, 995], [747, 996], [746, 996], [746, 997], [747, 999], [747, 1000], [747, 1001], [748, 1001], [748, 1002], [747, 1002], [746, 1001], [746, 1000], [745, 1001], [745, 1002], [744, 1001], [743, 1002], [742, 1002], [743, 1003], [744, 1003], [741, 1003], [740, 1003], [740, 1004], [738, 1004], [738, 1005], [738, 1006], [737, 1006], [737, 1004]]}, "center": {"1-165, T:0-1": [739, 994]}},
{"id": "twp5ad", "name": "Billy", "description": "Billy is a robot character from the game KARLSON.\n\nOH YOU DON'T KNOW WHAT KARLSON IS? KARLSON IS JUST A LITTLE GAME I'M WORKING ON AND ITS CURRENTLY THE NUMBER 12TH MOST WISHLISTED GAME ON STEAM. SMASH WISHLIST NOW GAMERS SO WE CAN GET THE NUMBER ONE SPOT BABY!!!!!", "links": {"website": ["https://dani-youtube.fandom.com/wiki/Billy", "https://store.steampowered.com/app/1228610/KARLSON/"], "subreddit": ["DaniDev"]}, "path": {"56-78": [[1556, 572], [1556, 593], [1572, 593], [1572, 572]], "151-166, T:0-1": [[831, 1748], [831, 1754], [829, 1756], [829, 1759], [831, 1761], [832, 1761], [832, 1758], [836, 1758], [836, 1760], [838, 1762], [839, 1762], [839, 1758], [842, 1755], [842, 1750], [840, 1748]]}, "center": {"56-78": [1564, 583], "151-166, T:0-1": [836, 1753]}},
-{"id": "twp52y", "name": "Worth the Candle", "description": "Worth the Candle is a serial web novel by Alexander Wales. Its protagonist is a teenager struggling with the death of his best friend, who finds himself trapped in another world - one which seems to be an amalgamation of every Dungeons and Dragons campaign they ever played together.", "links": {"website": ["https://royalroad.com/fiction/25137/worth-the-candle"], "subreddit": ["alexanderwales"]}, "path": {"11-49, 62-91": [[231, 101], [231, 125], [242, 125], [242, 101]], "100-165, T:0-1": [[223, 101], [235, 101], [235, 124], [223, 124]]}, "center": {"11-49, 62-91": [237, 113], "100-165, T:0-1": [229, 113]}},
-{"id": "twp4zs", "name": "Snaa", "description": "A derpy-looking plush of Sana Futaba from Magia Record, That has become popular in the community, getting fanart and being a common reaction image.", "links": {"subreddit": ["magiarecord"]}, "path": {"56-166, T:0-1": [[1266, 869], [1266, 878], [1275, 878], [1275, 870]]}, "center": {"56-166, T:0-1": [1270, 874]}},
+{"id": "twp52y", "name": "Worth the Candle", "description": "Worth the Candle is a serial web novel by Alexander Wales. Its protagonist is a teenager struggling with the death of his best friend, who finds himself trapped in another world - one which seems to be an amalgamation of every Dungeons and Dragons campaign they ever played together.", "links": {"website": ["https://royalroad.com/fiction/25137/worth-the-candle"], "subreddit": ["alexanderwales"]}, "path": {"58-59": [[1269, 806], [1269, 827], [1281, 827], [1281, 806]], "11-49, 62-91": [[231, 101], [231, 125], [242, 125], [242, 101]], "100-165, T:0-1": [[223, 101], [235, 101], [235, 124], [223, 124]]}, "center": {"58-59": [1275, 817], "11-49, 62-91": [237, 113], "100-165, T:0-1": [229, 113]}},
+{"id": "twp4zs", "name": "Snaa", "description": "Snaa is a derpy-looking plush of the character Sana Futaba from Puella Magi Madoka Magica Side Story: Magia Record, a spin-off game and anime from the main Puella Magi Madoka Magica anime. Snaa has become popular in the community, getting fanart and being a common reaction image.", "links": {"website": ["https://wiki.puella-magi.net/Sana_Futaba"], "subreddit": ["magiarecord", "MadokaMagica"], "discord": ["madoka"]}, "path": {"67-86, 91-92": [[1260, 871], [1260, 874], [1259, 875], [1259, 876], [1260, 877], [1260, 879], [1271, 879], [1271, 878], [1269, 875], [1269, 873], [1270, 872], [1269, 871], [1266, 871], [1265, 870], [1264, 871]], "107-166, T:0-1": [[1265, 870], [1265, 878], [1273, 878], [1274, 879], [1276, 877], [1274, 874], [1274, 872], [1275, 871], [1274, 870], [1271, 870], [1270, 869], [1269, 870]]}, "center": {"67-86, 91-92": [1264, 875], "107-166, T:0-1": [1270, 874]}},
{"id": "twp4fs", "name": "Eintracht Spandau", "description": "Fan art of German esports team 'Eintracht Spandau's crest", "links": {"subreddit": ["EintrachtSpandau", "placestart"]}, "path": {"109-166, T:0-1": [[513, 1973], [513, 1996], [539, 1996], [539, 1973]]}, "center": {"109-166, T:0-1": [526, 1985]}},
{"id": "twp47n", "name": "Astroneer", "description": "Astroneer is a space exploration & base/factory-building game developed by System Era Softworks.", "links": {"website": ["https://en.wikipedia.org/wiki/Astroneer"], "subreddit": ["Astroneer"]}, "path": {"129-135": [[1116, 478], [1113, 481], [1110, 489], [1110, 492], [1112, 494], [1122, 494], [1124, 492], [1124, 489], [1120, 480], [1118, 478]], "61-66": [[1123, 494], [1120, 497], [1117, 505], [1117, 510], [1130, 510], [1130, 503], [1127, 496], [1125, 494]], "58-60": [[1123, 500], [1123, 510], [1132, 510], [1132, 500]], "136-164, 67-127, T:0-1": [[1122, 486], [1117, 497], [1117, 500], [1119, 502], [1129, 502], [1131, 500], [1131, 497], [1127, 488], [1125, 486]]}, "center": {"129-135": [1117, 488], "61-66": [1124, 504], "58-60": [1128, 505], "136-164, 67-127, T:0-1": [1124, 496]}},
{"id": "twp3sj", "name": "Index", "description": "The mascot of the manga reading website Mangadex", "links": {"website": ["https://mangadex.org"], "subreddit": ["mangadex"]}, "path": {"109-166, T:0-1": [[716, 1924], [747, 1924], [747, 1948], [715, 1948], [715, 1924]]}, "center": {"109-166, T:0-1": [731, 1936]}},
-{"id": "twp3pf", "name": "Tokino Sora", "description": "Tokino Sora is a member of Hololive's 0th Generation of Japanese VTubers, and was the first VTuber to debut within the company.", "links": {"website": ["https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg"], "subreddit": ["Hololive"]}, "path": {"109-166, T:0-1": [[1342, 1125], [1342, 1121], [1345, 1116], [1350, 1116], [1352, 1120], [1352, 1125]]}, "center": {"109-166, T:0-1": [1347, 1121]}},
+{"id": "twp3pf", "name": "Tokino Sora", "description": "Tokino Sora is a member of Hololive's 0th Generation of Japanese VTubers, and was the first VTuber to debut within the company.", "links": {"website": ["https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1342, 1125], [1342, 1121], [1345, 1116], [1350, 1116], [1352, 1120], [1352, 1125]]}, "center": {"109-166, T:0-1": [1347, 1121]}},
{"id": "twp3jj", "name": "Rat King", "description": "The Rat King NPC from the game Pixel Dungeon.", "links": {"website": ["https://pixeldungeon.fandom.com/wiki/Rat_king"], "subreddit": ["PixelDungeon"]}, "path": {"102-148, 59-98": [[1731, 228], [1731, 248], [1747, 248], [1747, 228]], "149-167, T:0-1": [[1731, 228], [1731, 231], [1733, 231], [1737, 236], [1735, 239], [1731, 241], [1731, 248], [1747, 248], [1747, 228]]}, "center": {"102-148, 59-98": [1739, 238], "149-167, T:0-1": [1741, 242]}},
{"id": "twp3at", "name": "Human United", "description": "Human United is a gaming community.", "links": {}, "path": {"152-164": [[1743, 384], [1743, 387], [1750, 387], [1750, 383], [1743, 383]], "136-145": [[1750, 383], [1750, 387], [1757, 387], [1757, 383]]}, "center": {"152-164": [1747, 385], "136-145": [1754, 385]}},
-{"id": "twp374", "name": "Flag of Greendale", "description": "Greendale Community College's flag from the TV show Community. Has a pink circle with black arrows and reads \"E Pluribus Anus\". It represents the crossroads of ideas and resembles a butt. #SixSeasonsAndAMovie", "links": {"website": ["https://en.wikipedia.org/wiki/Community_(TV_series)"], "subreddit": ["community"]}, "path": {"109-166, T:0-1": [[1856, 1485], [1875, 1485], [1875, 1499], [1856, 1499]]}, "center": {"109-166, T:0-1": [1866, 1492]}},
+{"id": "twp374", "name": "Greendale Community College", "description": "Greendale Community College is the main setting of the TV show Community. The college's flag has a pink circle with black arrows and reads \"E Pluribus Anus\". It represents the crossroads of ideas and resembles a butt. #SixSeasonsAndAMovie", "links": {"website": ["https://en.wikipedia.org/wiki/Community_(TV_series)"], "subreddit": ["community"]}, "path": {"56-116": [[1640, 807], [1640, 831], [1681, 831], [1681, 807]], "145-166, T:0-1": [[1856, 1485], [1875, 1485], [1875, 1499], [1856, 1499]]}, "center": {"56-116": [1661, 819], "145-166, T:0-1": [1866, 1492]}},
{"id": "twp354", "name": "Northernlion", "description": "Northernlion is a Canadian Twitch streamer, YouTuber, and indie game enthusiast. He is known for his Binding of Isaac playthroughs and hosts the venerable Northernlion Live Super Show.", "links": {"website": ["https://www.twitch.tv/northernlion"], "subreddit": ["northernlion"]}, "path": {"132-141": [[61, 312], [61, 352], [51, 352], [51, 368], [71, 368], [71, 312]], "88-129": [[57, 312], [57, 347], [69, 347], [69, 337], [57, 337], [57, 320], [67, 320], [67, 312]], "25-86": [[50, 307], [50, 315], [60, 315], [60, 307]], "147-165, T:0-1": [[61, 336], [61, 360], [60, 360], [59, 361], [51, 361], [51, 368], [71, 368], [71, 338], [69, 336]]}, "center": {"132-141": [63, 360], "88-129": [63, 342], "25-86": [55, 311], "147-165, T:0-1": [66, 363]}},
{"id": "twp337", "name": "Sonichu", "description": "Sonichu is the protagonist of Christine Weston Chandler's comic series of the same name. It is a fusion of the characters Sonic the Hedgehog and Pikachu.", "links": {"website": ["https://knowyourmeme.com/memes/subcultures/sonichu"], "subreddit": ["ChrisChanSonichu"]}, "path": {"129-167, 59-126, T:0-1": [[1912, 538], [1925, 538], [1924, 538], [1924, 536], [1922, 535], [1921, 534], [1919, 534], [1922, 532], [1922, 528], [1921, 527], [1922, 526], [1922, 524], [1923, 524], [1923, 523], [1922, 511], [1920, 512], [1920, 513], [1918, 514], [1918, 513], [1908, 513], [1907, 515], [1907, 516], [1908, 517], [1909, 517], [1908, 518], [1907, 519], [1907, 522], [1905, 523], [1903, 523], [1903, 531], [1905, 531], [1905, 530], [1906, 529], [1907, 528], [1907, 530], [1908, 531], [1908, 533], [1909, 534], [1912, 534]]}, "center": {"129-167, 59-126, T:0-1": [1914, 523]}},
{"id": "twp2zn", "name": "Coat of arms of Germany", "description": "The national coat of arms of Germany features a black eagle known as the Bundesadler (\"Federal Eagle\").\n\nIn this art, the eagle is depicted drinking Duvel beer from the Belgian flag, a collaborative artwork between Belgium and Germany representing the beer culture in both countries.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"4-29": [[254, 830], [254, 876], [258, 881], [266, 885], [273, 887], [275, 889], [279, 886], [285, 884], [288, 883], [294, 879], [296, 875], [296, 830]], "30-166, T:0-1": [[296, 830], [254, 830], [254, 874], [258, 878], [264, 881], [268, 881], [275, 885], [282, 881], [286, 881], [292, 878], [296, 873]]}, "center": {"4-29": [275, 860], "30-166, T:0-1": [275, 858]}},
@@ -362,7 +362,7 @@
{"id": "twp1z8", "name": "Intercity Materieel", "description": "The ICM (Intercity Materieel) is a standard electric multiple unit (EMU) train type operated by the Nederlandse Spoorwegen in the Netherlands. In English, The name translates to \"Intercity Material\" or \"Intercity Rolling Stock\". The train received the nickname \"Koploper\", because it had a so-called \"walk-through head\". After these trains were modernized, The \"walk-through heads\" were removed. The modernized train sets are referred to as Intercity Materieel Modern (ICMm).", "links": {"website": ["https://en.wikipedia.org/wiki/NS_Intercity_Materieel"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"43-166, T:0-1": [[442, 0], [438, 3], [438, 11], [439, 12], [442, 13], [593, 13], [593, 0]]}, "center": {"43-166, T:0-1": [473, 7]}},
{"id": "twp1qc", "name": "Terrene Protectorate", "description": "The Terrene Protectorate is a multi-species coalition from the indie game Starbound to train graduates to protect and lend aid across the known universe. It is destroyed during the events of the game.\n\nr/starbound allied with r/ena leading to the creation of the ENA Alliance, later joining efforts with the Green Lattice and the United Factions of r/place.", "links": {"website": ["https://starbounder.org/Terrene_Protectorate", "https://playstarbound.com/"], "subreddit": ["starbound"]}, "path": {"56-92": [[1987, 753], [1984, 756], [1984, 763], [2000, 763], [2000, 756], [1997, 753]], "100-165, T:0-1": [[1116, 392], [1116, 389], [1119, 389], [1119, 387], [1121, 385], [1125, 385], [1127, 387], [1127, 389], [1130, 389], [1130, 391], [1128, 393]]}, "center": {"56-92": [1992, 758], "100-165, T:0-1": [1123, 389]}},
{"id": "twp1n7", "name": "BTS", "description": "Bangtan Sonyeondan (BTS) is Korea's hottest boy band. The group's official lightstick, the Army Bomb, is drawn below the group's logo.", "links": {"website": ["https://www.youtube.com/watch?v=7m-4u4GONsA", "https://en.wikipedia.org/wiki/BTS"], "subreddit": ["bangtan"]}, "path": {"8-165, T:0-1": [[241, 698], [259, 698], [259, 672], [250, 676], [241, 672]]}, "center": {"8-165, T:0-1": [250, 686]}},
-{"id": "twp17x", "name": "Sneed's Feed and Seed (Formerly Chuck's)", "description": "This piece represents a joke and popular meme from Season 11 episode 5 of The Simpsons. Mostly organized by the /b/ board on 4chan.", "links": {"website": ["https://4chan.org/b/"], "subreddit": ["sneedposting"]}, "path": {"56-166, T:0-1": [[1717, 870], [1719, 902], [1748, 902], [1749, 901], [1771, 900], [1772, 899], [1772, 894], [1772, 892], [1772, 891], [1773, 890], [1775, 889], [1778, 889], [1779, 890], [1780, 891], [1781, 890], [1782, 889], [1783, 888], [1784, 888], [1784, 885], [1784, 873], [1784, 869], [1718, 870]]}, "center": {"56-166, T:0-1": [1749, 885]}},
+{"id": "twp17x", "name": "Sneed's Feed and Seed (Formerly Chuck's)", "description": "Sneed's Feed and Seed (Formerly Chuck's) is a joke and popular meme from season 11, episode 5 of the TV show The Simpsons. It is a convenience store owned by Al Sneed, formerly owned by Chuck.\n\nThis art was mostly organized by the /b/ board on 4chan.", "links": {"website": ["https://knowyourmeme.com/memes/sneeds-feed-and-seed", "https://simpsonswiki.com/wiki/Sneed%27s_Feed_%26_Seed", "https://4chan.org/b/"], "subreddit": ["sneedposting"]}, "path": {"125-166, T:0-1": [[1717, 869], [1717, 896], [1718, 897], [1718, 903], [1749, 903], [1749, 901], [1773, 901], [1773, 899], [1772, 898], [1772, 894], [1775, 890], [1777, 890], [1780, 892], [1784, 888], [1784, 885], [1783, 884], [1783, 873], [1780, 869]]}, "center": {"125-166, T:0-1": [1734, 886]}},
{"id": "twp0k2", "name": "Octavarium", "description": "Album art from the progressive metal band Dream Theater's 2005 album, Octavarium, depicting a newton's cradle. This art was unfinished before it was consumed by bratishkinoff's My Little Pony artwork raid.", "links": {"website": ["https://en.wikipedia.org/wiki/Octavarium"], "subreddit": ["dreamtheater"]}, "path": {"109-166, T:0-1": [[890, 1662], [902, 1662], [902, 1675], [890, 1675]]}, "center": {"109-166, T:0-1": [896, 1669]}},
{"id": "twozx7", "name": "Flairwars Logo", "description": "Flairwars is an online reddit-based game where users are split into 6 teams, and then compete by raiding and defending one another.", "links": {"website": ["https://www.flairwars.com/"], "subreddit": ["flairwars"]}, "path": {"109-166, T:0-1": [[492, 1814], [509, 1814], [509, 1817], [511, 1817], [511, 1815], [512, 1815], [512, 1814], [515, 1814], [515, 1816], [514, 1816], [514, 1818], [513, 1818], [513, 1820], [512, 1820], [512, 1822], [511, 1822], [511, 1823], [510, 1823], [510, 1825], [509, 1825], [509, 1826], [506, 1826], [506, 1823], [504, 1823], [504, 1825], [503, 1825], [503, 1826], [500, 1826], [500, 1821], [494, 1821], [494, 1823], [493, 1823], [493, 1826], [490, 1826], [490, 1822], [491, 1822], [491, 1817], [492, 1817]]}, "center": {"109-166, T:0-1": [502, 1819]}},
{"id": "twoztm", "name": "Leaves From The Vine", "description": "YouTube streamer Ludwig opened dialog with the French streamers in an attempt to acquire some real estate. The French agreed to let him have the spot they were trying to take from the Spanish and helped him black it out.nLudwig then used his chat to build a very nice art of One Piece's Nami in a Bikini, but the people quickly decided to remove the bikini and make her lactate. After a penis was drawn in between her boobs Ludwig decided to again black out the square and rebuild this scene from Tales Of Ba Sing Se episode of Avatar: The Last Airbender. The art continued to evolve after Ludwig moved on with support from the r/ATLA community and saw minimal sabotage throughout the remaining time.", "links": {"website": ["https://www.youtube.com/c/Ludwigahgren"], "subreddit": ["ATLA"]}, "path": {"109-166, T:0-1": [[1332, 1498], [1498, 1498], [1498, 1611], [1332, 1611]]}, "center": {"109-166, T:0-1": [1415, 1555]}},
@@ -413,18 +413,18 @@
{"id": "two8xr", "name": "Suncracker0", "description": "the simplified logo of a small twitch streamer named Suncracker0", "links": {"website": ["https://www.twitch.tv/suncracker0"], "subreddit": ["Suncracker"]}, "path": {"1-165, T:0-1": [[734, 946], [734, 954], [738, 954], [738, 946]]}, "center": {"1-165, T:0-1": [736, 950]}},
{"id": "two8s7", "name": "Kurzgesagt", "description": "Kurzgesagt (English: In a Nutshell) is a German YouTuber who creates educational science videos with the help of animations. These videos often focus on space and frequently feature cartoon birds.\n\nThe r/kurzgesagt community made this picture.", "links": {"website": ["https://kurzgesagt.org/", "https://www.youtube.com/c/inanutshell", "https://en.wikipedia.org/wiki/Kurzgesagt"], "subreddit": ["Kurzgesagt_Place", "kurzgesagt"]}, "path": {"2-14": [[707, 35], [707, 70], [781, 70], [781, 35]], "15-165, T:0-1": [[708, 66], [708, 36], [790, 35], [790, 70], [708, 70], [708, 68]]}, "center": {"2-14": [744, 53], "15-165, T:0-1": [742, 47]}},
{"id": "two8df", "name": "r/Cubers", "description": "r/Cubers is a place for speedcubers, people who speed-solve different twisty-puzzles such as the Rubik's Cube. Topics include different cubes, solving styles, records, and more.", "links": {"subreddit": ["Cubers"]}, "path": {"94-127": [[1350, 485], [1364, 485], [1363, 486], [1364, 487], [1365, 487], [1365, 488], [1366, 488], [1366, 489], [1367, 490], [1368, 490], [1368, 491], [1425, 491], [1425, 503], [1433, 503], [1433, 509], [1417, 509], [1417, 503], [1356, 503], [1350, 497]], "128-148, 64-93": [[1350, 485], [1364, 485], [1363, 486], [1364, 487], [1365, 487], [1365, 488], [1366, 488], [1366, 489], [1367, 490], [1368, 490], [1368, 491], [1425, 491], [1425, 503], [1356, 503], [1350, 497]], "149-165, T:0-1": [[1350, 485], [1364, 485], [1363, 486], [1364, 487], [1365, 487], [1365, 488], [1366, 488], [1366, 489], [1367, 490], [1368, 490], [1368, 491], [1425, 491], [1425, 509], [1412, 509], [1412, 503], [1355, 503], [1355, 502], [1354, 502], [1354, 501], [1353, 501], [1353, 500], [1352, 500], [1352, 499], [1351, 499], [1351, 498], [1350, 498]]}, "center": {"94-127": [1359, 494], "128-148, 64-93": [1359, 494], "149-165, T:0-1": [1399, 494]}},
-{"id": "two7fm", "name": "Luna crown", "description": "Crown representing Himemori Luna, a VTuber from Hololive Japan 4th Generation.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/himemori-luna/"], "subreddit": ["Hololive"]}, "path": {"109-166, T:0-1": [[1357, 1110], [1357, 1115], [1355, 1115], [1352, 1118], [1352, 1120], [1353, 1121], [1353, 1123], [1355, 1125], [1365, 1125], [1366, 1124], [1366, 1123], [1367, 1122], [1367, 1121], [1368, 1120], [1368, 1118], [1360, 1110]]}, "center": {"109-166, T:0-1": [1360, 1119]}},
+{"id": "two7fm", "name": "Luna crown", "description": "Crown representing Himemori Luna, a VTuber from Hololive Japan 4th Generation.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/himemori-luna/"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1357, 1110], [1357, 1115], [1355, 1115], [1352, 1118], [1352, 1120], [1353, 1121], [1353, 1123], [1355, 1125], [1365, 1125], [1366, 1124], [1366, 1123], [1367, 1122], [1367, 1121], [1368, 1120], [1368, 1118], [1360, 1110]]}, "center": {"109-166, T:0-1": [1360, 1119]}},
{"id": "two6n0", "name": "Classic Guy", "description": "Classic Guy is the protagonist of the game Spelunky, and returns as the final unlockable character in the sequel Spelunky 2. Spelunky is a series of tough, 2D roguelike platformers.", "links": {"website": ["https://spelunky.fandom.com/wiki/Spelunky_Guy/Classic", "https://www.mossmouth.com/spelunky2/"], "subreddit": ["Spelunky"]}, "path": {"20-26": [[872, 489], [870, 491], [868, 494], [868, 496], [869, 496], [869, 502], [873, 506], [877, 506], [879, 504], [879, 503], [881, 501], [881, 500], [879, 498], [879, 495], [881, 495], [881, 492], [879, 492], [879, 491], [877, 489]], "27-165, T:0-1": [[869, 506], [867, 508], [866, 510], [866, 519], [878, 519], [878, 517], [876, 515], [876, 512], [878, 512], [878, 509], [876, 509], [876, 508], [874, 506]]}, "center": {"20-26": [874, 494], "27-165, T:0-1": [871, 513]}},
{"id": "two6gx", "name": "My Little Pony", "description": "A mural of the main characters from My Little Pony Generations 4 and 5 as well as the combined tripony (Unicorn, Pegasus, and Earth Pony) gems from the MLP Gen 5 movie \"A New Generation\" (2021). It was made with the help of the r/MyLittlePony subreddit and the Manechat Discord server.\n\nAfter their original location on r/place was taken over by Twitch streamer Asmongold to create the Guts portrait, the MLP fandom migrated westward and established this art in its stead. Over the course of the event, it became an important rallying point for the fandom in protecting themselves and their surrounding allies from numerous Twitch raids, ranging from xQc's purple void to Asmongold's seed and bird emote attacks.\n\nDuring the third day of r/place, xQc tried to attack the art by hitting it with a meteor. However, due to poor communication with his chat as well as the general absurdity of the idea itself, his viewers decided to transform the meteor into a ejaculating penis instead. This attack was so ridiculous in its nature that it became a meme on the r/place subreddit soon afterward, being dubbed \"The Meteor\" of r/place.\n\nDespite all this, the crystal structure would stay up until the end, signifying not only the passing of the torch between MLP generations, but the unity of the MLP fandom as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/My_Little_Pony"], "subreddit": ["mylittlepony"], "discord": ["manechat"]}, "path": {"106-164, 56-102, T:0-1": [[1649, 212], [1648, 213], [1635, 213], [1629, 218], [1629, 225], [1622, 225], [1622, 228], [1620, 228], [1615, 237], [1615, 254], [1620, 259], [1620, 265], [1619, 266], [1619, 276], [1621, 278], [1642, 280], [1650, 280], [1652, 277], [1655, 277], [1658, 280], [1666, 280], [1668, 278], [1668, 273], [1670, 273], [1673, 276], [1678, 276], [1680, 278], [1682, 278], [1683, 277], [1683, 269], [1684, 268], [1684, 261], [1688, 261], [1688, 245], [1689, 245], [1689, 240], [1688, 240], [1688, 230], [1686, 228], [1676, 227], [1676, 218], [1671, 213], [1656, 213], [1655, 212]]}, "center": {"106-164, 56-102, T:0-1": [1651, 246]}},
{"id": "two5oy", "name": "Overcast Community", "description": "Overcast Community (oc.tc), formerly Overcast Network, is a server for the game Minecraft. It focuses on large team-based minigames like Capture the Wool.", "links": {"website": ["https://oc.tc"]}, "path": {"11-46": [[5, 286], [1, 288], [0, 289], [0, 294], [2, 299], [5, 303], [9, 305], [13, 303], [17, 298], [18, 294], [18, 289], [17, 288], [13, 286]], "6-10": [[7, 275], [2, 278], [2, 283], [4, 288], [7, 292], [11, 294], [15, 292], [18, 289], [20, 283], [20, 278], [15, 275]], "110-166, T:0-1": [[1989, 1508], [1981, 1512], [1981, 1517], [1983, 1523], [1990, 1528], [1997, 1523], [1999, 1517], [1999, 1512], [1991, 1508]]}, "center": {"11-46": [9, 294], "6-10": [11, 283], "110-166, T:0-1": [1990, 1517]}},
-{"id": "two4yq", "name": "Uruha Rushia's butterfly", "description": "A short and sweet tribute to Uruha Rushia, a Hololive Japan 3rd Generation VTuber who was a part of Hololive until Feburary 24th, 2022. The butterfly was used to represent her, as she had a strong association with them.", "links": {"website": ["https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "https://virtualyoutuber.fandom.com/wiki/Uruha_Rushia"], "subreddit": ["Hololive"]}, "path": {"21-42": [[250, 785], [248, 787], [247, 790], [247, 792], [253, 796], [259, 790], [259, 788], [258, 788], [254, 791], [253, 791], [253, 788], [251, 785]], "43-165, T:0-1": [[250, 785], [259, 785], [259, 791], [256, 793], [255, 794], [254, 795], [253, 795], [253, 796], [252, 796], [251, 795], [250, 794], [249, 794], [248, 793], [247, 793], [247, 789], [248, 789], [248, 787], [249, 786]]}, "center": {"21-42": [250, 790], "43-165, T:0-1": [253, 789]}},
+{"id": "two4yq", "name": "Uruha Rushia's butterfly", "description": "A short and sweet tribute to Uruha Rushia, a Hololive Japan 3rd Generation VTuber who was a part of Hololive until Feburary 24th, 2022. The butterfly was used to represent her, as she had a strong association with them.", "links": {"website": ["https://en.hololive.tv/portfolio/items/uruha-rushia", "https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "https://virtualyoutuber.fandom.com/wiki/Uruha_Rushia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"21-42": [[250, 785], [248, 787], [247, 790], [247, 792], [253, 796], [259, 790], [259, 788], [258, 788], [254, 791], [253, 791], [253, 788], [251, 785]], "43-165, T:0-1": [[250, 785], [259, 785], [259, 791], [256, 793], [255, 794], [254, 795], [253, 795], [253, 796], [252, 796], [251, 795], [250, 794], [249, 794], [248, 793], [247, 793], [247, 789], [248, 789], [248, 787], [249, 786]]}, "center": {"21-42": [250, 790], "43-165, T:0-1": [253, 789]}},
{"id": "two4ji", "name": "Space Station 13", "description": "Space Station 13 is a 2003 online multiplayer role-playing game that uses the famously bad BYOND engine, with a stable playerbase of around 1000-3000 players. The game involves life on a space station trying to survive the chaos of space life. SS13 features many classes that have their own tasks and skills aboard the space station, with the clown playing the extremely important role of playing pranks on other members and making them slip on banana peels; yes, they usually die first. In addition to the clown, other elements from the game in this mural include Ian the corgi, a space-bee, a nuclear authentication disk, and an escape shuttle. This mural was drawn by r/SS13 with help from the r/unitystation and r/ss14 subreddits, which seek to recreate the game on a modern engine.", "links": {"website": ["https://spacestation13.com/"], "subreddit": ["SS13", "ss14", "unitystation"]}, "path": {"164": [[1678, 599], [1678, 618], [1706, 618], [1706, 610], [1710, 606], [1710, 604], [1708, 602], [1708, 598], [1704, 598], [1701, 595], [1695, 589], [1692, 589], [1691, 588], [1686, 588], [1686, 599]], "58-163, T:0-1": [[1678, 570], [1727, 569], [1726, 590], [1722, 596], [1715, 592], [1710, 593], [1707, 598], [1707, 600], [1710, 605], [1711, 606], [1705, 611], [1706, 618], [1678, 618]]}, "center": {"164": [1695, 607], "58-163, T:0-1": [1695, 586]}},
{"id": "two4an", "name": "Russian anti-war flag", "description": "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"]}, "path": {"78-130": [[694, 262], [694, 269], [731, 269], [731, 262]], "28-39": [[694, 262], [694, 269], [749, 269], [749, 262]], "16-27": [[665, 262], [665, 269], [738, 269], [738, 262]], "7-15": [[678, 262], [678, 269], [782, 269], [782, 262]], "131-166, 40-77, T:0-1": [[694, 262], [694, 269], [781, 269], [781, 262]]}, "center": {"78-130": [713, 266], "28-39": [722, 266], "16-27": [702, 266], "7-15": [730, 266], "131-166, 40-77, T:0-1": [738, 266]}},
{"id": "two3qz", "name": "Loona", "description": "Loona (Korean: 이달의 소녀), stylized as LOONA or LOOΠΔ, is a South Korean girl group formed by Blockberry Creative. The group was introduced to the public through a pre-debut project that began in October 2016, where each of the 12 members were revealed in a periodic fashion by releasing a promotional single over the following 18 months.", "links": {"website": ["http://loonatheworld.com/", "https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g", "https://en.wikipedia.org/wiki/Loona"], "subreddit": ["LOONA"]}, "path": {"33-38": [[500, 528], [500, 542], [510, 542], [510, 528]], "27-32": [[500, 530], [500, 544], [510, 544], [510, 530]], "39-166, T:0-1": [[511, 529], [511, 541], [519, 541], [519, 529]]}, "center": {"33-38": [505, 535], "27-32": [505, 537], "39-166, T:0-1": [515, 535]}},
{"id": "two2oz", "name": "Flag of Australia", "description": "Australia is a country and continent in Oceania. The art on and around the flag contains several references to Australian culture.\n- VB, a popular Aussie beer\n- Vegemite, a popular food spread\n- Australian Aboriginal flag\n- Bunnings Warehouse, an Australian hardware store\n- Sydney Harbour Bridge\n- Flanders (Anzac) poppy\n- Boxing kangaroo with a koala riding it\n- Ned Kelly\n- Freddo, a popular chocolate\n- Bubble O' Bill, an Aussie ice cream\n- Cockatoo, a bird that wrecks anything and everything, while knowing fully that what it's doing is wrong.\n\nThis art was drawn by the Australian communities of r/australia & r/straya.", "links": {"website": ["https://en.wikipedia.org/wiki/Australia", "https://en.wikipedia.org/wiki/Flag_of_Australia"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"77-86": [[670, 649], [670, 673], [712, 673], [712, 649]], "29-76": [[670, 648], [670, 673], [712, 673], [712, 648]], "87-165, T:0-1": [[670, 649], [670, 670], [712, 670], [712, 649]]}, "center": {"77-86": [691, 661], "29-76": [691, 661], "87-165, T:0-1": [691, 660]}},
{"id": "two1zz", "name": "WolvHaven", "description": "WolvHaven is a server for the game Minecraft server. It started out in 2011 as a city role-play and Survival server. The server has since transitioned into more of a Creative city-building server for architecture, urban, and transit enthusiasts, centered around a showcase city. It is mainly known for its railway Metro Systems constructed using the TrainCarts Bukkit plugin. Depicted here is the server's official flag.", "links": {"website": ["https://wolvhaven.net"], "subreddit": ["WolvHaven"]}, "path": {"138-166, T:0-1": [[1345, 460], [1355, 460], [1355, 466], [1345, 466]]}, "center": {"138-166, T:0-1": [1350, 463]}},
{"id": "two0ph", "name": "Nano", "description": "Nano is a cryptocurrency with zero fees. It is often touted by its proponents for that reason, and also for its network's ability to facilitate \"instant\" transactions while also being an eco-friendly alternative to most popular cryptocurrencies. It it found under the ticker XNO (or occasionally NANO) on most exchanges, and was previously known as RaiBlocks under ticker XRB. The 'Ӿ' featured on the globe is Nano's currency symbol.", "links": {"website": ["https://www.nano.org", "https://en.wikipedia.org/wiki/Nano_(cryptocurrency)"], "subreddit": ["nanocurrency"]}, "path": {"33-63": [[823, 648], [823, 667], [825, 669], [826, 669], [828, 667], [828, 662], [857, 662], [857, 657], [843, 657], [841, 655], [828, 655], [828, 648]], "28-32": [[823, 648], [823, 667], [825, 669], [826, 669], [828, 667], [828, 648]], "18-24": [[810, 661], [810, 684], [830, 684], [830, 661]], "10-17": [[810, 661], [810, 684], [830, 684], [830, 672], [835, 672], [835, 661]], "T:0-1": [[839, 635], [834, 638], [830, 644], [830, 650], [833, 655], [839, 659], [845, 659], [850, 656], [854, 650], [854, 644], [851, 639], [845, 635]], "64-165": [[839, 635], [834, 638], [830, 644], [830, 650], [834, 656], [828, 656], [828, 663], [854, 663], [856, 661], [856, 658], [854, 656], [850, 656], [854, 650], [854, 644], [850, 639], [845, 635]]}, "center": {"33-63": [834, 659], "28-32": [826, 658], "18-24": [820, 673], "10-17": [820, 671], "T:0-1": [842, 647], "64-165": [842, 647]}},
-{"id": "two0lb", "name": "Pink Fantasy", "description": "Logo of K-pop group Pink Fantasy. Left is a logo consisting of two keys crossing over each other, and to the right is a bunny representing member Daewang.", "links": {"website": ["https://en.wikipedia.org/wiki/Pink_Fantasy"]}, "path": {"56-166, T:0-1": [[1680, 890], [1680, 898], [1697, 898], [1697, 890]]}, "center": {"56-166, T:0-1": [1689, 894]}},
+{"id": "two0lb", "name": "Pink Fantasy", "description": "Pink Fantasy is a K-pop group. On the left is a logo consisting of two keys crossing over each other, and to the right is a bunny representing member Daewang.", "links": {"website": ["https://en.wikipedia.org/wiki/Pink_Fantasy"], "subreddit": ["kpop"]}, "path": {"130-166, T:0-1": [[1680, 890], [1680, 898], [1697, 898], [1697, 890]]}, "center": {"130-166, T:0-1": [1689, 894]}},
{"id": "two0em", "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell is a platforming game on the Roblox platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. The three large towers (from left to right) are the Tower of Hecc, The Tower of Screen Punching, and the Tower of Impossible Expectations. These are the first three towers ever added to the game, respectively. The small structures in the middle are other beloved towers in the community.\n\nThis art was originally located on the first r/GreenLattice board before moving to its current location.", "links": {"website": ["https://www.roblox.com/games/8562822414/Jukes-Towers-of-Hell"], "subreddit": ["JToH2"]}, "path": {"58-106": [[994, 420], [991, 423], [991, 463], [993, 465], [1014, 465], [1016, 463], [1016, 423], [1013, 420]], "16-26": [[960, 418], [960, 469], [1000, 469], [1000, 418], [993, 418], [993, 456], [978, 454], [977, 453], [973, 457], [973, 465], [966, 462], [966, 425], [964, 425], [964, 418]], "111-166, T:0-1": [[1507, 1605], [1532, 1605], [1532, 1651], [1507, 1651]]}, "center": {"58-106": [1004, 443], "16-26": [981, 462], "111-166, T:0-1": [1520, 1628]}},
{"id": "twnzxf", "name": "Métis flag", "description": "The Métis are indigenous peoples in Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%A9tis", "https://en.wikipedia.org/wiki/M%C3%A9tis_flag"], "subreddit": ["placecanada", "canada"]}, "path": {"159-160": [[209, 460], [209, 470], [226, 470], [226, 460]], "161-165, T:0-1": [[226, 462], [210, 462], [210, 472], [226, 472]]}, "center": {"159-160": [218, 465], "161-165, T:0-1": [218, 467]}},
{"id": "twnzwk", "name": "Rainbow Six Siege", "description": "Two of the four German playable characters from the game Rainbow Six Siege. Cooperation with /r/Rainbow6.", "links": {"website": ["https://en.wikipedia.org/wiki/Tom_Clancy's_Rainbow_Six_Siege"], "subreddit": ["Rainbow6", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-166, T:0-1": [[236, 1148], [274, 1148], [274, 1171], [235, 1171]]}, "center": {"109-166, T:0-1": [255, 1160]}},
@@ -434,14 +434,14 @@
{"id": "twny3q", "name": "Brick Hill", "description": "Brick Hill is a sandbox game. This art depicts the Brick Hill logo and the Chicken Hat item.", "links": {"website": ["https://www.brick-hill.com/"], "subreddit": ["BrickHill"]}, "path": {"58-74": [[1921, 74], [1921, 87], [1928, 87], [1928, 74]], "75-165, T:0-1": [[1921, 74], [1921, 98], [1928, 98], [1928, 74]]}, "center": {"58-74": [1925, 81], "75-165, T:0-1": [1925, 86]}},
{"id": "twny3k", "name": "Rickroll QR code", "description": "Rick Astley - Never Gonna Give You Up\n\nWe do a little trolling, a little simping, a little bit of our will power combining to make an internet legend live to see the light of another day.\n\nOfficial discord for this project is given below. We are currently building a community in this discord.", "links": {"website": ["https://www.youtube.com/watch?v=dQw4w9WgXcQ"], "discord": ["hFXJEgf7w7"]}, "path": {"56-166, T:0-1": [[1870, 917], [1902, 917], [1902, 949], [1870, 949]]}, "center": {"56-166, T:0-1": [1886, 933]}},
{"id": "twny35", "name": "Stimlo", "description": "The short-lived logo of the musician Stimlo. They create music in varying styles and genres, but all are EDM.", "links": {"website": ["https://open.spotify.com/artist/4hF7yJOF52q2pczg70fdl2"], "subreddit": ["stimlo"]}, "path": {"109-166, T:0-1": [[872, 1847], [872, 1852], [877, 1852], [877, 1847]]}, "center": {"109-166, T:0-1": [875, 1850]}},
-{"id": "twnxkl", "name": "Risu nut", "description": "Hololive Indonesia's 1st Generation VTuber Ayunda Risu as a walnut! How nutty! She's also the creator of Nonstop Nut November, a fun spin on the average No Nut November.", "links": {"website": ["https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1336, 1082], [1349, 1082], [1349, 1081], [1350, 1081], [1350, 1079], [1351, 1079], [1351, 1076], [1352, 1076], [1352, 1070], [1352, 1069], [1353, 1069], [1354, 1069], [1354, 1068], [1355, 1067], [1354, 1066], [1353, 1065], [1353, 1061], [1351, 1061], [1351, 1060], [1349, 1060], [1349, 1059], [1347, 1059], [1347, 1058], [1345, 1058], [1345, 1057], [1338, 1057], [1338, 1058], [1336, 1058], [1336, 1059], [1334, 1059], [1334, 1060], [1333, 1060], [1333, 1061], [1332, 1061], [1332, 1079], [1333, 1079], [1333, 1081], [1335, 1081], [1335, 1082], [1341, 1082]]}, "center": {"109-165, T:0-1": [1342, 1070]}},
-{"id": "twnx3u", "name": "Aromat", "description": "A swiss spice, famous in swizerland only", "links": {}, "path": {"56-165, T:0-1": [[1177, 879], [1183, 879], [1183, 890], [1177, 890]]}, "center": {"56-165, T:0-1": [1180, 885]}},
+{"id": "twnxkl", "name": "Risu nut", "description": "Hololive Indonesia's 1st Generation VTuber Ayunda Risu as a walnut! How nutty! She's also the creator of Nonstop Nut November, a fun spin on the average No Nut November.", "links": {"website": ["https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1336, 1082], [1349, 1082], [1349, 1081], [1350, 1081], [1350, 1079], [1351, 1079], [1351, 1076], [1352, 1076], [1352, 1070], [1352, 1069], [1353, 1069], [1354, 1069], [1354, 1068], [1355, 1067], [1354, 1066], [1353, 1065], [1353, 1061], [1351, 1061], [1351, 1060], [1349, 1060], [1349, 1059], [1347, 1059], [1347, 1058], [1345, 1058], [1345, 1057], [1338, 1057], [1338, 1058], [1336, 1058], [1336, 1059], [1334, 1059], [1334, 1060], [1333, 1060], [1333, 1061], [1332, 1061], [1332, 1079], [1333, 1079], [1333, 1081], [1335, 1081], [1335, 1082], [1341, 1082]]}, "center": {"109-165, T:0-1": [1342, 1070]}},
+{"id": "twnx3u", "name": "Aromat", "description": "Aromat is a food seasoning made by the German food company Knorr. It is popular in Switzerland.", "links": {"website": ["https://www.knorr.com/uk/knorr-products/aromat/aromat-seasoning.html", "https://en.wikipedia.org/wiki/Aromat"], "subreddit": ["Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"147-165, T:0-1": [[1176, 878], [1176, 892], [1184, 892], [1184, 878]]}, "center": {"147-165, T:0-1": [1180, 885]}},
{"id": "twnvko", "name": "The iFunny watermark", "description": "Uh oh, you forgot to crop your stolen meme, now you deal with the consequences. Brought to you by r/Place_iFunny.", "links": {"website": ["https://www.ifunny.co"], "subreddit": ["iFunny"]}, "path": {"109-165, T:0-1": [[311, 1888], [365, 1888], [365, 1897], [311, 1897]]}, "center": {"109-165, T:0-1": [338, 1893]}},
{"id": "twnvep", "name": "Snuffy", "description": "An emote of Twitch VTuber Snuffy. Lead by her community, and Snuffy herself.", "links": {"website": ["https://www.twitch.tv/snuffy"]}, "path": {"109-165, T:0-1": [[667, 1050], [719, 1050], [720, 1098], [668, 1098]]}, "center": {"109-165, T:0-1": [694, 1074]}},
{"id": "twnv32", "name": "DDLC Micro Yuri", "description": "A miniature representation of Yuri, a character from Doki Doki Literature Club. DDLC is a psychological horror visual novel about writing your way into a girl's heart. Yuri's hobbies include aromatherapy, reading horror novels, and knife collecting. Will you take a stab at her route and make the cut?", "links": {"website": ["https://ddlc.moe/"], "subreddit": ["ddlc"]}, "path": {"109-165, T:0-1": [[1859, 1439], [1864, 1439], [1864, 1447], [1859, 1447]]}, "center": {"109-165, T:0-1": [1862, 1443]}},
{"id": "twnutc", "name": "Flag of Belka", "description": "Belka is a fictional country from the long-running Ace Combat series of arcade flight games. Belka is known for its legendary air force, hyper-advanced technology, and dropping seven nukes on itself to prevent the advance of allied forces.", "links": {"website": ["https://acecombat.fandom.com/wiki/Belka"], "subreddit": ["acecombat"]}, "path": {"89-98": [[1696, 280], [1696, 299], [1710, 299], [1710, 280]], "60-88": [[1697, 283], [1697, 299], [1710, 299], [1710, 283]], "100-166, T:0-1": [[1706, 329], [1697, 329], [1697, 328], [1692, 328], [1692, 309], [1705, 309], [1705, 329]]}, "center": {"89-98": [1703, 290], "60-88": [1704, 291], "100-166, T:0-1": [1698, 316]}},
{"id": "twnut5", "name": "Metroid", "description": "One of the titular alien parasites from the Metroid video game series.", "links": {"website": ["https://metroid.fandom.com/wiki/Metroid_(species)", "https://metroid.nintendo.com/"], "subreddit": ["Metroid"]}, "path": {"70-166, T:0-1": [[1354, 52], [1351, 54], [1348, 58], [1348, 63], [1354, 68], [1360, 68], [1366, 63], [1366, 58], [1363, 54], [1360, 52]]}, "center": {"70-166, T:0-1": [1357, 60]}},
-{"id": "twntyf", "name": "Ankimo", "description": "The mascot of Tokino Sora, a Hololive VTuber.", "links": {"website": ["https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1332, 1115], [1332, 1125], [1342, 1125], [1342, 1115]]}, "center": {"109-165, T:0-1": [1337, 1120]}},
+{"id": "twntyf", "name": "Ankimo", "description": "The mascot of Tokino Sora, a Hololive VTuber.", "links": {"website": ["https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1332, 1115], [1332, 1125], [1342, 1125], [1342, 1115]]}, "center": {"109-165, T:0-1": [1337, 1120]}},
{"id": "twntnk", "name": "Rei Ayanami", "description": "Rei Ayanami is a character from the anime Neon Genesis Evangelion. He holds a mug of Guinness beer in honor of the subreddit's alliance with Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Rei_Ayanami"], "subreddit": ["evangelion", "PlaceIreland", "ireland"]}, "path": {"67-166, T:0-1": [[1259, 127], [1254, 130], [1252, 132], [1252, 143], [1251, 143], [1249, 145], [1249, 149], [1251, 151], [1253, 151], [1253, 153], [1258, 153], [1258, 156], [1260, 158], [1266, 158], [1268, 156], [1268, 152], [1273, 152], [1273, 132], [1268, 127]]}, "center": {"67-166, T:0-1": [1263, 141]}},
{"id": "twntm5", "name": "Flag of Uruguay", "description": "Uruguay is a country in the south part of South America. This flag contains several icons of the country, including the tero (national bird) and chivito (national dish).", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Flag_of_Uruguay"], "subreddit": ["uruguay"]}, "path": {"56-72": [[966, 665], [966, 684], [1123, 684], [1123, 665]], "19-55": [[966, 665], [966, 684], [999, 684], [999, 665]], "7-18": [[982, 665], [982, 675], [999, 675], [999, 665]], "73-165, T:0-1": [[966, 665], [966, 684], [1172, 684], [1200, 684], [1200, 665]]}, "center": {"56-72": [1045, 675], "19-55": [983, 675], "7-18": [991, 670], "73-165, T:0-1": [1083, 675]}},
{"id": "twns45", "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\". There is a Lonely Wizard in the bottom left and Goobert to the right.\n\nr/inscryption banded together to create Stoat within the first 3 hours of r/place, eventually allying with France and making peace with Iran.", "links": {"website": ["https://en.wikipedia.org/wiki/Inscryption"], "subreddit": ["inscryption"]}, "path": {"19-121": [[106, 267], [160, 267], [160, 275], [144, 274], [146, 277], [146, 288], [148, 288], [148, 300], [141, 306], [141, 318], [143, 318], [144, 319], [144, 320], [152, 320], [152, 328], [104, 328], [101, 327], [101, 319], [99, 319], [98, 318], [96, 318], [96, 316], [95, 316], [95, 314], [94, 314], [94, 312], [95, 312], [95, 311], [98, 311], [98, 310], [99, 309], [100, 308], [101, 308], [105, 304], [110, 304], [111, 305], [110, 304], [111, 305], [112, 304], [114, 302], [114, 300], [113, 299], [112, 298], [112, 292], [111, 292], [111, 286], [110, 286], [110, 275], [106, 275]], "1-18": [[106, 267], [160, 267], [160, 275], [144, 274], [146, 277], [146, 288], [148, 288], [148, 300], [141, 306], [141, 318], [143, 318], [144, 319], [144, 320], [152, 320], [152, 328], [101, 328], [101, 320], [106, 320], [112, 307], [112, 291], [110, 286], [110, 275], [106, 275]], "122-141": [[106, 267], [160, 267], [160, 275], [144, 274], [146, 277], [146, 288], [148, 288], [148, 300], [148, 305], [152, 309], [152, 328], [101, 328], [101, 318], [96, 318], [96, 313], [105, 304], [108, 304], [109, 307], [112, 305], [114, 302], [114, 299], [112, 297], [112, 286], [110, 283], [110, 275], [106, 275]], "142-165, T:0-1": [[106, 267], [160, 267], [160, 275], [144, 274], [146, 277], [146, 288], [148, 288], [148, 299], [155, 299], [155, 291], [158, 288], [158, 286], [160, 284], [161, 284], [163, 286], [163, 288], [166, 291], [166, 301], [165, 301], [163, 299], [161, 299], [158, 302], [157, 302], [156, 301], [156, 299], [148, 299], [141, 306], [141, 320], [152, 320], [152, 328], [101, 328], [101, 318], [96, 318], [94, 313], [105, 304], [108, 304], [112, 310], [114, 302], [114, 300], [112, 297], [110, 275], [106, 275]]}, "center": {"19-121": [129, 286], "1-18": [128, 285], "122-141": [131, 310], "142-165, T:0-1": [129, 286]}},
@@ -458,8 +458,8 @@
{"id": "twno9a", "name": "Godot Engine", "description": "Godot is a free and open-source game engine released under the MIT license, initially developed by Juan Linietsky and Ariel Manzur and maintained by a community of voluntary contributors. Godot's logo was designed by Andrea Calabró, Juan Linietsky's wife.", "links": {"website": ["https://godotengine.org", "https://en.wikipedia.org/wiki/Godot_(game_engine)"], "subreddit": ["godot"]}, "path": {"70-97": [[1197, 433], [1197, 445], [1239, 445], [1239, 430], [1222, 430], [1222, 433]], "56-69": [[1200, 435], [1200, 455], [1219, 455], [1219, 435]], "98-165, T:0-1": [[1196, 433], [1196, 445], [1246, 445], [1246, 430], [1222, 430], [1222, 433]]}, "center": {"70-97": [1228, 438], "56-69": [1210, 445], "98-165, T:0-1": [1234, 438]}},
{"id": "twno94", "name": "Flag of Finland", "description": "Finland is a country in Northern Europe.\n\nThis flag of Finland was made by r/place_nordicunion and r/Suomi.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"9-40": [[495, 136], [495, 148], [527, 148], [527, 162], [634, 162], [634, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136]], "3-8": [[495, 136], [495, 165], [629, 165], [629, 134], [634, 134], [634, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136]], "148-154": [[497, 294], [537, 293], [537, 285], [594, 285], [594, 203], [634, 203], [634, 189], [635, 188], [635, 186], [634, 185], [635, 183], [636, 182], [636, 181], [636, 180], [635, 179], [634, 179], [634, 138], [799, 138], [799, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136], [496, 136], [496, 149], [527, 149], [527, 177], [496, 177]], "92-147": [[497, 294], [537, 293], [537, 285], [594, 285], [594, 203], [634, 203], [634, 189], [635, 188], [635, 186], [634, 185], [635, 183], [636, 182], [636, 181], [636, 180], [635, 179], [634, 179], [634, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136], [496, 136], [496, 148], [527, 148], [527, 183], [496, 183]], "70-76": [[495, 136], [495, 148], [527, 148], [527, 176], [495, 176], [495, 342], [542, 342], [542, 285], [537, 285], [537, 236], [540, 233], [540, 202], [634, 202], [634, 190], [635, 189], [635, 184], [636, 183], [636, 178], [634, 178], [634, 137], [591, 137], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136]], "41-69, 77-91": [[495, 136], [495, 148], [527, 148], [527, 176], [495, 176], [495, 298], [537, 298], [537, 202], [634, 202], [634, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136]], "155-166, T:0-1": [[497, 294], [537, 293], [537, 285], [594, 285], [594, 203], [634, 203], [634, 189], [635, 188], [635, 186], [634, 185], [635, 183], [636, 182], [636, 181], [636, 180], [635, 179], [634, 179], [634, 137], [614, 137], [614, 120], [591, 120], [591, 136], [539, 136], [539, 120], [525, 120], [525, 136], [495, 136], [495, 149], [527, 149], [527, 178], [496, 178]]}, "center": {"9-40": [611, 141], "3-8": [609, 145], "148-154": [545, 222], "92-147": [545, 234], "70-76": [583, 169], "41-69, 77-91": [600, 169], "155-166, T:0-1": [545, 236]}},
{"id": "twnnbb", "name": "Starfleet insignia", "description": "The Star Trek Delta insignia, a direct descendant of the vector component of the old NASA (and later United Earth Space Probe Agency) logos. The logo is synonymous with Star Trek in today's pop culture.", "links": {"website": ["https://www.startrek.com/article/starfleet-insignia-explained"], "subreddit": ["startrek", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[608, 975], [613, 973], [623, 973], [623, 947], [609, 947], [609, 961], [608, 965]]}, "center": {"1-166, T:0-1": [616, 960]}},
-{"id": "twnn3g", "name": "ISAE SUPAERO/ENSMA", "description": "two major engineering schools in France specializing in aeronautics", "links": {"website": ["http://groupe-isae.fr"]}, "path": {"56-165, T:0-1": [[1130, 869], [1175, 869], [1175, 890], [1172, 890], [1172, 896], [1175, 896], [1169, 902], [1169, 899], [1167, 897], [1163, 897], [1161, 899], [1161, 880], [1130, 880]]}, "center": {"56-165, T:0-1": [1157, 879]}},
-{"id": "twnn1g", "name": "Sakamata Chloe mask", "description": "Mask worn by Hololive Japan Generation 6 (Secret Society HoloX) Vtuber Sakamata Chloe. During her debut, she took off her eye mask and showed her red eyes to the audience. After her debut, her YouTube and Twitter profile pictures were updated to no longer feature the eye mask. A new version of the HoloX PV was released on the official Hololive channel after her debut to reflect the mask change.", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw/featured"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1386, 1065], [1386, 1068], [1389, 1070], [1397, 1070], [1399, 1067], [1399, 1064], [1386, 1064]]}, "center": {"109-165, T:0-1": [1392, 1067]}},
+{"id": "twnn3g", "name": "Institut supérieur de l'aéronautique et de l'espace", "description": "The Institut supérieur de l'aéronautique et de l'espace (ISAE-SUPAERO), is a major engineering school in France specializing in aeronautics. Its name translates to \"National Higher French Institute of Aeronautics and Space\" in English.", "links": {"website": ["http://groupe-isae.fr", "https://en.wikipedia.org/wiki/Institut_sup%C3%A9rieur_de_l%27a%C3%A9ronautique_et_de_l%27espace"]}, "path": {"134-146": [[1131, 870], [1131, 876], [1175, 876], [1175, 870]], "147-159": [[1131, 869], [1131, 875], [1163, 875], [1161, 878], [1161, 899], [1163, 899], [1163, 898], [1172, 898], [1172, 891], [1173, 891], [1175, 887], [1175, 869]], "160-165, T:0-1": [[1131, 869], [1131, 875], [1163, 875], [1161, 878], [1161, 887], [1164, 891], [1172, 891], [1175, 887], [1175, 869]]}, "center": {"134-146": [1153, 873], "147-159": [1168, 885], "160-165, T:0-1": [1168, 883]}},
+{"id": "twnn1g", "name": "Sakamata Chloe mask", "description": "Mask worn by Hololive Japan Generation 6 (Secret Society HoloX) Vtuber Sakamata Chloe. During her debut, she took off her eye mask and showed her red eyes to the audience. After her debut, her YouTube and Twitter profile pictures were updated to no longer feature the eye mask. A new version of the HoloX PV was released on the official Hololive channel after her debut to reflect the mask change.", "links": {"website": ["https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw/featured"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1386, 1065], [1386, 1068], [1389, 1070], [1397, 1070], [1399, 1067], [1399, 1064], [1386, 1064]]}, "center": {"109-165, T:0-1": [1392, 1067]}},
{"id": "twnmmh", "name": "NERV", "description": "NERV is a fictional paramilitary agency from the Neon Genesis Evangelion anime.\n\nThis art was made by a group from r/evangelion. It was recolored to match the flag of Ireland as a symbol of the alliance between Evangelion and Ireland, despite several efforts to turn it back to its original redcolor. The NERV logo had to be moved several times before finally finding its position in Ireland's flag.", "links": {"website": ["https://evangelion.fandom.com/wiki/NERV"], "subreddit": ["evangelion", "PlaceIreland", "ireland"]}, "path": {"101-165, 13-93, T:0-1": [[124, 738], [124, 742], [128, 746], [120, 746], [120, 756], [127, 756], [127, 764], [148, 764], [148, 761], [149, 760], [149, 756], [147, 753], [147, 752], [151, 748], [146, 743], [144, 743], [144, 741], [141, 738], [138, 737], [135, 737], [134, 738]]}, "center": {"101-165, 13-93, T:0-1": [137, 752]}},
{"id": "twnmb9", "name": "Piston", "description": "A piston is a block in the game Minecraft. It is capable of pushing blocks, players, and mobs when given a redstone pulse.", "links": {"website": ["https://minecraft.fandom.com/wiki/Piston"], "subreddit": ["Minecraft"]}, "path": {"102-136, 158-165, 82-87, T:0-1": [[241, 294], [246, 294], [246, 298], [241, 298]]}, "center": {"102-136, 158-165, 82-87, T:0-1": [244, 296]}},
{"id": "twnlr1", "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.", "links": {"website": ["https://www.youtube.com/channel/UCB2tP2QfRG7hTra0KTOtTBg"], "subreddit": ["TUYU_official"]}, "path": {"125-140": [[1166, 1342], [1166, 1356], [1179, 1356], [1181, 1358], [1183, 1356], [1199, 1356], [1199, 1342]], "81-96": [[1170, 519], [1170, 540], [1189, 540], [1189, 528], [1184, 528], [1184, 519]], "97-112": [[1191, 467], [1191, 495], [1187, 499], [1189, 501], [1192, 499], [1192, 503], [1194, 503], [1194, 500], [1198, 500], [1198, 467]], "56-77": [[1172, 518], [1170, 520], [1170, 540], [1189, 540], [1189, 525], [1184, 525], [1184, 523], [1182, 519], [1181, 518]], "141-165, T:0-1": [[1143, 1339], [1143, 1371], [1163, 1371], [1163, 1339]]}, "center": {"125-140": [1183, 1349], "81-96": [1177, 532], "97-112": [1194, 496], "56-77": [1179, 531], "141-165, T:0-1": [1153, 1355]}},
@@ -471,7 +471,7 @@
{"id": "twnj5b", "name": "3DBenchy", "description": "3DBenchy is a tugboat model often used as a 3D printer benchmark test among 3D printer enthusiasts.\n\nr/3Dprinting allied with r/factorio to allow Benchy to sit on top of the Factorio conveyor belt.", "links": {"website": ["https://www.3dbenchy.com/about/"], "subreddit": ["3Dprinting"]}, "path": {"1-7": [[278, 519], [283, 528], [300, 528], [300, 500], [292, 500], [292, 505], [293, 505], [293, 512], [294, 512], [294, 515], [287, 515], [287, 519]], "8-166, T:0-1": [[289, 535], [290, 535], [293, 533], [300, 533], [300, 539], [294, 548], [292, 549], [263, 549], [263, 547], [260, 547], [258, 545], [258, 541], [261, 538], [265, 542], [267, 542], [267, 538], [273, 538], [273, 528], [272, 528], [272, 523], [274, 523], [274, 517], [279, 517], [279, 522], [281, 522], [281, 521], [290, 521], [290, 526], [289, 526]]}, "center": {"1-7": [293, 522], "8-166, T:0-1": [282, 540]}},
{"id": "twnil1", "name": "Brams the Cat", "description": "A little ginger cat that was built by a group of his fans", "links": {"subreddit": ["kotbrams"]}, "path": {"109-166, T:0-1": [[1529, 1512], [1529, 1508], [1526, 1505], [1528, 1503], [1530, 1499], [1531, 1498], [1531, 1497], [1535, 1500], [1540, 1500], [1542, 1497], [1543, 1500], [1544, 1503], [1545, 1504], [1547, 1505], [1542, 1509], [1543, 1512]]}, "center": {"109-166, T:0-1": [1536, 1505]}},
{"id": "twnihw", "name": "Geocache", "description": "Geocaching is an outdoor activity where players hide small containers of items in places around the world for others to find. The coordinates for these hiding places are given out to help players seek out existing geocaches.\n\nThis art depicts a traditional geocache overlaid on the Geocaching logo. It is the third generation of geocaches placed on the r/place canvas.", "links": {"website": ["https://geocaching.com", "https://en.wikipedia.org/wiki/Geocaching"], "subreddit": ["geocaching"]}, "path": {"38-43": [[4, 868], [0, 872], [0, 876], [2, 878], [5, 878], [10, 874], [10, 868]], "127-166, 69-123, T:0-1": [[1556, 193], [1556, 204], [1568, 204], [1568, 193]]}, "center": {"38-43": [5, 873], "127-166, 69-123, T:0-1": [1562, 199]}},
-{"id": "twni8x", "name": "CLG", "description": "The logo of esports organization Counter Logic Gaming", "links": {"website": ["https://clg.gg"], "subreddit": ["CLG"]}, "path": {"56-165, T:0-1": [[1192, 892], [1198, 886], [1205, 886], [1214, 888], [1221, 888], [1221, 894], [1221, 896], [1208, 895], [1206, 894], [1203, 894], [1201, 897], [1198, 897], [1195, 895], [1192, 893]]}, "center": {"56-165, T:0-1": [1207, 891]}},
+{"id": "twni8x", "name": "Counter Logic Gaming", "description": "Counter Logic Gaming (CLG) is an esports organization.", "links": {"website": ["https://clg.gg"], "subreddit": ["CLG"]}, "path": {"59-76": [[1192, 886], [1185, 893], [1185, 894], [1190, 894], [1190, 897], [1193, 897], [1199, 891], [1201, 891], [1201, 896], [1219, 896], [1219, 887], [1201, 887], [1201, 889], [1195, 889], [1195, 886]], "77-165, T:0-1": [[1199, 886], [1192, 893], [1192, 894], [1197, 894], [1197, 897], [1200, 897], [1204, 893], [1207, 893], [1207, 895], [1221, 895], [1221, 888], [1207, 888], [1207, 889], [1202, 889], [1202, 886]]}, "center": {"59-76": [1213, 892], "77-165, T:0-1": [1200, 892]}},
{"id": "twngew", "name": "Noita", "description": "Noita is a magical action roguelite game set in a world where every pixel is physically simulated. Fight, explore, melt, burn, freeze, and evaporate your way through the procedurally generated world using spells you've crafted yourself. Noita was developed by Nolla Games in Helsinki, Finland.\n\nThe bottom half of the Noita space contains the game's first letter 'N', a Stevari enemy, The Orb of True Knowledge, and some more Hämis.", "links": {"website": ["https://noitagame.com/", "https://en.wikipedia.org/wiki/Noita_(video_game)"], "subreddit": ["noita", "place_CentralAlliance"]}, "path": {"141-156": [[548, 900], [548, 932], [550, 934], [565, 934], [565, 936], [567, 938], [569, 938], [571, 940], [572, 940], [572, 974], [590, 1012], [590, 1090], [592, 1092], [591, 1093], [591, 1095], [599, 1095], [599, 1093], [603, 1093], [603, 1098], [607, 1098], [607, 1096], [609, 1096], [609, 1095], [619, 1095], [619, 1093], [624, 1093], [624, 1087], [637, 1087], [637, 1069], [624, 1069], [624, 1061], [598, 1061], [598, 1012], [590, 1012], [572, 974], [580, 974], [580, 930], [582, 930], [582, 928], [580, 928], [580, 924], [584, 920], [584, 919], [583, 918], [583, 917], [584, 916], [587, 916], [587, 910], [617, 910], [617, 909], [648, 909], [648, 907], [645, 903], [645, 901], [647, 901], [647, 899], [650, 899], [652, 896], [655, 896], [655, 892], [652, 889], [641, 889], [639, 891], [638, 894], [638, 900], [627, 900], [627, 903], [626, 904], [626, 909], [617, 909], [617, 907], [615, 905], [615, 900], [614, 900], [614, 895], [612, 895], [612, 897], [611, 898], [611, 900], [609, 902], [609, 905], [606, 905], [606, 901], [604, 899], [602, 899], [600, 901], [600, 906], [596, 906], [596, 910], [589, 910], [589, 901], [587, 899], [562, 899], [562, 890], [558, 890], [556, 892], [556, 899], [554, 899], [553, 900]], "109-140": [[548, 900], [548, 932], [550, 934], [565, 934], [565, 936], [567, 938], [569, 938], [571, 940], [572, 940], [572, 974], [590, 1012], [590, 1090], [592, 1092], [591, 1093], [591, 1095], [599, 1095], [599, 1093], [603, 1093], [603, 1098], [607, 1098], [607, 1096], [609, 1096], [609, 1095], [619, 1095], [619, 1093], [624, 1093], [624, 1087], [637, 1087], [637, 1069], [624, 1069], [624, 1061], [598, 1061], [598, 1012], [590, 1012], [572, 974], [580, 974], [580, 930], [582, 930], [582, 928], [580, 928], [580, 924], [584, 920], [584, 919], [583, 918], [583, 917], [584, 916], [587, 916], [587, 910], [617, 910], [617, 909], [648, 909], [648, 907], [645, 903], [645, 901], [647, 901], [647, 899], [650, 899], [652, 896], [655, 896], [655, 892], [652, 889], [641, 889], [639, 891], [638, 894], [638, 903], [635, 907], [635, 909], [615, 909], [615, 902], [614, 902], [614, 899], [608, 899], [608, 904], [606, 904], [606, 901], [604, 899], [602, 899], [600, 901], [600, 906], [596, 906], [596, 910], [589, 910], [589, 901], [587, 899], [562, 899], [562, 892], [560, 890], [558, 890], [556, 892], [556, 899], [554, 899], [553, 900]], "63-108": [[547, 900], [547, 931], [551, 934], [561, 934], [561, 936], [564, 936], [565, 937], [565, 939], [569, 939], [571, 941], [572, 941], [572, 974], [580, 974], [580, 932], [583, 932], [583, 929], [585, 929], [585, 928], [584, 927], [584, 925], [582, 923], [585, 920], [585, 917], [587, 917], [587, 914], [588, 913], [588, 910], [648, 910], [648, 907], [645, 903], [645, 898], [651, 898], [652, 896], [655, 896], [655, 891], [653, 889], [641, 889], [638, 893], [638, 903], [635, 907], [635, 910], [614, 910], [614, 906], [615, 905], [615, 903], [614, 902], [614, 898], [608, 898], [608, 899], [602, 899], [600, 901], [600, 906], [596, 906], [596, 910], [589, 910], [589, 901], [587, 899], [569, 899], [569, 900], [562, 900], [562, 892], [560, 890], [557, 890], [557, 895], [556, 896], [556, 898], [555, 899], [551, 899], [551, 900]], "29-62": [[547, 900], [547, 907], [572, 932], [572, 934], [563, 934], [563, 935], [572, 944], [572, 974], [580, 974], [580, 943], [579, 943], [580, 933], [583, 933], [583, 929], [585, 929], [585, 928], [584, 927], [584, 919], [588, 915], [591, 909], [647, 909], [647, 905], [645, 903], [645, 899], [647, 899], [648, 898], [655, 898], [655, 892], [651, 888], [642, 888], [638, 893], [638, 903], [635, 907], [635, 909], [615, 909], [615, 903], [614, 902], [614, 899], [608, 899], [608, 905], [606, 905], [606, 900], [603, 899], [586, 899], [585, 900], [562, 900], [562, 890], [555, 890], [555, 899], [553, 899], [552, 900]], "10-28": [[549, 900], [549, 910], [572, 933], [562, 933], [562, 935], [573, 946], [573, 975], [580, 975], [580, 920], [583, 920], [594, 909], [599, 909], [599, 906], [594, 899], [586, 899], [585, 900], [555, 900], [554, 899], [553, 899], [552, 900]], "157-166, T:0-1": [[548, 900], [548, 932], [550, 934], [565, 934], [565, 936], [567, 938], [569, 938], [571, 940], [572, 940], [572, 974], [590, 1012], [590, 1090], [592, 1092], [591, 1093], [591, 1095], [599, 1095], [599, 1093], [603, 1093], [603, 1098], [607, 1098], [607, 1096], [609, 1096], [609, 1095], [619, 1095], [619, 1093], [624, 1093], [624, 1087], [637, 1087], [637, 1069], [624, 1069], [624, 1061], [598, 1061], [598, 1012], [590, 1012], [572, 974], [580, 974], [580, 930], [582, 930], [582, 928], [580, 928], [580, 924], [584, 920], [584, 919], [583, 918], [583, 917], [584, 916], [587, 916], [587, 910], [617, 910], [617, 909], [648, 909], [648, 907], [645, 903], [645, 901], [647, 901], [647, 899], [650, 899], [652, 896], [655, 896], [655, 892], [652, 889], [641, 889], [639, 891], [638, 894], [638, 900], [627, 900], [627, 903], [626, 904], [626, 909], [617, 909], [617, 907], [615, 905], [615, 900], [614, 900], [614, 895], [612, 895], [612, 897], [611, 898], [611, 900], [609, 902], [609, 905], [606, 905], [606, 901], [604, 899], [602, 899], [600, 901], [600, 906], [596, 906], [596, 910], [589, 910], [589, 901], [587, 899], [553, 899], [552, 900]]}, "center": {"141-156": [565, 916], "109-140": [565, 916], "63-108": [565, 917], "29-62": [572, 913], "10-28": [570, 912], "157-166, T:0-1": [565, 916]}},
{"id": "twng3y", "name": "evermore - Taylor Swift Album", "description": "Taylor Swift's 9th studio album. The ivy border represents her song 'Ivy', which is track 10 on the album and one of many fan-favourites. The piece was defended for a short period of time before being taken over by pufferfish bots.", "links": {"website": ["https://en.wikipedia.org/wiki/Evermore_(Taylor_Swift_album)"], "subreddit": ["TaylorSwift"]}, "path": {"56-166, T:0-1": [[1927, 917], [1927, 929], [2001, 929], [2001, 917]]}, "center": {"56-166, T:0-1": [1964, 923]}},
{"id": "twnfym", "name": "Spamton", "description": "Spamton is a popular salesman character from Chapter 2 of the game Deltarune. He was heavily memed because of his bizarre way of speaking that is reminiscent of ad-ridden hyperlinked text on websites. The extremely long nose he was given was extended by random people.\n\nYOU KNOW HIM !! YOU LOVE HIM !! IT'S EVERYONE'S FAVORITE [[Number One Rated Salesman 1997]] SPAM SPAM SPAM SPAM [[Hyperlink Blocked]] SPAMTON G. SPAMTON!! I GUESS THAT [[Little Sponge]] WITH THEIR [[Heart-Shaped Object]] AND THEIR SILLY STRINGS CAN JOIN TOO.", "links": {"website": ["https://deltarune.fandom.com/wiki/Spamton"], "subreddit": ["Deltarune"]}, "path": {"72-75": [[480, 411], [480, 414], [674, 414], [674, 418], [670, 423], [670, 427], [672, 427], [675, 424], [676, 429], [684, 429], [687, 424], [690, 428], [694, 428], [694, 425], [693, 425], [688, 417], [694, 413], [694, 412], [692, 410], [690, 410], [690, 408], [691, 408], [693, 406], [693, 404], [694, 403], [694, 402], [692, 399], [687, 399], [686, 398], [678, 398], [673, 402], [673, 403], [675, 405], [675, 406], [674, 407], [674, 411]], "21-24": [[480, 359], [480, 414], [675, 414], [675, 417], [669, 424], [669, 427], [672, 427], [675, 424], [678, 429], [684, 429], [687, 424], [690, 428], [694, 428], [694, 426], [689, 420], [689, 417], [693, 413], [693, 410], [690, 410], [690, 408], [691, 408], [693, 406], [693, 404], [694, 403], [694, 398], [692, 398], [691, 399], [685, 399], [684, 398], [678, 398], [673, 402], [673, 403], [674, 404], [674, 411], [483, 411], [483, 402], [495, 402], [495, 399], [483, 399], [483, 359]], "2-20": [[674, 414], [674, 418], [668, 424], [668, 425], [670, 427], [672, 427], [675, 424], [678, 429], [684, 429], [687, 424], [690, 428], [694, 428], [694, 426], [691, 423], [688, 417], [694, 413], [692, 410], [691, 410], [691, 408], [694, 403], [694, 398], [692, 398], [691, 399], [685, 399], [684, 398], [678, 398], [673, 402], [673, 403], [674, 404], [674, 411], [622, 412], [622, 392], [450, 392], [450, 412], [432, 412], [432, 449], [452, 449], [452, 429], [622, 429], [622, 414], [620, 414], [620, 427], [452, 427], [452, 414], [481, 414], [481, 417], [502, 417], [502, 414], [620, 414], [620, 412], [500, 412], [500, 415], [483, 415], [483, 412], [450, 412], [450, 447], [434, 447], [434, 414], [452, 414], [452, 395], [453, 394], [620, 394], [620, 414]], "25-71, 76-165, T:0-1": [[480, 399], [480, 414], [674, 414], [674, 415], [675, 416], [675, 417], [673, 419], [673, 420], [668, 424], [668, 427], [672, 427], [675, 424], [678, 431], [680, 433], [683, 433], [684, 432], [684, 431], [685, 430], [685, 428], [686, 427], [686, 425], [687, 424], [687, 425], [690, 428], [694, 428], [694, 426], [691, 423], [691, 422], [690, 421], [690, 420], [689, 419], [689, 418], [688, 417], [689, 417], [692, 414], [693, 414], [694, 413], [694, 412], [692, 410], [691, 410], [690, 411], [690, 408], [691, 408], [693, 406], [692, 405], [694, 403], [694, 402], [693, 401], [694, 400], [694, 399], [693, 398], [692, 398], [691, 399], [685, 399], [684, 398], [678, 398], [677, 399], [676, 399], [673, 402], [673, 403], [675, 405], [675, 406], [674, 407], [674, 409], [675, 410], [675, 411], [594, 411], [594, 399]]}, "center": {"72-75": [682, 409], "21-24": [682, 407], "2-20": [682, 410], "25-71, 76-165, T:0-1": [682, 408]}},
@@ -494,27 +494,27 @@
{"id": "twn6es", "name": "Mikoto Misaka", "description": "Misaka represents the Toaru Majutsu no Index (Raildex) light novels & anime.", "links": {"website": ["https://toarumajutsunoindex.fandom.com/wiki/Misaka_Mikoto"], "subreddit": ["toarumajutsunoindex"]}, "path": {"109-166, T:0-1": [[1804, 1172], [1827, 1172], [1827, 1194], [1808, 1194], [1808, 1196], [1804, 1196]]}, "center": {"109-166, T:0-1": [1815, 1183]}},
{"id": "twn5nh", "name": "Deltarune", "description": "Deltarune is a game made by Toby Fox, his second game after Undertale. Pictured are plush version of Deltarune's characters. The background features Cyber World, the setting of Chapter 2 in the game.", "links": {"website": ["https://deltarune.com/", "https://en.wikipedia.org/wiki/Deltarune"], "subreddit": ["Deltarune"]}, "path": {"56-67": [[1747, 174], [1747, 206], [1803, 206], [1803, 188], [1802, 188], [1802, 171], [1777, 171], [1777, 174]], "68-166, T:0-1": [[1749, 175], [1749, 206], [1805, 205], [1805, 172], [1776, 172], [1775, 161], [1745, 161], [1746, 174]]}, "center": {"56-67": [1785, 189], "68-166, T:0-1": [1767, 187]}},
{"id": "twn5hs", "name": "Rusty Lake", "description": "An indie game studio for puzzle point-and-click games such as Cube Escape.", "links": {"website": ["http://www.rustylake.com/"], "subreddit": ["rustylake"]}, "path": {"137-148, T:0-1": [[1768, 1044], [1768, 1064], [1789, 1064], [1789, 1044]]}, "center": {"137-148, T:0-1": [1779, 1054]}},
-{"id": "twn5bk", "name": "Sci-Fi-Fantasy Alliance", "description": "A collection of symbols depicting popular science fiction and fantasy series including Dune, Red Rising, Cosmere, Wheel of Time, A Song of Ice and Fire, Lord of the Rings, and more! Visit the subreddit for full symbol identification. The greyscale at the top is part of a compromise with r/onepiece over territory disputes.", "links": {"subreddit": ["SFFA", "asoiaf", "climberscourt", "Cosmere", "discworld", "dune", "HitchHikersGuide", "KingkillerChronicle", "malazan", "mistborn", "redrising", "robinhobb", "Stormlight_Archive", "TheExpanse", "TheNinthHouse", "WanderingInn", "witcher"]}, "path": {"109-166, T:0-1": [[1718, 1359], [1723, 1367], [1725, 1379], [1723, 1393], [1721, 1406], [1715, 1415], [1704, 1428], [1698, 1435], [1686, 1441], [1671, 1444], [1667, 1441], [1656, 1441], [1643, 1438], [1626, 1431], [1617, 1423], [1610, 1411], [1602, 1388], [1602, 1376], [1608, 1358], [1612, 1349], [1629, 1332], [1651, 1324], [1664, 1322], [1676, 1322], [1685, 1327], [1686, 1358], [1717, 1358]]}, "center": {"109-166, T:0-1": [1662, 1385]}},
+{"id": "twn5bk", "name": "Sci-Fi-Fantasy Alliance", "description": "A collection of symbols depicting popular science fiction and fantasy series including Dune, Red Rising, Cosmere, Wheel of Time, A Song of Ice and Fire, Lord of the Rings, and more! Visit the subreddit for full symbol identification. The greyscale at the top is part of a compromise with r/onepiece over territory disputes.", "links": {"subreddit": ["SFFA", "asoiaf", "climberscourt", "Cosmere", "discworld", "dune", "HitchHikersGuide", "KingkillerChronicle", "Malazan", "mistborn", "placeCosmere", "redrising", "robinhobb", "Stormlight_Archive", "TheExpanse", "TheNinthHouse", "WanderingInn", "witcher"]}, "path": {"109-166, T:0-1": [[1718, 1359], [1723, 1367], [1725, 1379], [1723, 1393], [1721, 1406], [1715, 1415], [1704, 1428], [1698, 1435], [1686, 1441], [1671, 1444], [1667, 1441], [1656, 1441], [1643, 1438], [1626, 1431], [1617, 1423], [1610, 1411], [1602, 1388], [1602, 1376], [1608, 1358], [1612, 1349], [1629, 1332], [1651, 1324], [1664, 1322], [1676, 1322], [1685, 1327], [1686, 1358], [1717, 1358]]}, "center": {"109-166, T:0-1": [1662, 1385]}},
{"id": "twn57v", "name": "Higurashi When They Cry", "description": "Characters from the Visual Novel and Anime Series Higurashi, in a line. Allied with the Lesbian and Non-Binary Pride Flags early on and fought valiantly together.", "links": {"subreddit": ["higurashinonakakoroni"], "discord": ["higurashi"]}, "path": {"109-165, T:0-1": [[1804, 1750], [1891, 1750], [1892, 1736], [1805, 1735]]}, "center": {"109-165, T:0-1": [1848, 1743]}},
-{"id": "twn55o", "name": "Tango dancers", "description": "Tango is a style of music that originated among European immigrant populations of Argentina and Uruguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Tango"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"66-165, T:0-1": [[997, 636], [994, 639], [994, 640], [998, 644], [995, 647], [995, 650], [997, 653], [997, 655], [994, 659], [994, 660], [990, 664], [990, 665], [993, 665], [997, 661], [1001, 661], [1001, 665], [1005, 665], [1005, 652], [1007, 652], [1011, 649], [1011, 648], [1005, 648], [1007, 646], [1007, 643], [1005, 641], [1004, 641], [1004, 639], [1001, 636]]}, "center": {"66-165, T:0-1": [1000, 649]}},
+{"id": "twn55o", "name": "Tango dancers", "description": "Tango is a style of music that originated among European immigrant populations of Argentina and Uruguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Tango"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"66-165, T:0-1": [[997, 636], [994, 639], [994, 640], [998, 644], [995, 647], [995, 650], [997, 653], [997, 655], [994, 659], [994, 660], [990, 664], [990, 665], [993, 665], [997, 661], [1001, 661], [1001, 665], [1005, 665], [1005, 652], [1007, 652], [1011, 649], [1011, 648], [1005, 648], [1007, 646], [1007, 643], [1005, 641], [1004, 641], [1004, 639], [1001, 636]]}, "center": {"66-165, T:0-1": [1000, 649]}},
{"id": "twn45x", "name": "Phantom Thieves of Hearts", "description": "The logo and calling card of the Phantom Thieves of Hearts, a group of students headed by the player character, Joker, from the game Persona 5. Sick of the deception, hypocrisy and corruption around them, the Phantom Thieves are devoted to \"stealing\" the corrupt hearts of evil adults in order to change and reform society for the better. Their logo is known as Take Your Heart.", "links": {"website": ["https://megamitensei.fandom.com/wiki/Phantom_Thieves_of_Hearts"], "subreddit": ["Persona5", "atlus"]}, "path": {"63-166, T:0-1": [[1511, 280], [1505, 280], [1505, 281], [1503, 281], [1503, 282], [1499, 282], [1499, 283], [1497, 283], [1497, 284], [1495, 284], [1495, 286], [1494, 285], [1494, 286], [1492, 286], [1492, 287], [1491, 287], [1489, 289], [1487, 297], [1488, 297], [1494, 302], [1497, 308], [1496, 308], [1492, 309], [1491, 311], [1489, 313], [1489, 318], [1497, 321], [1503, 323], [1507, 322], [1511, 323], [1519, 314], [1520, 314], [1526, 308], [1528, 307], [1528, 303], [1531, 303], [1532, 300], [1527, 295], [1527, 291], [1527, 290], [1528, 290], [1528, 288], [1524, 288], [1523, 291], [1519, 296], [1515, 296], [1514, 296], [1514, 294], [1513, 294], [1513, 288], [1514, 287], [1514, 285], [1515, 285], [1515, 283], [1513, 282]]}, "center": {"63-166, T:0-1": [1509, 307]}},
{"id": "twn3zy", "name": "Blue Archive and Sporkbot", "description": "Hifumi and Peroro from Blue Archive along with Sporkbot server. And half of the burger.", "links": {"subreddit": ["BlueArchive"], "discord": ["bluearchive"]}, "path": {"1-166, T:0-1": [[136, 963], [189, 963], [189, 1014], [136, 1014]]}, "center": {"1-166, T:0-1": [163, 989]}},
{"id": "twn3rk", "name": "iPod Classic", "description": "An iPod Classic, used to have an iPod Nano next to it (contributed by the Dankpods community,) but it was destroyed.", "links": {"subreddit": ["ipod"], "discord": ["iPod"]}, "path": {"1-164, T:0-1": [[855, 978], [855, 989], [861, 989], [861, 978]]}, "center": {"1-164, T:0-1": [858, 984]}},
-{"id": "twn3ak", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"68-110": [[1086, 626], [1084, 629], [1083, 639], [1087, 641], [1087, 645], [1088, 646], [1088, 648], [1085, 651], [1084, 651], [1082, 653], [1081, 655], [1081, 662], [1084, 665], [1098, 665], [1101, 661], [1101, 655], [1098, 651], [1105, 644], [1105, 640], [1102, 640], [1096, 646], [1096, 640], [1100, 633], [1099, 628], [1098, 627], [1095, 626]], "111-165, T:0-1": [[1086, 634], [1085, 639], [1090, 648], [1088, 648], [1082, 654], [1081, 656], [1081, 663], [1083, 665], [1099, 665], [1101, 663], [1101, 656], [1098, 651], [1098, 650], [1103, 646], [1103, 643], [1098, 643], [1100, 640], [1100, 639], [1097, 635], [1090, 633]]}, "center": {"68-110": [1091, 657], "111-165, T:0-1": [1092, 657]}},
+{"id": "twn3ak", "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": ["argentina", "Republica_Argentina"]}, "path": {"68-110": [[1086, 626], [1084, 629], [1083, 639], [1087, 641], [1087, 645], [1088, 646], [1088, 648], [1085, 651], [1084, 651], [1082, 653], [1081, 655], [1081, 662], [1084, 665], [1098, 665], [1101, 661], [1101, 655], [1098, 651], [1105, 644], [1105, 640], [1102, 640], [1096, 646], [1096, 640], [1100, 633], [1099, 628], [1098, 627], [1095, 626]], "111-165, T:0-1": [[1086, 634], [1085, 639], [1090, 648], [1088, 648], [1082, 654], [1081, 656], [1081, 663], [1083, 665], [1099, 665], [1101, 663], [1101, 656], [1098, 651], [1098, 650], [1103, 646], [1103, 643], [1098, 643], [1100, 640], [1100, 639], [1097, 635], [1090, 633]]}, "center": {"68-110": [1091, 657], "111-165, T:0-1": [1092, 657]}},
{"id": "twn35n", "name": "Excalibur", "description": "Excalibur from the game Warframe, a free-to-play third-person shooter massively multiplayer online game developed by Digital Extremes. The symbol to left of him is the Lotus symbol, The trademark symbol of the game.", "links": {"website": ["https://warframe.fandom.com/wiki/Excalibur"], "subreddit": ["Warframe", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[562, 1045], [562, 1081], [590, 1081], [590, 1056], [579, 1056], [579, 1045]]}, "center": {"109-166, T:0-1": [575, 1065]}},
{"id": "twn2co", "name": "Sonic the Hedgehog", "description": "Sonic the Hedgehog is a video game series published by Japanese company Sega.\n\nThe first to start its appearance on the canvas was Tails. It had to be remade seven times with different locations according to the r/milesprower community. Finally, r/SonicTheHedgehog came along to reunite the duo together.", "links": {"website": ["https://en.wikipedia.org/wiki/Sonic_the_Hedgehog"], "subreddit": ["milesprower", "SonicTheHedgehog"]}, "path": {"102-166, T:0-1": [[1573, 353], [1573, 392], [1626, 392], [1626, 366], [1611, 353]]}, "center": {"102-166, T:0-1": [1600, 373]}},
{"id": "twn1sc", "name": "Minecraft Championship", "description": "Minecraft Championship (MCC) is a monthly tournament for the game Minecraft featuring various different creators competing in minigames on stream. This art features icons of the team mascots, the winner's coin, and MCC organizer Noxite. It is an expansion of what was made in the first quarter of the map.", "links": {"website": ["https://noxcrew.com/mcc"], "subreddit": ["MinecraftChampionship"]}, "path": {"56-166, T:0-1": [[1785, 98], [1783, 100], [1773, 100], [1773, 110], [1770, 110], [1770, 113], [1769, 114], [1769, 119], [1760, 119], [1760, 125], [1763, 128], [1769, 128], [1771, 130], [1780, 130], [1780, 139], [1789, 139], [1789, 130], [1806, 130], [1809, 127], [1809, 114], [1807, 111], [1805, 110], [1805, 104], [1802, 101], [1800, 100], [1795, 100], [1793, 98]]}, "center": {"56-166, T:0-1": [1789, 114]}},
-{"id": "twn1pg", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"121-151": [[1025, 651], [1025, 665], [1035, 665], [1035, 651]], "76-120": [[1027, 653], [1025, 655], [1025, 665], [1035, 665], [1035, 655], [1033, 653]], "69-75": [[1027, 653], [1025, 656], [1025, 659], [1028, 665], [1034, 665], [1034, 661], [1035, 660], [1035, 658], [1036, 657], [1036, 656], [1033, 653]], "152-164, T:0-1": [[1026, 649], [1026, 651], [1025, 651], [1025, 665], [1035, 665], [1035, 661], [1034, 660], [1034, 659], [1035, 658], [1035, 651], [1034, 651], [1034, 649]]}, "center": {"121-151": [1030, 658], "76-120": [1030, 659], "69-75": [1030, 658], "152-164, T:0-1": [1030, 654]}},
+{"id": "twn1pg", "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": ["argentina", "Republica_Argentina"]}, "path": {"121-151": [[1025, 651], [1025, 665], [1035, 665], [1035, 651]], "76-120": [[1027, 653], [1025, 655], [1025, 665], [1035, 665], [1035, 655], [1033, 653]], "69-75": [[1027, 653], [1025, 656], [1025, 659], [1028, 665], [1034, 665], [1034, 661], [1035, 660], [1035, 658], [1036, 657], [1036, 656], [1033, 653]], "152-164, T:0-1": [[1026, 649], [1026, 651], [1025, 651], [1025, 665], [1035, 665], [1035, 661], [1034, 660], [1034, 659], [1035, 658], [1035, 651], [1034, 651], [1034, 649]]}, "center": {"121-151": [1030, 658], "76-120": [1030, 659], "69-75": [1030, 658], "152-164, T:0-1": [1030, 654]}},
{"id": "twn1fh", "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.\n\nThis is the second Bulgarian flag on the canvas, with national heroes Vasil Levski and Hristo Botev, and former professional football player Dimitar Berbatov (collaboration with r/reddevils).", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"57-78": [[1579, 771], [1579, 690], [1676, 690], [1676, 771], [1656, 771], [1656, 767], [1654, 765], [1651, 765], [1650, 766], [1650, 769], [1639, 769], [1639, 766], [1638, 765], [1635, 765], [1633, 767], [1633, 771]], "95-165, T:0-1": [[1576, 689], [1626, 689], [1626, 690], [1664, 690], [1664, 766], [1576, 766]]}, "center": {"57-78": [1619, 730], "95-165, T:0-1": [1615, 728]}},
{"id": "twn0zr", "name": "Hikari", "description": "One of the two main characters of Arcaea; representing 'Light'", "links": {"website": ["https://arcaea.lowiro.com/en"], "subreddit": ["arcaea"]}, "path": {"109-166, T:0-1": [[1833, 1661], [1834, 1660], [1834, 1659], [1835, 1658], [1835, 1657], [1836, 1656], [1837, 1655], [1838, 1654], [1839, 1654], [1840, 1654], [1841, 1654], [1842, 1654], [1843, 1654], [1844, 1655], [1845, 1656], [1846, 1657], [1846, 1658], [1847, 1659], [1847, 1660], [1848, 1661], [1848, 1662], [1847, 1662], [1847, 1663], [1847, 1664], [1847, 1665], [1847, 1666], [1847, 1667], [1847, 1668], [1847, 1669], [1848, 1670], [1849, 1671], [1848, 1672], [1847, 1673], [1846, 1672], [1845, 1672], [1844, 1673], [1843, 1674], [1843, 1675], [1842, 1676], [1841, 1675], [1840, 1675], [1839, 1676], [1838, 1675], [1838, 1674], [1837, 1673], [1836, 1672], [1835, 1672], [1834, 1673], [1833, 1672], [1832, 1671], [1833, 1670], [1834, 1669], [1834, 1668], [1834, 1667], [1834, 1666], [1834, 1665], [1834, 1664], [1834, 1663], [1834, 1662], [1833, 1662]]}, "center": {"109-166, T:0-1": [1841, 1665]}},
-{"id": "twn05d", "name": "Ñ", "description": "Ñ is a letter used in the Spanish language. On the sides are the flags of Spanish-speaking countries and regions, including Ecuador, Mexico, Dominican Republic, Argentina, Costa Rica, Guatemala, Honduras, Colombia, Spain, Panama, Peru, Cuba, Puerto Rico, Bolivia, Nicaragua, Chile, Venezuela, Uruguay, and Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Spanish_language"], "subreddit": ["argentina", "BOLIVIA", "chile", "Colombia", "costarica", "costa_rica", "dankargentina", "Dominican", "ecuador", "esPlace", "guatemala", "honduras", "Mexico", "MexicoPlace", "Panama", "Paraguay", "Peru", "placecuba", "PlaceMexico", "placevenezuela", "PuertoRico", "Republica_Argentina", "spain", "uruguay", "venezuela", "vnzla", "vzla"]}, "path": {"77-160, T:0-1": [[485, 610], [485, 646], [519, 646], [519, 610]]}, "center": {"77-160, T:0-1": [502, 628]}},
+{"id": "twn05d", "name": "Ñ", "description": "Ñ is a letter used in the Spanish language. On the sides are the flags of Spanish-speaking countries and regions, including Ecuador, Mexico, Dominican Republic, Argentina, Costa Rica, Guatemala, Honduras, Colombia, Spain, Panama, Peru, Cuba, Puerto Rico, Bolivia, Nicaragua, Chile, Venezuela, Uruguay, and Paraguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Spanish_language"], "subreddit": ["argentina", "BOLIVIA", "chile", "Colombia", "costarica", "costa_rica", "Dominican", "ecuador", "esPlace", "guatemala", "honduras", "Mexico", "MexicoPlace", "Panama", "Paraguay", "Peru", "placecuba", "PlaceMexico", "placevenezuela", "PuertoRico", "Republica_Argentina", "spain", "uruguay", "venezuela", "vnzla", "vzla"]}, "path": {"77-160, T:0-1": [[485, 610], [485, 646], [519, 646], [519, 610]]}, "center": {"77-160, T:0-1": [502, 628]}},
{"id": "twmzdz", "name": "Trash Taste", "description": "Trash Taste is a weekly anime podcast run by three anitubers: Connor (CDawgVA), Joey (TheAn1meMan), and Garnt (GiggukAZ). The podcast explores anime, manga, and otaku culture. The white logo represents the main podcast and brand, while the black variant next to it is for After Dark, the YouTube channel that hosts stream VODs and other miscellaneous content.\n\nThe subtitle references Chris Broad, a friend of the show and a regular guest. Beneath are people related to the podcast. From left to right: Ashley, Mudan, Ironmouse, Sydsnap, Akidearest, Ladybeard, Shibuya Kaho, Meilyne, Chris Broad, Garnt, Joey, and Connor.", "links": {"website": ["https://www.youtube.com/channel/UCcmxOGYGF51T1XsqQLewGtQ", "https://en.wikipedia.org/wiki/Trash_Taste"], "subreddit": ["TrashTaste"]}, "path": {"1-166, T:0-1": [[0, 528], [0, 589], [78, 589], [78, 528]]}, "center": {"1-166, T:0-1": [14, 550]}},
{"id": "twmxrw", "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.\n\nThis art depicts the Thousand Sunny ship from One Piece. There is also a floating island called Onigashima in the background, and the One Piece logo on the far left. The smaller boat next to the Sunny is called the Mini Merry, a smaller ship based on the first One Piece ship.", "links": {"website": ["https://en.wikipedia.org/wiki/One_Piece"], "subreddit": ["OnePiece"]}, "path": {"57-166, T:0-1": [[1544, 113], [1543, 115], [1542, 115], [1541, 118], [1539, 120], [1540, 138], [1536, 141], [1533, 141], [1533, 138], [1524, 134], [1525, 118], [1523, 116], [1523, 158], [1525, 156], [1529, 154], [1532, 155], [1535, 155], [1534, 152], [1534, 148], [1537, 146], [1540, 143], [1542, 142], [1546, 145], [1549, 146], [1550, 147], [1550, 151], [1550, 153], [1551, 153], [1551, 155], [1553, 155], [1554, 160], [1558, 165], [1615, 165], [1615, 114]]}, "center": {"57-166, T:0-1": [1576, 139]}},
{"id": "twmxnx", "name": "Hollow Knight: Silksong", "description": "Hollow Knight: Silksong is the in-development sequel to the game Hollow Knight, both developed by Team Cherry. This art depicts Hornet, main character of Silksong. Also depicted is a small version of a grub and The Knight from the original Hollow Knight game. \"Git gud\" text is shared with the nearby Elden Ring art.\n\nThis art was created at the beginning of r/place, and survived the entire time.", "links": {"website": ["https://www.hollowknightsilksong.com/", "https://en.wikipedia.org/wiki/Hollow_Knight:_Silksong"], "subreddit": ["HKPlace", "HollowKnight"], "discord": ["RKWC7ZUVnz"]}, "path": {"3-24": [[225, 343], [225, 420], [299, 420], [299, 343]], "25-165, T:0-1": [[299, 343], [225, 343], [225, 385], [213, 385], [213, 394], [228, 394], [228, 396], [225, 399], [225, 416], [229, 420], [299, 420]]}, "center": {"3-24": [262, 382], "25-165, T:0-1": [262, 409]}},
{"id": "twmxmf", "name": "r/GreenLattice", "description": "A green lattice background created to give small pixel artists a place to build their art.\n\nThe r/GreenLattice sign was repeatedly vandalized by the community at the similarly named \"r/GreenLettuce\" to read their subreddit's name instead. This effort eventually failed.", "links": {"subreddit": ["GreenLattice"]}, "path": {"129-162": [[990, 365], [990, 376], [988, 376], [988, 408], [1008, 408], [1008, 412], [1010, 414], [1010, 421], [1034, 421], [1034, 426], [1033, 427], [1029, 427], [1029, 426], [1001, 426], [1001, 431], [1000, 431], [1000, 439], [1002, 439], [1002, 453], [1003, 453], [1003, 455], [1020, 455], [1020, 465], [1073, 465], [1073, 449], [1074, 448], [1074, 441], [1076, 441], [1078, 439], [1078, 433], [1080, 433], [1080, 431], [1088, 431], [1098, 441], [1101, 441], [1103, 445], [1129, 445], [1130, 443], [1160, 443], [1160, 437], [1168, 437], [1168, 461], [1118, 461], [1118, 465], [1102, 465], [1102, 497], [1078, 497], [1076, 502], [1076, 505], [1082, 500], [1086, 500], [1091, 503], [1098, 503], [1098, 505], [1101, 505], [1104, 511], [1104, 523], [1102, 523], [1102, 531], [1104, 531], [1104, 545], [1106, 545], [1106, 540], [1109, 537], [1114, 537], [1115, 538], [1122, 538], [1124, 545], [1130, 545], [1130, 509], [1125, 509], [1123, 511], [1119, 511], [1116, 508], [1116, 497], [1124, 476], [1113, 465], [1124, 465], [1124, 461], [1164, 461], [1164, 465], [1168, 465], [1168, 466], [1158, 476], [1158, 481], [1159, 481], [1166, 478], [1166, 473], [1172, 473], [1172, 465], [1174, 465], [1174, 464], [1170, 460], [1170, 453], [1168, 453], [1168, 449], [1169, 449], [1176, 439], [1189, 439], [1193, 443], [1196, 443], [1196, 433], [1192, 433], [1192, 403], [1166, 403], [1164, 408], [1164, 416], [1154, 416], [1154, 413], [1124, 413], [1124, 393], [1100, 393], [1100, 415], [1076, 415], [1076, 421], [1062, 421], [1062, 419], [1052, 419], [1052, 421], [1032, 421], [1032, 413], [1034, 411], [1034, 407], [1032, 405], [1032, 400], [1034, 400], [1034, 365]], "113-128": [[964, 365], [964, 407], [966, 407], [966, 377], [988, 377], [988, 381], [998, 381], [998, 383], [1010, 383], [1010, 384], [1032, 384], [1032, 421], [1013, 421], [1007, 427], [1000, 427], [1000, 431], [996, 431], [992, 440], [992, 445], [1004, 445], [1004, 447], [1018, 447], [1018, 457], [1026, 457], [1026, 450], [1031, 445], [1039, 445], [1044, 450], [1039, 469], [1060, 469], [1064, 466], [1064, 453], [1073, 453], [1073, 446], [1080, 431], [1086, 431], [1086, 433], [1092, 433], [1092, 439], [1102, 445], [1126, 445], [1128, 443], [1160, 443], [1160, 440], [1168, 440], [1168, 405], [1192, 405], [1192, 403], [1165, 403], [1164, 408], [1164, 417], [1154, 417], [1154, 413], [1123, 413], [1123, 407], [1112, 407], [1112, 409], [1121, 409], [1121, 417], [1088, 417], [1088, 421], [1076, 421], [1076, 411], [1050, 411], [1050, 413], [1043, 413], [1043, 419], [1032, 419], [1032, 399], [1034, 399], [1034, 365]], "104-106": [[964, 364], [964, 496], [1003, 496], [1003, 510], [1061, 510], [1061, 497], [1064, 492], [1068, 489], [1078, 489], [1078, 465], [1074, 462], [1074, 445], [1076, 445], [1081, 432], [1086, 432], [1090, 434], [1090, 441], [1100, 443], [1102, 446], [1102, 465], [1116, 465], [1116, 451], [1126, 451], [1126, 443], [1158, 443], [1158, 445], [1162, 445], [1162, 409], [1154, 409], [1154, 383], [1139, 383], [1139, 385], [1152, 385], [1152, 413], [1131, 413], [1124, 406], [1124, 393], [1118, 393], [1118, 385], [1080, 385], [1080, 367], [1034, 367], [1034, 384], [1024, 384], [1024, 383], [1010, 383], [1010, 364]], "87-103": [[964, 364], [964, 441], [991, 441], [991, 465], [1102, 465], [1102, 461], [1162, 461], [1162, 400], [1156, 400], [1156, 387], [1166, 387], [1166, 379], [1174, 379], [1174, 373], [1180, 373], [1180, 360], [1199, 360], [1199, 347], [1188, 347], [1188, 327], [1136, 327], [1136, 361], [1121, 361], [1113, 352], [1107, 352], [1098, 361], [1055, 361], [1052, 364]], "70-86": [[964, 365], [964, 441], [991, 441], [991, 465], [1124, 465], [1124, 461], [1179, 461], [1187, 451], [1198, 451], [1198, 444], [1260, 444], [1260, 487], [1301, 487], [1301, 486], [1336, 486], [1348, 481], [1349, 441], [1342, 403], [1316, 403], [1316, 404], [1243, 404], [1239, 414], [1239, 444], [1198, 444], [1198, 433], [1192, 433], [1192, 409], [1191, 409], [1186, 413], [1182, 413], [1180, 409], [1180, 359], [1205, 359], [1205, 345], [1188, 345], [1188, 312], [1167, 312], [1167, 322], [1136, 322], [1136, 360], [1119, 360], [1113, 352], [1107, 352], [1096, 361], [1053, 361], [1049, 365]], "56-69": [[964, 365], [964, 441], [992, 441], [992, 465], [1124, 465], [1124, 461], [1168, 461], [1168, 473], [1174, 473], [1174, 467], [1198, 468], [1198, 433], [1192, 433], [1192, 404], [1180, 404], [1180, 389], [1153, 389], [1140, 375], [1140, 345], [1144, 345], [1144, 331], [1136, 323], [1129, 323], [1126, 328], [1126, 343], [1140, 343], [1140, 359], [1135, 359], [1129, 349], [1125, 349], [1118, 357], [1113, 352], [1107, 352], [1097, 361], [1051, 361], [1047, 365]], "46-55": [[952, 309], [952, 367], [964, 367], [964, 425], [966, 425], [966, 441], [991, 441], [991, 459], [984, 459], [984, 465], [1000, 465], [1000, 309]], "25-45": [[947, 285], [942, 293], [942, 355], [960, 368], [960, 419], [922, 419], [922, 408], [904, 409], [904, 421], [962, 421], [962, 483], [954, 483], [954, 489], [958, 489], [958, 499], [924, 499], [924, 491], [920, 491], [920, 495], [918, 495], [918, 497], [912, 497], [912, 552], [917, 557], [922, 552], [922, 543], [934, 543], [934, 519], [950, 519], [950, 517], [958, 517], [958, 509], [1000, 509], [1000, 285]], "11-24": [[954, 283], [954, 367], [960, 367], [960, 419], [922, 419], [922, 375], [902, 375], [902, 371], [850, 371], [850, 409], [870, 409], [870, 427], [876, 427], [882, 443], [884, 443], [884, 451], [867, 451], [852, 457], [852, 506], [882, 457], [890, 457], [890, 449], [895, 449], [901, 457], [906, 461], [906, 491], [926, 509], [926, 515], [924, 515], [924, 539], [922, 542], [920, 548], [920, 553], [930, 553], [930, 543], [932, 543], [932, 526], [937, 519], [958, 519], [958, 539], [960, 539], [960, 471], [1000, 471], [1000, 281], [954, 281]], "1-10": [[926, 279], [926, 311], [952, 311], [952, 367], [960, 367], [960, 419], [922, 419], [922, 371], [850, 371], [850, 409], [870, 409], [870, 423], [886, 445], [884, 447], [884, 451], [870, 451], [870, 455], [885, 455], [891, 450], [894, 450], [906, 462], [906, 483], [912, 483], [912, 421], [960, 421], [960, 483], [912, 483], [912, 487], [930, 487], [930, 511], [943, 500], [946, 500], [951, 505], [951, 512], [954, 514], [955, 519], [960, 519], [960, 510], [967, 503], [982, 503], [991, 513], [992, 505], [1000, 505], [1000, 279]], "163-165, T:0-1": [[988, 388], [988, 408], [1008, 408], [1008, 414], [1010, 414], [1010, 421], [1030, 421], [1030, 427], [1016, 427], [1016, 431], [1018, 431], [1018, 441], [1002, 441], [1002, 445], [1026, 445], [1026, 453], [1002, 453], [1002, 455], [1020, 455], [1020, 465], [1074, 465], [1074, 453], [1072, 451], [1072, 447], [1076, 444], [1080, 431], [1085, 431], [1087, 433], [1089, 433], [1090, 434], [1090, 436], [1092, 441], [1100, 441], [1100, 443], [1102, 443], [1102, 445], [1126, 445], [1126, 448], [1128, 450], [1128, 461], [1118, 461], [1118, 465], [1114, 465], [1114, 473], [1110, 473], [1110, 491], [1119, 491], [1122, 484], [1122, 474], [1117, 469], [1114, 469], [1114, 465], [1124, 465], [1124, 461], [1136, 461], [1136, 452], [1145, 452], [1145, 447], [1150, 443], [1156, 443], [1161, 447], [1168, 447], [1176, 437], [1192, 437], [1192, 440], [1196, 444], [1196, 433], [1190, 433], [1191, 437], [1179, 437], [1181, 433], [1175, 433], [1175, 437], [1177, 437], [1168, 447], [1160, 447], [1160, 419], [1166, 419], [1166, 417], [1192, 417], [1192, 403], [1166, 403], [1166, 407], [1154, 407], [1154, 385], [1081, 385], [1081, 389], [1100, 389], [1100, 415], [1078, 415], [1078, 421], [1062, 421], [1062, 413], [1052, 413], [1052, 421], [1010, 421], [1010, 414], [1008, 414], [1008, 408], [1010, 405], [1010, 388]]}, "center": {"129-162": [1048, 443], "113-128": [1057, 433], "104-106": [1019, 439], "87-103": [1076, 413], "70-86": [1104, 413], "56-69": [1101, 413], "46-55": [976, 333], "25-45": [971, 340], "11-24": [936, 451], "1-10": [895, 398], "163-165, T:0-1": [1128, 417]}},
{"id": "twmvzq", "name": "Nurture", "description": "Nurture is a 2021 album by American electronic musician, producer, and DJ Porter Robinson. The stylized 'N' and kaomoji were recurring icons throughout the album's promotion.\n\nThis art was made in collaboration with the Madeon community below.", "links": {"website": ["https://en.wikipedia.org/wiki/Nurture_(album)", "https://porterrobinson.com/"], "subreddit": ["porterrobinson"], "discord": ["PorterRobinson"]}, "path": {"57-166, T:0-1": [[1800, 79], [1800, 91], [1842, 91], [1842, 79]]}, "center": {"57-166, T:0-1": [1821, 85]}},
{"id": "twmvvp", "name": "TagPro", "description": "TagPro is a free-to-play web-based capture the flag game. It is banned from r/AskReddit (no, really).\n\nThis art was originally located above the first flag of Canada, until it was invaded by Canada and Chile. Some users repeatedly tried to change the text \"TagPro\" to \"FagPoo\".", "links": {"website": ["https://tagpro.gg", "https://en.wikipedia.org/wiki/TagPro"], "subreddit": ["TagPro"]}, "path": {"67-103": [[195, 449], [230, 484], [244, 484], [244, 492], [260, 492], [299, 453], [299, 449]], "12-60": [[195, 449], [230, 484], [244, 484], [244, 498], [256, 498], [256, 496], [299, 453], [299, 449]], "1-11, 61-66": [[195, 449], [244, 498], [254, 498], [299, 453], [299, 449]], "116-166, T:0-1": [[1731, 1918], [1731, 1952], [1760, 1952], [1760, 1938], [1774, 1938], [1774, 1918]]}, "center": {"67-103": [256, 469], "12-60": [256, 468], "1-11, 61-66": [249, 471], "116-166, T:0-1": [1746, 1933]}},
-{"id": "twmvou", "name": "Cosmere", "description": "The connected universe by author Brandon Sanderson", "links": {"website": ["https://www.brandonsanderson.com/"], "subreddit": ["comsere"]}, "path": {"1-165, T:0-1": [[861, 924], [863, 926], [901, 924], [901, 974], [861, 974], [862, 941]]}, "center": {"1-165, T:0-1": [881, 950]}},
+{"id": "twmvou", "name": "Cosmere", "description": "The connected universe by author Brandon Sanderson", "links": {"website": ["https://www.brandonsanderson.com/"], "subreddit": ["placeCosmere", "Cosmere"]}, "path": {"1-165, T:0-1": [[861, 924], [863, 926], [901, 924], [901, 974], [861, 974], [862, 941]]}, "center": {"1-165, T:0-1": [881, 950]}},
{"id": "twmuos", "name": "Solid Snake", "description": "A codec image featuring Solid Snake, the iconic spy protagonist from Hideo Kojima's Metal Gear games. This image is from the game Metal Gear Solid.\n\nThis art was created by the Metal Gear Solid community. It went through various attacks, including a French streamer and two other major invasions. It was allied with the Baltics, Honkai Impact 3rd, Dune, Devil May Cry, Sabaton, GingerPale, and Brazil.", "links": {"website": ["https://metalgear.fandom.com/wiki/Solid_Snake", "https://en.wikipedia.org/wiki/Solid_Snake"], "subreddit": ["metalgearsolid"]}, "path": {"58-166, T:0-1": [[1956, 131], [1980, 131], [1980, 162], [1956, 162]]}, "center": {"58-166, T:0-1": [1968, 147]}},
{"id": "twmuoq", "name": "I Heart Pat Bev", "description": "a meme from Minnesota Timberwolves basketball twitter. Pat Bev is short for Patrick Beverley, a basketball player for the wolves known for being unhinged on the basketball court, and widely despised by all the teams he doesn't play for. Based off of the design by @jakesgraphs on twitter", "links": {"subreddit": ["timberwolves"]}, "path": {"109-165, T:0-1": [[418, 1373], [414, 1372], [437, 1373], [438, 1397], [416, 1396], [416, 1372]]}, "center": {"109-165, T:0-1": [427, 1385]}},
{"id": "twmucj", "name": "Yorkshire Tea", "description": "Yorkshire Tea is a popular brand of tea in the United Kingdom, originating from the English county of Yorkshire\n\nThis art was originally constructed by streamer TheSpiffingBrit during a Twitch stream, and afterwards reconstructed and maintained by r/ukplace. The logo was given an acknowledgement by Yorkshire Tea's official Twitter account.", "links": {"website": ["http://www.yorkshiretea.co.uk/", "https://en.wikipedia.org/wiki/Yorkshire_Tea"], "subreddit": ["thespiffingbrit", "ukplace", "unitedkingdom"]}, "path": {"57": [[576, 558], [576, 587], [618, 587], [618, 558]], "130-165, 58-120, T:0-1": [[618, 557], [618, 587], [661, 587], [661, 557]]}, "center": {"57": [597, 573], "130-165, 58-120, T:0-1": [640, 572]}},
@@ -528,7 +528,7 @@
{"id": "twmsav", "name": "Gigachad Emote DGG", "description": "Popular Emote created by the DGG community together with the Destiny logo.", "links": {"website": ["https://destiny.gg"], "subreddit": ["destiny"]}, "path": {"109-165, T:0-1": [[1875, 1430], [1959, 1430], [1959, 1561], [1954, 1556], [1943, 1558], [1939, 1554], [1926, 1560], [1875, 1561]]}, "center": {"109-165, T:0-1": [1917, 1495]}},
{"id": "twmrxn", "name": "Elite Dangerous", "description": "Elite Dangerous is a massively multiplayer online (MMO) space simulation game set in a 1:1-scale representation of the Milky Way galaxy.\n\nThe Elite Dangerous and Star Citizen communities allied together to create both of their logos.", "links": {"website": ["https://www.elitedangerous.com/", "https://en.wikipedia.org/wiki/Elite_Dangerous"], "subreddit": ["EliteDangerous"]}, "path": {"62-166, T:0-1": [[1722, 86], [1720, 88], [1720, 89], [1722, 91], [1722, 94], [1724, 97], [1724, 101], [1723, 101], [1723, 102], [1724, 104], [1733, 113], [1733, 115], [1736, 115], [1736, 113], [1745, 104], [1746, 102], [1746, 95], [1747, 94], [1747, 91], [1749, 89], [1749, 88], [1747, 86], [1746, 86], [1740, 91], [1729, 91]]}, "center": {"62-166, T:0-1": [1735, 101]}},
{"id": "twmrnx", "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\".\n\nThe face on the left is DeepFuckingValue, the original founding father of GME's short squeeze. The face on the right is Ryan Cohen, an entrepreneur who is the CEO of Chewy and the Chairman of GameStop. He owns 11.9% of all total shares of the company.", "links": {"subreddit": ["Superstonk"]}, "path": {"1-165, T:0-1": [[774, 738], [774, 856], [906, 856], [906, 738]]}, "center": {"1-165, T:0-1": [840, 850]}},
-{"id": "twmr82", "name": "gwa", "description": "gwa is a server emote for the Discord server Meta Studio. It is a cat and a kind deity. Please don't confuse it. The 'g' should not be capitalized.", "links": {"subreddit": ["gwaplace"], "discord": ["Pf6EEJ84PK"]}, "path": {"5-11": [[192, 290], [190, 292], [189, 295], [189, 299], [192, 302], [200, 302], [201, 301], [205, 301], [205, 294], [203, 294], [200, 291]], "56-60": [[1154, 81], [1152, 83], [1151, 86], [1151, 90], [1156, 94], [1163, 94], [1167, 92], [1168, 89], [1168, 86], [1167, 85], [1167, 83], [1165, 81], [1163, 83], [1156, 83]], "71-88": [[92, 62], [92, 65], [91, 66], [91, 69], [94, 72], [96, 73], [102, 73], [105, 71], [106, 69], [106, 67], [105, 66], [105, 62], [104, 62], [102, 64], [95, 64]], "91-166, T:0-1": [[1662, 519], [1664, 519], [1664, 520], [1665, 520], [1665, 521], [1672, 521], [1672, 520], [1673, 520], [1673, 519], [1675, 519], [1675, 522], [1676, 522], [1676, 525], [1677, 525], [1677, 528], [1676, 528], [1676, 529], [1673, 529], [1673, 530], [1665, 530], [1665, 529], [1663, 529], [1663, 528], [1662, 528], [1662, 527], [1661, 527], [1661, 523], [1662, 523]]}, "center": {"5-11": [195, 296], "56-60": [1160, 89], "71-88": [99, 69], "91-166, T:0-1": [1669, 526]}},
+{"id": "twmr82", "name": "gwa", "description": "gwa is a server emote for the Discord server Meta Studio. It is a cat and a kind deity. Please don't confuse it. The 'g' should not be capitalized.", "links": {"subreddit": ["gwaplace"], "discord": ["Pf6EEJ84PK"]}, "path": {"5-11": [[192, 290], [190, 292], [189, 295], [189, 299], [192, 302], [200, 302], [201, 301], [205, 301], [205, 294], [203, 294], [200, 291]], "56-65": [[1154, 81], [1152, 83], [1151, 86], [1151, 90], [1156, 94], [1163, 94], [1167, 92], [1168, 89], [1168, 86], [1167, 85], [1167, 83], [1165, 81], [1163, 83], [1156, 83]], "71-88": [[92, 62], [92, 65], [91, 66], [91, 69], [94, 72], [96, 73], [102, 73], [105, 71], [106, 69], [106, 67], [105, 66], [105, 62], [104, 62], [102, 64], [95, 64]], "91-166, T:0-1": [[1662, 519], [1664, 519], [1664, 520], [1665, 520], [1665, 521], [1672, 521], [1672, 520], [1673, 520], [1673, 519], [1675, 519], [1675, 522], [1676, 522], [1676, 525], [1677, 525], [1677, 528], [1676, 528], [1676, 529], [1673, 529], [1673, 530], [1665, 530], [1665, 529], [1663, 529], [1663, 528], [1662, 528], [1662, 527], [1661, 527], [1661, 523], [1662, 523]]}, "center": {"5-11": [195, 296], "56-65": [1160, 89], "71-88": [99, 69], "91-166, T:0-1": [1669, 526]}},
{"id": "twmr69", "name": "Koibu", "description": "Koibu is a professional dungeon master for the tabletop game Dungeons & Dragons. He is associated with Twitch streamer Destiny's DGG community.", "links": {"website": ["https://regalgoblins.com/"], "subreddit": ["Koibu"]}, "path": {"97-166, T:0-1": [[1594, 40], [1589, 45], [1589, 65], [1595, 71], [1596, 71], [1597, 70], [1597, 61], [1600, 61], [1600, 70], [1601, 71], [1602, 71], [1608, 65], [1608, 60], [1603, 55], [1608, 50], [1601, 43], [1600, 43], [1600, 49], [1597, 52], [1597, 40]]}, "center": {"97-166, T:0-1": [1594, 56]}},
{"id": "twmqp5", "name": "OMORI Title Screen", "description": "Art of the OMORI title screen, originally made by reddit user u/Radnos_ but modified to fit in the canvas. The main character, Sunny, is shown in the background, as well as Japanese text, 'Oyasumi'.", "links": {"subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"109-166, T:0-1": [[1700, 1496], [1852, 1496], [1852, 1553], [1700, 1553]]}, "center": {"109-166, T:0-1": [1776, 1525]}},
{"id": "twmq7c", "name": "Little Princess", "description": "One of the main characters in the game Guardian Tales. Bright, cheerful, and ever helpful, she is the heir to the throne of Kanterbury. She gives you gifts daily in Heavenhold, and does not like bell peppers.", "links": {"website": ["https://guardian-tales.fandom.com/wiki/Little_Princess"], "subreddit": ["GuardianTales"]}, "path": {"125-166, T:0-1": [[701, 214], [694, 221], [694, 234], [709, 234], [709, 221], [702, 214]]}, "center": {"125-166, T:0-1": [702, 225]}},
@@ -580,7 +580,7 @@
{"id": "twmelt", "name": "Snowdrop the Opossum", "description": "Snowdrop is an opossum and the boon companion of Avery Kelly. She always says the opposite of what she means and is an important character in the web serial Pale, written by Wildbow.\n\nThis art was created here by the Parahumans community in collaboration with the Toki Pona community. It is also a reference to the joke Toki Pona word \"kijetesantakalu\", meaning \"raccoon-like animal\".", "links": {"website": ["https://pact-web-serial.fandom.com/wiki/Snowdrop"], "subreddit": ["Parahumans", "tokipona"]}, "path": {"5-10": [[689, 343], [684, 347], [687, 349], [690, 350], [697, 350], [699, 347], [699, 345], [696, 345], [694, 343]], "106-166, T:0-1": [[1702, 219], [1702, 222], [1701, 223], [1701, 226], [1702, 226], [1704, 224], [1705, 224], [1706, 225], [1707, 225], [1709, 223], [1708, 222], [1709, 221], [1709, 219], [1707, 219], [1706, 220], [1705, 220], [1704, 219]]}, "center": {"5-10": [692, 347], "106-166, T:0-1": [1704, 222]}},
{"id": "twme8p", "name": "Tottenham Hotspur F.C.", "description": "Tottenham Hotspur F.C., also known as Tottenham or Spurs, is an English professional association football club based in North London that competes in the Premier League, the top flight of English football.\n\nTottenham's emblem is a cockerel standing upon a football, with the Latin motto \"Audere est Facere\" (\"To Dare is to Do\").", "links": {"website": ["https://www.tottenhamhotspur.com/", "https://en.wikipedia.org/wiki/Tottenham_Hotspur_F.C."], "subreddit": ["coys"]}, "path": {"13-18": [[139, 39], [139, 64], [160, 64], [160, 43], [151, 43], [151, 39]], "58-166, T:0-1": [[1684, 420], [1714, 420], [1714, 467], [1684, 467]]}, "center": {"13-18": [149, 53], "58-166, T:0-1": [1699, 444]}},
{"id": "twmdw6", "name": "Sylveon", "description": "Sylveon is a Fairy-type Pokémon from the Generation 6 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"]}, "path": {"71-165, T:0-1": [[662, 451], [662, 449], [661, 448], [662, 447], [661, 446], [662, 445], [663, 444], [663, 443], [662, 442], [661, 442], [661, 439], [662, 439], [662, 438], [664, 438], [664, 437], [666, 437], [666, 436], [667, 436], [669, 435], [670, 435], [670, 436], [671, 436], [671, 441], [671, 442], [670, 442], [670, 444], [672, 442], [673, 442], [673, 443], [674, 442], [675, 441], [675, 440], [676, 440], [676, 439], [678, 439], [678, 438], [681, 438], [681, 439], [682, 439], [682, 443], [681, 443], [682, 444], [681, 445], [681, 446], [680, 446], [680, 447], [679, 447], [678, 448], [680, 448], [682, 447], [682, 445], [683, 445], [683, 443], [684, 443], [684, 442], [685, 442], [686, 442], [686, 443], [687, 443], [688, 443], [688, 444], [689, 444], [689, 447], [689, 448], [687, 448], [687, 449], [686, 449], [686, 450], [685, 450], [685, 451], [683, 451], [683, 454], [682, 454], [682, 455], [681, 455], [682, 456], [683, 456], [683, 457], [684, 457], [684, 456], [688, 456], [688, 457], [689, 457], [689, 458], [689, 459], [688, 459], [688, 460], [686, 460], [686, 461], [682, 461], [681, 461], [681, 460], [680, 461], [680, 463], [680, 464], [679, 464], [679, 465], [677, 465], [676, 465], [676, 464], [675, 464], [675, 462], [674, 461], [673, 461], [673, 462], [673, 463], [672, 463], [672, 464], [672, 465], [671, 465], [671, 466], [670, 466], [667, 466], [666, 465], [666, 464], [667, 464], [667, 463], [667, 464], [667, 463], [666, 462], [666, 461], [665, 460], [664, 461], [662, 461], [661, 461], [661, 460], [662, 459], [663, 459], [662, 458], [661, 458], [661, 454], [662, 454], [662, 453], [661, 453], [661, 449]]}, "center": {"71-165, T:0-1": [671, 453]}},
-{"id": "twmdtg", "name": "FurfSky Reborn", "description": "A neon logo for the Hypixel Skyblock Minecraft texture pack, FurfSky Reborn.", "links": {"website": ["https://furfsky.net/"]}, "path": {"56-166, T:0-1": [[1281, 829], [1240, 829], [1240, 806], [1281, 806]]}, "center": {"56-166, T:0-1": [1261, 818]}},
+{"id": "twmdtg", "name": "FurfSky Reborn", "description": "FurfSky Reborn (FSR) is a texture pack for the game Minecraft for the server Hypixel Skyblock. This art features a neon FSR logo.", "links": {"website": ["https://furfsky.net/"]}, "path": {"56-166, T:0-1": [[1239, 805], [1239, 830], [1282, 830], [1282, 806], [1278, 806], [1277, 805]]}, "center": {"56-166, T:0-1": [1261, 818]}},
{"id": "twmdkf", "name": "JBOIZ/GioJ", "description": "Many have asked \"what is JBOIZ?\", but only true JBOIZ know the answer to that.", "links": {}, "path": {"17-37": [[24, 295], [50, 295], [50, 312], [24, 312]], "38-55": [[24, 307], [50, 307], [50, 312], [24, 312]], "11-16": [[0, 295], [50, 295], [50, 305], [0, 305]], "56-165, T:0-1": [[1974, 113], [1999, 113], [1999, 131], [1974, 131]]}, "center": {"17-37": [37, 304], "38-55": [37, 310], "11-16": [25, 300], "56-165, T:0-1": [1987, 122]}},
{"id": "twmdh3", "name": "Atrioc", "description": "Atrioc is a Twitch streamer and YouTuber.\n\nThis section includes pixel art for The Ghost (Atrioc's Fall Guys character), the Enron logo, Burgzy (Atrioc's VTuber character), the clown (Atrioc's signature Hitman outfit), S3K (a group of Reddit users that help make content for him), The Yard (a podcast that includes a lot of his friends), and much more.", "links": {"website": ["https://twitch.tv/atrioc"], "subreddit": ["atrioc"]}, "path": {"70-92": [[1820, 158], [1820, 171], [1803, 171], [1803, 177], [1802, 177], [1802, 206], [1829, 206], [1829, 235], [1828, 235], [1828, 245], [1841, 245], [1841, 176], [1872, 176], [1872, 156], [1839, 156], [1839, 158]], "93-109": [[1820, 159], [1820, 171], [1805, 171], [1805, 206], [1841, 206], [1841, 176], [1875, 176], [1875, 156], [1836, 156], [1836, 158]], "56-63": [[1803, 171], [1803, 175], [1801, 177], [1801, 184], [1803, 187], [1811, 187], [1811, 186], [1841, 186], [1841, 171]], "64-69": [[1803, 171], [1803, 177], [1802, 177], [1802, 187], [1805, 187], [1805, 186], [1809, 186], [1809, 198], [1811, 198], [1811, 206], [1832, 206], [1832, 186], [1841, 186], [1841, 171]], "110-166, T:0-1": [[1809, 298], [1817, 298], [1821, 292], [1825, 292], [1828, 298], [1843, 298], [1845, 289], [1853, 282], [1854, 273], [1864, 264], [1864, 252], [1866, 245], [1859, 238], [1847, 238], [1842, 235], [1840, 235], [1840, 220], [1840, 174], [1874, 175], [1874, 157], [1839, 157], [1839, 159], [1821, 159], [1821, 172], [1806, 172], [1806, 239], [1813, 239], [1814, 244], [1809, 249], [1808, 254], [1800, 266], [1796, 282], [1803, 285], [1805, 291], [1803, 295]]}, "center": {"70-92": [1823, 189], "93-109": [1823, 188], "56-63": [1833, 179], "64-69": [1820, 183], "110-166, T:0-1": [1830, 267]}},
{"id": "twmclv", "name": "Titanfall 2", "description": "Titanfall 2 is a first-person shooter video game. This art depicts the character BT-7274 from the game with the Titanfall 2 logo above him.", "links": {"website": ["https://en.wikipedia.org/wiki/Titanfall_2"], "subreddit": ["titanfall2", "titanfall"]}, "path": {"109-166, T:0-1": [[1522, 1917], [1522, 1985], [1570, 1985], [1570, 1933], [1562, 1933], [1562, 1931], [1559, 1931], [1559, 1919], [1570, 1919], [1570, 1917]]}, "center": {"109-166, T:0-1": [1545, 1952]}},
@@ -595,9 +595,9 @@
{"id": "twmb92", "name": "The Neverland Castle", "description": "The logo of the kpop girl group (G)I-DLE's fandom Neverland featuring the group member's colours", "links": {"subreddit": ["GIDLE"]}, "path": {"56-166, T:0-1": [[1492, 937], [1462, 937], [1462, 912], [1491, 912], [1491, 917], [1492, 917]]}, "center": {"56-166, T:0-1": [1477, 925]}},
{"id": "twmayf", "name": "Klei Entertainment", "description": "Klei Entertainment is a Canadian video game development company. Their best-known titles include Don't Starve Together and Oxygen Not Included.\n\nThis art was made by the Chester/Place Discord server.", "links": {"website": ["https://www.klei.com/", "https://en.wikipedia.org/wiki/Klei_Entertainment"], "subreddit": ["dontstarve"]}, "path": {"133-164, T:0-1": [[1060, 510], [1060, 530], [1075, 530], [1075, 510]]}, "center": {"133-164, T:0-1": [1068, 520]}},
{"id": "twmas3", "name": "r/sadboys", "description": "r/sadboys is a subreddit for the fans of the Sad Boys and Drain Gang music collectives. The emblem depicts two logos of the collectives: SBE for Sad Boys Entertainment on top, and DG for Drain Gang on the bottom.", "links": {"subreddit": ["sadboys"]}, "path": {"59-104": [[1525, 352], [1525, 407], [1528, 412], [1533, 414], [1567, 414], [1570, 412], [1593, 412], [1593, 391], [1574, 391], [1574, 352], [1563, 352], [1563, 351], [1537, 351], [1537, 352]], "105-165, T:0-1": [[1525, 352], [1525, 414], [1568, 414], [1568, 421], [1624, 421], [1624, 411], [1593, 411], [1593, 391], [1574, 391], [1574, 352], [1561, 352], [1561, 351], [1538, 351], [1538, 352]]}, "center": {"59-104": [1549, 376], "105-165, T:0-1": [1549, 386]}},
-{"id": "twmard", "name": "Dreamcatcher", "description": "Dreamcatcher is a South Korean girl group notable for their more rock-based songs.", "links": {"website": ["https://dreamcatcher.kr/", "https://en.wikipedia.org/wiki/Dreamcatcher_(group)"], "subreddit": ["dreamcatcher"]}, "path": {"61-166, T:0-1": [[1588, 869], [1588, 879], [1669, 879], [1669, 869]]}, "center": {"61-166, T:0-1": [1629, 874]}},
+{"id": "twmard", "name": "Dreamcatcher", "description": "Dreamcatcher is a South Korean girl group notable for their rock-based songs and dark theme.", "links": {"website": ["https://dreamcatcher.kr/", "https://en.wikipedia.org/wiki/Dreamcatcher_(group)"], "subreddit": ["dreamcatcher", "kpop"]}, "path": {"61-166, T:0-1": [[1588, 869], [1588, 879], [1670, 879], [1670, 869]]}, "center": {"61-166, T:0-1": [1664, 874]}},
{"id": "twmajs", "name": "Yume Nikki", "description": "Yume Nikki is a 2004 cult-classic psychological surreal-horror adventure game made in RPG Maker by Japanese developer Kikiyama. It is regarded as the start of a possible new genre of games and has influenced several popular indie games throughout the years. In the game, players explore the dreams of the protagonist Madotsuki (center), where they encounter a number of surreal creatures and locations. Standing next to Madotsuki are the main characters from two popular Yume Nikki fangames: the girl to the left is Sabitsuki from .hack and the girl to the right is Urotsuki from Yume 2kki.\n\nIn addition to the sprites of the most recognizable protagonists in the fandom, this art features references to several other Yume Nikki fangames. The red symbol between Sabitsuki and Madotsuki is a reference to Collective Unconscious, the yellow and purple square is a reference to Uneven Dream, the green zip is a reference to Answered Prayers, and the key is a reference to Amillusion. There are also references to Lcd Dem and (indirectly) Dreaming Bad.", "links": {"website": ["https://yumenikki.fandom.com/wiki/Yume_Nikki", "https://en.wikipedia.org/wiki/Yume_Nikki"], "subreddit": ["yumenikki"]}, "path": {"65-105": [[1206, 105], [1206, 123], [1208, 123], [1208, 135], [1213, 135], [1213, 134], [1248, 134], [1248, 106], [1213, 106], [1213, 105]], "106-166, T:0-1": [[1197, 104], [1213, 104], [1213, 107], [1248, 107], [1248, 134], [1197, 134]]}, "center": {"65-105": [1227, 120], "106-166, T:0-1": [1234, 121]}},
-{"id": "twma1z", "name": "(G)I-DLE", "description": "The logo of the K-pop girl group (G)I-DLE featuring their light stick.", "links": {"website": ["https://en.wikipedia.org/wiki/(G)I-dle"], "subreddit": ["GIDLE"]}, "path": {"56-166, T:0-1": [[1696, 879], [1670, 879], [1670, 869], [1696, 869]]}, "center": {"56-166, T:0-1": [1683, 874]}},
+{"id": "twma1z", "name": "(G)I-DLE", "description": "(G)I-DLE (Pronounced \"Gee-idle\" or \"idle\") is a K-pop girl group under CUBE Entertainment. Since their debut in 2018, they have been a formidable force in the K-pop industry with their notable releases \"Latata\", \"Oh My God\", and \"Tomboy\". Their most recent album \"I Never Die\" achieved a \"Perfect All Kill\" (#1 on all Korean charts), further cementing their status as K-pop icons.\n\nThis art features (G)I-DLE's logo and light stick.", "links": {"website": ["http://cubeent.co.kr/gidle", "https://en.wikipedia.org/wiki/(G)I-dle"], "subreddit": ["GIDLE", "kpop"]}, "path": {"136-150": [[1670, 869], [1670, 879], [1696, 879], [1696, 869]], "127-135": [[1670, 868], [1670, 879], [1696, 879], [1696, 868]], "124-126": [[1657, 868], [1657, 879], [1696, 879], [1696, 868]], "67-122": [[1670, 869], [1670, 879], [1716, 879], [1716, 869]], "151-166, T:0-1": [[1669, 869], [1669, 879], [1696, 879], [1696, 869]]}, "center": {"136-150": [1683, 874], "127-135": [1683, 874], "124-126": [1677, 874], "67-122": [1693, 874], "151-166, T:0-1": [1683, 874]}},
{"id": "twm9xs", "name": "Rimuru Tempest, Human Form", "description": "The human form of the Slime Demon Rimuru Tempest. Takes the form and wears the mask of the late Otherworlder Shizue Izawa.\n\nAppears in the anime That Time I Got Reincarnated as a Slime.", "links": {"website": ["https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken"], "subreddit": ["TenseiSlime"]}, "path": {"109-166, T:0-1": [[1844, 1306], [1843, 1305], [1843, 1301], [1844, 1300], [1844, 1298], [1845, 1297], [1845, 1296], [1846, 1295], [1846, 1294], [1852, 1288], [1853, 1289], [1853, 1291], [1856, 1294], [1857, 1294], [1858, 1295], [1859, 1294], [1859, 1291], [1858, 1290], [1858, 1288], [1859, 1287], [1859, 1285], [1860, 1284], [1860, 1282], [1861, 1281], [1861, 1280], [1862, 1279], [1863, 1279], [1864, 1278], [1868, 1278], [1869, 1277], [1871, 1277], [1875, 1281], [1875, 1285], [1873, 1287], [1873, 1289], [1872, 1290], [1872, 1292], [1873, 1293], [1875, 1291], [1875, 1289], [1876, 1288], [1877, 1289], [1877, 1290], [1878, 1291], [1878, 1292], [1879, 1293], [1879, 1295], [1880, 1296], [1880, 1304], [1878, 1304], [1878, 1300], [1876, 1300], [1875, 1301], [1873, 1299], [1872, 1300], [1873, 1301], [1873, 1302], [1876, 1305], [1878, 1305], [1880, 1307], [1880, 1309], [1881, 1310], [1882, 1309], [1883, 1309], [1883, 1312], [1877, 1318], [1876, 1317], [1875, 1317], [1875, 1316], [1874, 1315], [1872, 1312], [1871, 1312], [1870, 1311], [1869, 1310], [1867, 1309], [1866, 1309], [1865, 1308], [1859, 1308], [1858, 1307], [1855, 1307], [1855, 1306], [1858, 1303], [1858, 1300], [1859, 1299], [1858, 1298], [1857, 1298], [1856, 1299], [1855, 1299], [1854, 1300], [1854, 1301], [1853, 1302], [1850, 1299], [1848, 1299], [1846, 1301], [1845, 1302], [1845, 1305]]}, "center": {"109-166, T:0-1": [1866, 1297]}},
{"id": "twm9sj", "name": "Tufts University", "description": "Tufts University is a university in the cities of Medford and Somerville in the state of Massachusetts, United States. Our mascot, Jumbo the Elephant, is graciously hosted by r/196 in the space directly above.", "links": {"website": ["https://www.tufts.edu/", "https://en.wikipedia.org/wiki/Tufts_University"], "subreddit": ["Tufts"]}, "path": {"13-35, 148-165, 46-138, T:0-1": [[174, 707], [183, 707], [183, 698], [174, 698]]}, "center": {"13-35, 148-165, 46-138, T:0-1": [179, 703]}},
{"id": "twm9qx", "name": "Oant moarn!", "description": "A tribute to Piet Paulusma, a popular weatherman in the Netherlands who passed away on March 20, 2022 due to cancer. He always ended weather forecasts with his signature catchphrase, \"Oant moarn!\", which means \"See you tomorrow!\" in the Frisian language, spoken predominantly in Paulusma's home province of Friesland. His popularity and catchphrase helped spread awareness for the Frisian language through the rest of the Netherlands.", "links": {"website": ["https://nl.wikipedia.org/wiki/Piet_Paulusma"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"111-118": [[1105, 14], [1105, 20], [1154, 20], [1154, 14]], "119-124, 136-166, T:0-1": [[1179, 14], [1179, 20], [1228, 20], [1228, 14]]}, "center": {"111-118": [1130, 17], "119-124, 136-166, T:0-1": [1204, 17]}},
@@ -621,7 +621,7 @@
{"id": "twm6j2", "name": "Flag of Utrecht", "description": "A province of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Utrecht_(province)", "https://en.wikipedia.org/wiki/Flag_of_Utrecht_(province)"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"133-166, 90-119, T:0-1": [[1290, 2], [1290, 12], [1304, 12], [1304, 2]]}, "center": {"133-166, 90-119, T:0-1": [1297, 7]}},
{"id": "twm682", "name": "Flag of Noord-Holland", "description": "A province of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/North_Holland", "https://en.wikipedia.org/wiki/Flag_of_North_Holland"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"134-166, 90-124, T:0-1": [[1272, 2], [1272, 12], [1285, 12], [1285, 2]]}, "center": {"134-166, 90-124, T:0-1": [1279, 7]}},
{"id": "twm5um", "name": "Spirit Phone", "description": "The album cover for Neil Cicierega's 2016 album, Spirit Phone, which was released under the musical project known as \"Lemon Demon\". This album cover was drawn by Neil's wife, Ming Doyle, and features art of Neil holding Maui, a cat owned by the two until he passed away in 2020. The album itself is very eccentric; it is primarily composed of synth-pop songs about various things related to the occult, ranging from Gef the Talking Mongoose to a girl from another dimension who the narrator is hopelessly in love with despite her race's Earth-shattering properties.", "links": {"website": ["https://lemondemon.bandcamp.com/album/spirit-phone"], "subreddit": ["lemondemon"]}, "path": {"109-165, T:0-1": [[292, 1926], [292, 1925], [292, 1969], [340, 1969], [340, 1925]]}, "center": {"109-165, T:0-1": [316, 1947]}},
-{"id": "twm5se", "name": "Kobo Wave", "description": "Kobo Wave is an original artwork drawn by u/MixerBlaze and built on r/place in collaboration with the Hololive and r/place_the_wave communities. The drawing features Kobo Kanaeru, one of the three members of the 3rd generation of VTuber agency Hololive's Indonesian branch. Her hair is made of waves, as she is an aspiring rain shaman.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/kobo-kanaeru/", "https://virtualyoutuber.fandom.com/wiki/Kobo_Kanaeru"], "subreddit": ["Hololive", "place_the_wave"]}, "path": {"126-166, T:0-1": [[1891, 696], [1891, 732], [1940, 732], [1940, 696]]}, "center": {"126-166, T:0-1": [1916, 714]}},
+{"id": "twm5se", "name": "Kobo Wave", "description": "Kobo Wave is an original artwork drawn by u/MixerBlaze and built on r/place in collaboration with the Hololive and r/place_the_wave communities. The drawing features Kobo Kanaeru, one of the three members of the 3rd generation of VTuber agency Hololive's Indonesian branch. Her hair is made of waves, as she is an aspiring rain shaman.", "links": {"website": ["https://hololive.hololivepro.com/en/talents/kobo-kanaeru/", "https://virtualyoutuber.fandom.com/wiki/Kobo_Kanaeru"], "subreddit": ["Hololive", "place_the_wave"], "discord": ["holofans"]}, "path": {"126-166, T:0-1": [[1891, 696], [1891, 732], [1940, 732], [1940, 696]]}, "center": {"126-166, T:0-1": [1916, 714]}},
{"id": "twm5b4", "name": "Flag of Overijssel", "description": "A province of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Overijssel", "https://en.wikipedia.org/wiki/Flag_of_Overijssel"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"129-166, 90-120, T:0-1": [[1253, 2], [1253, 12], [1267, 12], [1267, 2]]}, "center": {"129-166, 90-120, T:0-1": [1260, 7]}},
{"id": "twm4jy", "name": "Stardew Valley", "description": "Stardew Valley 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.\n\nIt all started with a chicken, but this tribute to the Stardew Valley community and subreddit grew into the piece you see before you. It underwent several renditions. First just the chicken, then the text and its mountainous background was added, then a green Junimo, a blue chicken, and a purple Junimo. By day 2, the purple Junimo had lost to a more iconic Stardrop. The piece remained relatively unchanged for the remainder of r/place, with the exception of coloring improvements and several updates to the text backdrop. I'm so proud of our community for keeping this piece beautiful until the very end.", "links": {"website": ["https://www.stardewvalley.net/", "https://en.wikipedia.org/wiki/Stardew_Valley"], "subreddit": ["StardewValley"]}, "path": {"7-165, T:0-1": [[71, 345], [132, 345], [132, 386], [71, 386]]}, "center": {"7-165, T:0-1": [102, 366]}},
{"id": "twm4ix", "name": "Reimu Hakurei-Hatsune Miku heart", "description": "A heart between Reimu Hakurei and Hatsune Miku symbolizing the friendship between the two subreddits throughout r/place 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku", "https://en.touhouwiki.net/wiki/Reimu_Hakurei"], "subreddit": ["touhou", "hatsune", "Volcaloid"], "discord": ["UVkWNdhQ"], "wiki": ["Touhou#Reimu_and_Miku"]}, "path": {"14-76, 79-165, T:0-1": [[807, 704], [804, 701], [806, 699], [807, 700], [808, 699], [810, 701]]}, "center": {"14-76, 79-165, T:0-1": [807, 702]}},
@@ -641,9 +641,9 @@
{"id": "twm1va", "name": "Aphex Twin", "description": "Richard Davis James, also known as Aphex Twin, is a popular Irish-born British indie electronic music artist known for producing music of the intelligent dance music (IDM) genre. This image is one of Aphex Twin's logos, originally used on his 1992 album Selected Ambient Works 85–92.", "links": {"website": ["https://en.wikipedia.org/wiki/Aphex_Twin", "https://en.wikipedia.org/wiki/Selected_Ambient_Works_85%E2%80%9392"], "subreddit": ["aphextwin"]}, "path": {"56-58": [[1953, 574], [1953, 582], [1955, 582], [1955, 588], [1973, 588], [1973, 582], [1992, 582], [1992, 574]], "61-165, T:0-1": [[1287, 496], [1287, 503], [1305, 503], [1305, 506], [1301, 510], [1299, 515], [1299, 523], [1302, 529], [1308, 534], [1322, 534], [1328, 529], [1331, 523], [1331, 515], [1328, 509], [1327, 508], [1327, 503], [1330, 503], [1330, 496]]}, "center": {"56-58": [1966, 581], "61-165, T:0-1": [1315, 518]}},
{"id": "twm1qt", "name": "Yuuko, Mio and Mai", "description": "Yuuko Aioi, Mio Naganohara and Mai Minakami are the main charaters of the Nichijou anime and manga.", "links": {"subreddit": ["Nichijou"]}, "path": {"109-165, T:0-1": [[1387, 1243], [1387, 1261], [1439, 1261], [1439, 1243]]}, "center": {"109-165, T:0-1": [1413, 1252]}},
{"id": "twm1kb", "name": "Flag of Groningen", "description": "A province of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Groningen_(province)", "https://en.wikipedia.org/wiki/Flag_of_Groningen_(province)"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"90-118": [[1196, 2], [1196, 12], [1210, 12], [1210, 2]], "119-124, 133-166, T:0-1": [[1139, 2], [1139, 12], [1153, 12], [1153, 2]]}, "center": {"90-118": [1203, 7], "119-124, 133-166, T:0-1": [1146, 7]}},
-{"id": "twm1h0", "name": "CHAD CAST", "description": "Podcast featuring Hololive English talents Mori Calliope (Myth), IRyS (Project Hope) and Hakos Baelz (Council).", "links": {"website": ["https://www.youtube.com/watch?v=MXd7uOemEzc"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1344, 905], [1341, 908], [1341, 912], [1340, 917], [1338, 925], [1340, 928], [1345, 933], [1357, 927], [1354, 920], [1354, 915], [1355, 913], [1350, 905]]}, "center": {"56-166, T:0-1": [1347, 919]}},
+{"id": "twm1h0", "name": "CHAD CAST", "description": "Podcast featuring Hololive English talents Mori Calliope (Myth), IRyS (Project Hope) and Hakos Baelz (Council).", "links": {"website": ["https://www.youtube.com/watch?v=MXd7uOemEzc"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1344, 905], [1341, 908], [1341, 912], [1340, 917], [1338, 925], [1340, 928], [1345, 933], [1357, 927], [1354, 920], [1354, 915], [1355, 913], [1350, 905]]}, "center": {"56-166, T:0-1": [1347, 919]}},
{"id": "twm10g", "name": "NAVI", "description": "Natus Vincere (Latin for \"born to win\"), better known as NAVI or Na'Vi, is a Ukrainian esports organization.\n\nThis art was a collaboration between r/placeukraine and the community for the nearby Dota 2, one of the games NAVI plays for.", "links": {"website": ["https://navi.gg/en/", "https://en.wikipedia.org/wiki/Natus_Vincere"], "subreddit": ["natusvincere", "placeukraine", "ukraine", "DotA2"], "discord": ["fMf7RJBMw6"]}, "path": {"43-165, T:0-1": [[34, 172], [34, 174], [33, 174], [33, 178], [32, 177], [32, 181], [31, 180], [31, 183], [30, 183], [30, 185], [60, 185], [61, 182], [61, 181], [61, 180], [62, 180], [62, 179], [63, 178], [63, 177], [64, 177], [64, 175], [65, 175], [65, 172], [49, 172], [35, 172]]}, "center": {"43-165, T:0-1": [48, 179]}},
-{"id": "twm0zt", "name": "Puella Magi Madoka Magica", "description": "Puella Magi Madoka Magica is a 2011 anime series animated by Shaft studio. The characters featured in the top image are Akemi Homura on the left and Kaname Madoka on the right. The five hearts on the top-right represent the five magical girls featured on the show. In order from top to bottom: Akemi Homura, Kaname Madoka, Miki Sayaka, Sakura Kyouko and Tomoe Mami. The bottom image is focused on the spin-off game and anime, Puella Magi Madoka Magica Side Story: Magia Record. Nanami Yachiyo and Tamaki Iroha are pictured, and the hearts on the bottom-right represent the rest of the main cast of characters: Iroha, Yachiyo, Tsuruno Yui, Sana Futaba, and Felicia Mitsuki.", "links": {"website": ["https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"4-166, T:0-1": [[634, 392], [634, 429], [637, 429], [637, 431], [658, 431], [660, 429], [666, 429], [667, 430], [668, 429], [670, 429], [670, 392]]}, "center": {"4-166, T:0-1": [652, 412]}},
+{"id": "twm0zt", "name": "Puella Magi Madoka Magica", "description": "Puella Magi Madoka Magica is a 2011 anime series animated by Shaft studio. The characters featured in the top image are Akemi Homura on the left and Kaname Madoka on the right. The five hearts on the top-right represent the five magical girls featured on the show. In order from top to bottom: Akemi Homura, Kaname Madoka, Miki Sayaka, Sakura Kyouko and Tomoe Mami. The bottom image is focused on the spin-off game and anime, Puella Magi Madoka Magica Side Story: Magia Record. Nanami Yachiyo and Tamaki Iroha are pictured, and the hearts on the bottom-right represent the rest of the main cast of characters: Iroha, Yachiyo, Tsuruno Yui, Sana Futaba, and Felicia Mitsuki.", "links": {"website": ["https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica", "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"4-166, T:0-1": [[634, 392], [634, 429], [637, 429], [637, 431], [658, 431], [660, 429], [666, 429], [667, 430], [668, 429], [670, 429], [670, 392]]}, "center": {"4-166, T:0-1": [652, 412]}},
{"id": "twm0np", "name": "im_a_squid_kid", "description": "im_a_squid_kid is a Minecraft YouTuber who specializes in Hypixel Skyblock. He is most well-known for being Technoblade's rival in the Potato Wars, which squid_kid eventually lost, hence the 'rank #2'.", "links": {"website": ["https://www.youtube.com/c/imasquidkid"]}, "path": {"109-166, T:0-1": [[1814, 1258], [1835, 1258], [1835, 1272], [1814, 1272]]}, "center": {"109-166, T:0-1": [1825, 1265]}},
{"id": "twlzw3", "name": "Tulips", "description": "The Dutch are famous for their tulips. The flower itself actually originates from Central Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Tulip"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"40-42": [[469, 0], [469, 14], [593, 14], [593, 0]], "20-39": [[469, 0], [463, 6], [466, 9], [466, 10], [469, 14], [554, 14], [557, 11], [557, 10], [556, 9], [556, 0], [516, 0], [516, 14], [499, 14], [499, 8], [497, 6], [497, 3], [494, 0]], "43-166, T:0-1": [[481, 13], [480, 13], [480, 9], [481, 9], [481, 0], [592, 0], [592, 1], [593, 1], [593, 2], [594, 2], [594, 11], [593, 11], [593, 12], [592, 13]]}, "center": {"40-42": [522, 7], "20-39": [522, 7], "43-166, T:0-1": [522, 7]}},
{"id": "twlzv2", "name": "Sakamoto", "description": "Sakamoto is a popular character from the anime Nichijou. He lives with the child genius Professor Hakase and her robot caretaker Nano. The scarf around his neck allows him to talk.", "links": {"website": ["https://nichijou.fandom.com/wiki/Sakamoto", "https://en.wikipedia.org/wiki/Nichijou"], "subreddit": ["Nichijou"]}, "path": {"67-166, T:0-1": [[1461, 535], [1448, 535], [1448, 532], [1449, 532], [1449, 528], [1450, 528], [1450, 526], [1445, 520], [1448, 515], [1448, 511], [1451, 513], [1453, 510], [1457, 509], [1457, 512], [1458, 512], [1458, 519], [1459, 519], [1462, 518], [1462, 521], [1458, 525], [1459, 528], [1461, 526], [1462, 527], [1462, 531]]}, "center": {"67-166, T:0-1": [1452, 519]}},
@@ -654,7 +654,7 @@
{"id": "twlxfe", "name": "Counter-Strike: Global Offensive", "description": "Logo for the 2013 competitive first-person shooter game, Counter-Strike: Global Offensive.\n\nThe gunman on the logo shot at the nearby Fortnite logo throughout r/place, leaving visible bullet holes. The logo was griefed by people trying to make it into an Among Us crewmate or trying to draw a penis on it; while these concentrated attempts were repelled, The logo remains griefed in the final canvas.\n\nThe Counter-Strike logo had a penis pretty much since its inception. On the 2nd of April, it even expanded through the DotA logo and Juggernaut down to the middle of Ukraine.", "links": {"website": ["https://counter-strike.net/", "https://en.wikipedia.org/wiki/Counter-Strike:_Global_Offensive"], "subreddit": ["GlobalOffensive"]}, "path": {"95-139": [[0, 93], [0, 143], [27, 143], [27, 137], [44, 137], [44, 93]], "89-94": [[0, 92], [0, 143], [44, 143], [44, 92]], "19-88": [[0, 92], [0, 143], [30, 143], [30, 130], [36, 124], [41, 124], [41, 123], [45, 123], [45, 92]], "140-165, T:0-1": [[5, 98], [5, 133], [40, 132], [39, 98], [33, 98]]}, "center": {"95-139": [22, 115], "89-94": [22, 118], "19-88": [20, 112], "140-165, T:0-1": [22, 115]}},
{"id": "twlxb1", "name": "Monty Oum Tribute", "description": "A tribute to Monty Oum (1981-2015), creator of the show RWBY and animator of many incredible fights.", "links": {"website": ["https://roosterteeth.com"], "subreddit": ["RWBY"]}, "path": {"109-166, T:0-1": [[500, 1700], [541, 1700], [541, 1758], [500, 1758]]}, "center": {"109-166, T:0-1": [521, 1729]}},
{"id": "twlwvw", "name": "RU3 Colony", "description": "A colony of the RU3 community!", "links": {"subreddit": ["riskuniversalis"]}, "path": {"109-166, T:0-1": [[1332, 1234], [1358, 1234], [1358, 1257], [1332, 1257]]}, "center": {"109-166, T:0-1": [1345, 1246]}},
-{"id": "twlwh4", "name": "Big Madoka", "description": "Madoka Kaname from the Puella Magi Madoka Magica anime series.", "links": {"subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"56-166, T:0-1": [[1222, 906], [1262, 906], [1262, 900], [1252, 900], [1250, 898], [1250, 897], [1252, 895], [1252, 894], [1257, 889], [1257, 870], [1227, 870], [1227, 878], [1226, 879], [1226, 885], [1234, 893], [1234, 895], [1229, 900], [1222, 900]]}, "center": {"56-166, T:0-1": [1242, 888]}},
+{"id": "twlwh4", "name": "Kaname Madoka", "description": "Kaname Madoka is one of the main characters of the Puella Magi Madoka Magica anime series.", "links": {"website": ["https://en.wikipedia.org/wiki/Madoka_Kaname", "https://madoka.fandom.com/wiki/Madoka_Kaname"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"59-166, T:0-1": [[1227, 870], [1227, 880], [1226, 881], [1226, 885], [1227, 885], [1229, 883], [1229, 887], [1231, 890], [1233, 887], [1237, 891], [1234, 894], [1238, 897], [1237, 898], [1237, 899], [1239, 901], [1242, 898], [1244, 898], [1246, 900], [1248, 897], [1252, 893], [1250, 891], [1254, 888], [1254, 886], [1255, 885], [1255, 882], [1257, 882], [1257, 877], [1252, 870], [1251, 870], [1250, 871], [1239, 871], [1239, 869], [1237, 869], [1235, 871], [1230, 871], [1229, 870]]}, "center": {"59-166, T:0-1": [1243, 882]}},
{"id": "twlw9l", "name": "Paladins", "description": "Tiles placed to resemble the logo of Paladins, a character-based FPS that, at the time of writing, has 54 champions. Being a relatively small community, This is quite the achievement for us!", "links": {"website": ["https://www.paladins.com"], "subreddit": ["Paladins"]}, "path": {"109-165, T:0-1": [[652, 1368], [650, 1366], [649, 1366], [649, 1365], [647, 1365], [647, 1363], [648, 1362], [649, 1361], [650, 1360], [650, 1359], [651, 1358], [652, 1357], [653, 1358], [654, 1359], [654, 1360], [655, 1361], [656, 1362], [657, 1363], [657, 1364], [656, 1365], [655, 1366], [654, 1366], [653, 1367]]}, "center": {"109-165, T:0-1": [652, 1363]}},
{"id": "twlw2h", "name": "Doomguy and Isabelle", "description": "The pairing of Doomguy (the main character of DOOM) and Isabelle (a primary supporting character from Animal Crossing). In 2020, The games DOOM Eternal and Animal Crossing: New Horizons launched on the same day, leading to jokes about the two characters being friends and trading hobbies.", "links": {"website": ["https://knowyourmeme.com/memes/doomguy-and-isabelle"], "subreddit": ["DOOM", "AnimalCrossing"]}, "path": {"109-166, T:0-1": [[632, 1343], [636, 1346], [640, 1347], [644, 1348], [645, 1350], [649, 1354], [649, 1356], [649, 1361], [644, 1367], [642, 1370], [632, 1369], [632, 1366], [624, 1366], [623, 1367], [622, 1367], [622, 1375], [621, 1375], [618, 1373], [613, 1374], [610, 1375], [606, 1375], [605, 1374], [609, 1371], [609, 1367], [604, 1367], [601, 1364], [601, 1360], [604, 1357], [609, 1356], [609, 1355], [608, 1354], [608, 1352], [604, 1354], [602, 1351], [602, 1345], [605, 1341], [610, 1341], [613, 1343], [619, 1343], [621, 1345], [624, 1349], [625, 1358], [626, 1358], [627, 1355], [629, 1351], [628, 1348], [628, 1345], [631, 1343]]}, "center": {"109-166, T:0-1": [623, 1358]}},
{"id": "twlvjr", "name": "CupToast", "description": "CupToast, also known as Crumb, is a Twitch streamer and YouTuber known for her animations and art.", "links": {"website": ["https://www.twitch.tv/cuptoast", "https://www.youtube.com/channel/UCtLcv1_KYwXFCJ450dPVP_g", "https://twitter.com/cuptoast"], "subreddit": ["CaptainSparklez"]}, "path": {"135-166, T:0-1": [[1939, 387], [1948, 387], [1948, 396], [1939, 396]]}, "center": {"135-166, T:0-1": [1944, 392]}},
@@ -662,7 +662,7 @@
{"id": "twlvbt", "name": "Sponge", "description": "A Vinesauce meme based on a supposed \"lost Mario brother\". He has the ability to soak up all the sadness and anguish of the Mushroom Kingdom, hence his name. He has a brother named Pretzel.", "links": {"website": ["https://www.youtube.com/watch?v=bsO2QjbrUCA"], "subreddit": ["Vinesauce"]}, "path": {"124-151": [[122, 1091], [122, 1090], [124, 1088], [124, 1085], [121, 1079], [122, 1078], [125, 1072], [125, 1069], [129, 1069], [133, 1072], [133, 1074], [136, 1077], [136, 1083], [135, 1083], [135, 1087], [132, 1087], [132, 1094], [133, 1095], [133, 1096], [128, 1096], [128, 1091]], "152-166, T:0-1": [[122, 1091], [122, 1090], [124, 1088], [124, 1085], [121, 1079], [122, 1078], [125, 1072], [125, 1069], [129, 1069], [133, 1072], [133, 1074], [136, 1077], [136, 1083], [135, 1083], [135, 1087], [127, 1087]]}, "center": {"124-151": [129, 1080], "152-166, T:0-1": [129, 1080]}},
{"id": "twlut2", "name": "MrMouton", "description": "Twitch variety (and League of Legends) gaming streamer associated with the Destiny.gg community.", "links": {"website": ["https://www.twitch.tv/mrmouton"], "subreddit": ["MrMouton"]}, "path": {"54-95": [[180, 96], [180, 125], [207, 125], [207, 96]], "96-165, T:0-1": [[180, 97], [207, 97], [207, 121], [180, 121]]}, "center": {"54-95": [194, 111], "96-165, T:0-1": [194, 109]}},
{"id": "twlufp", "name": "The Night Watch", "description": "The Night Watch (Dutch: De Nachtwacht) is a 1642 painting by Rembrandt van Rijn. It is in the collection of the Amsterdam Museum but is prominently displayed in the Rijksmuseum as the best-known painting in its collection. The Night Watch is one of the most famous Dutch Golden Age paintings.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Night_Watch"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[538, 1849], [715, 1849], [715, 1948], [538, 1947]]}, "center": {"109-166, T:0-1": [627, 1898]}},
-{"id": "twluem", "name": "Red Gnome", "description": "The red Gnome from the game Everhood, hiding behind half the DankPods sign.", "links": {"website": ["https://everhoodgame.com/"], "subreddit": ["Everhood"]}, "path": {"56-166, T:0-1": [[1441, 824], [1449, 824], [1445, 812]]}, "center": {"56-166, T:0-1": [1445, 820]}},
+{"id": "twluem", "name": "Red Gnome", "description": "Red Gnomes are characters from the game Everhood.", "links": {"website": ["https://everhood.fandom.com/wiki/Gnomes", "https://everhoodgame.com/", "https://en.wikipedia.org/wiki/Everhood"], "subreddit": ["Everhood"]}, "path": {"107-144": [[1445, 811], [1442, 816], [1442, 820], [1440, 824], [1440, 825], [1450, 825], [1450, 824], [1448, 820], [1448, 816]], "70-106": [[1442, 816], [1442, 820], [1440, 824], [1440, 825], [1450, 825], [1450, 824], [1448, 820], [1448, 816]], "67-69": [[1443, 806], [1438, 819], [1438, 820], [1446, 820], [1446, 813]], "152-166, T:0-1": [[1446, 807], [1443, 813], [1443, 820], [1445, 822], [1447, 822], [1449, 820], [1449, 813]]}, "center": {"107-144": [1445, 822], "70-106": [1445, 821], "67-69": [1443, 816], "152-166, T:0-1": [1446, 816]}},
{"id": "twlt2a", "name": "German maple leaf", "description": "A maple leaf with the Canadian flag design built on the German flag. Built by the German r/placeDE community as a show of sympathy for r/placecanada, whose flag was subject to continuous sabotage attempts throughout the duration of the event.", "links": {"website": ["https://en.wikipedia.org/wiki/Maple_leaf"], "subreddit": ["placeDE", "de", "germany", "placecanada"], "discord": ["placeDE"]}, "path": {"109-165, T:0-1": [[1720, 1163], [1722, 1163], [1722, 1153], [1725, 1153], [1726, 1154], [1731, 1154], [1731, 1153], [1730, 1152], [1730, 1151], [1732, 1149], [1733, 1149], [1737, 1145], [1737, 1144], [1736, 1144], [1735, 1143], [1736, 1142], [1736, 1140], [1737, 1139], [1737, 1138], [1735, 1138], [1734, 1139], [1731, 1139], [1731, 1138], [1730, 1137], [1729, 1138], [1727, 1140], [1726, 1139], [1726, 1138], [1727, 1137], [1727, 1133], [1726, 1133], [1725, 1134], [1724, 1134], [1723, 1133], [1723, 1132], [1722, 1131], [1722, 1130], [1721, 1129], [1720, 1130], [1720, 1131], [1719, 1132], [1718, 1134], [1717, 1134], [1716, 1133], [1715, 1133], [1715, 1136], [1716, 1137], [1716, 1139], [1715, 1140], [1712, 1137], [1710, 1139], [1708, 1139], [1707, 1138], [1705, 1138], [1705, 1139], [1706, 1140], [1706, 1142], [1707, 1143], [1706, 1144], [1705, 1144], [1705, 1145], [1709, 1149], [1710, 1149], [1712, 1151], [1712, 1152], [1711, 1153], [1711, 1154], [1715, 1154], [1716, 1153], [1720, 1153]]}, "center": {"109-165, T:0-1": [1721, 1144]}},
{"id": "twlssp", "name": "Simon Fraser University", "description": "Simon Fraser University (SFU) is a public research university in British Columbia, Canada, founded in 1962. SFU consistently ranks as Canada's top comprehensive university and was named to the Times Higher Education List of 100 universities.", "links": {"website": ["https://www.sfu.ca/", "https://en.wikipedia.org/wiki/Simon_Fraser_University"], "subreddit": ["simonfraser"]}, "path": {"63-142": [[1460, 789], [1460, 797], [1474, 797], [1474, 789]]}, "center": {"63-142": [1467, 793]}},
{"id": "twlshq", "name": "Dogecoin", "description": "Dogecoin is a cryptocurrency based on the Doge meme. This art also features a picture of Kabosu, the original source of the Doge meme. Much Teamwork, wow!", "links": {"website": ["https://dogechain.info/", "https://en.wikipedia.org/wiki/Dogecoin"], "subreddit": ["dogecoin", "dogelore"]}, "path": {"127-155": [[1656, 377], [1656, 397], [1651, 397], [1651, 409], [1656, 409], [1656, 427], [1684, 427], [1684, 420], [1714, 420], [1714, 415], [1721, 415], [1721, 395], [1701, 395], [1701, 377]], "116-126": [[1657, 377], [1657, 427], [1684, 427], [1684, 420], [1714, 420], [1714, 415], [1721, 415], [1721, 395], [1684, 395], [1684, 377]], "105-115": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 417], [1721, 417], [1721, 395], [1701, 395], [1701, 377], [1684, 377], [1684, 395]], "96-104": [[1684, 377], [1684, 395], [1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 395], [1701, 395], [1701, 377]], "78-95": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 395]], "69-77": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1699, 420], [1699, 395]], "59-68": [[1657, 410], [1657, 427], [1684, 427], [1684, 410]], "34-49": [[79, 92], [79, 118], [102, 118], [102, 110], [117, 110], [116, 96], [114, 94], [114, 92]], "27-33": [[79, 92], [79, 118], [102, 118], [102, 92]], "19-26": [[87, 108], [84, 111], [84, 115], [87, 118], [93, 118], [96, 115], [96, 111], [93, 108]], "13-16": [[72, 68], [68, 72], [68, 76], [72, 80], [76, 80], [80, 76], [80, 72], [76, 68]], "156-166, T:0-1": [[1656, 377], [1701, 377], [1701, 395], [1721, 395], [1721, 415], [1714, 415], [1714, 420], [1684, 420], [1684, 427], [1652, 427], [1652, 420], [1651, 420], [1651, 384], [1648, 381], [1648, 377], [1651, 374], [1656, 374]]}, "center": {"127-155": [1679, 399], "116-126": [1674, 407], "105-115": [1672, 410], "96-104": [1672, 410], "78-95": [1672, 410], "69-77": [1672, 410], "59-68": [1671, 419], "34-49": [91, 104], "27-33": [91, 105], "19-26": [90, 113], "13-16": [74, 74], "156-166, T:0-1": [1686, 383]}},
@@ -679,7 +679,7 @@
{"id": "twloew", "name": "Uexküll", "description": "Uexküll is a minor character in the Flip Flappers anime.", "links": {"subreddit": ["FlipFlappers"]}, "path": {"109-165, T:0-1": [[1725, 1328], [1725, 1326], [1726, 1326], [1726, 1325], [1727, 1325], [1727, 1324], [1728, 1324], [1728, 1321], [1727, 1321], [1727, 1320], [1724, 1320], [1724, 1317], [1725, 1317], [1725, 1318], [1727, 1318], [1727, 1316], [1728, 1316], [1728, 1317], [1729, 1317], [1729, 1318], [1730, 1318], [1730, 1321], [1731, 1321], [1731, 1322], [1732, 1322], [1732, 1324], [1733, 1324], [1733, 1325], [1734, 1325], [1734, 1328]]}, "center": {"109-165, T:0-1": [1729, 1323]}},
{"id": "twlnx3", "name": "Flag of Myanmar", "description": "Myanmar, officially the Republic of the Union of Myanmar and also called Burma, is a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Myanmar", "https://en.wikipedia.org/wiki/Flag_of_Myanmar"], "subreddit": ["myanmar"]}, "path": {"89-124": [[1333, 648], [1333, 661], [1347, 661], [1347, 648]], "151-154": [[1333, 664], [1333, 671], [1343, 671], [1343, 664]], "126-145, 159-165, T:0-1": [[1333, 648], [1333, 661], [1348, 661], [1348, 648]]}, "center": {"89-124": [1340, 655], "151-154": [1338, 668], "126-145, 159-165, T:0-1": [1341, 655]}},
{"id": "twlnte", "name": "New York University", "description": "New York University (NYU) is a university in New York City, New York, United States.", "links": {"website": ["https://www.nyu.edu", "https://en.wikipedia.org/wiki/New_York_University"], "subreddit": ["nyu"]}, "path": {"62-159, T:0-1": [[1038, 209], [1055, 209], [1055, 237], [1038, 237]]}, "center": {"62-159, T:0-1": [1047, 223]}},
-{"id": "twlnhq", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"64-85": [[1129, 730], [1129, 829], [1200, 829], [1200, 743], [1177, 743], [1175, 741], [1175, 721], [1138, 721]], "56-58": [[1126, 665], [1126, 695], [1126, 830], [1200, 830], [1200, 665]], "86-165, T:0-1": [[1129, 730], [1129, 829], [1200, 829], [1200, 744], [1175, 743], [1174, 718], [1174, 717], [1173, 714], [1138, 714], [1138, 724]]}, "center": {"64-85": [1164, 779], "56-58": [1163, 748], "86-165, T:0-1": [1164, 778]}},
+{"id": "twlnhq", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"64-85": [[1129, 730], [1129, 829], [1200, 829], [1200, 743], [1177, 743], [1175, 741], [1175, 721], [1138, 721]], "56-58": [[1126, 665], [1126, 695], [1126, 830], [1200, 830], [1200, 665]], "88-117": [[1129, 730], [1129, 829], [1129, 880], [1161, 880], [1161, 899], [1130, 899], [1130, 905], [1137, 905], [1137, 908], [1139, 910], [1150, 910], [1150, 919], [1147, 921], [1141, 921], [1141, 923], [1133, 923], [1133, 927], [1147, 927], [1147, 925], [1167, 905], [1163, 900], [1163, 897], [1169, 897], [1169, 893], [1177, 893], [1177, 881], [1183, 881], [1183, 893], [1188, 893], [1188, 896], [1185, 896], [1191, 902], [1191, 898], [1193, 896], [1197, 896], [1197, 894], [1192, 894], [1192, 892], [1198, 886], [1200, 886], [1200, 869], [1129, 869], [1129, 829], [1200, 829], [1200, 743], [1175, 743], [1175, 714], [1137, 714], [1137, 722]], "118-165, 86-87, T:0-1": [[1129, 730], [1129, 829], [1200, 829], [1200, 744], [1175, 743], [1174, 718], [1174, 717], [1173, 714], [1138, 714], [1138, 724]]}, "center": {"64-85": [1164, 779], "56-58": [1163, 748], "88-117": [1164, 794], "118-165, 86-87, T:0-1": [1164, 778]}},
{"id": "twlmsz", "name": "Kākāpō", "description": "A large flightless parrot native to New Zealand.", "links": {"website": ["https://en.wikipedia.org/wiki/K%C4%81k%C4%81p%C5%8D"], "subreddit": ["newzealand"]}, "path": {"88-166, T:0-1": [[1532, 691], [1516, 707], [1516, 711], [1532, 711], [1532, 707], [1536, 703], [1536, 699], [1537, 699], [1539, 697], [1539, 695], [1537, 693], [1536, 693], [1534, 691]]}, "center": {"88-166, T:0-1": [1526, 705]}},
{"id": "twlm3t", "name": "Madokami", "description": "Goddess version of Kaname Madoka, The titular character of the anime Puella Magi Madoka Magica. The egg-like objects at the bottom are the Soul Gems of Sayaka, Kyoko, Nagisa, Mami and Homura respectively.\n\nPixel art by @luzanami_art.", "links": {"subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"109-166, T:0-1": [[1679, 1918], [1679, 1977], [1731, 1977], [1731, 1918]]}, "center": {"109-166, T:0-1": [1705, 1948]}},
{"id": "twllxw", "name": "Clone Hero", "description": "Clone Hero is a freeware music rhythm video game for PC created by Ryan Foster and published by Srylain, first released on March 1, 2017. The game is a clone of the Guitar Hero franchise with nearly identical gameplay. The main draw of the game is its ability to create and play community-made songs in a format much more accessible than Guitar Hero, which has resulted in a large fan community around the game as well as a resurgence in popularity for the genre. The game is most commonly played using plastic guitars or occasionally a keyboard, and drums are also supported.", "links": {"website": ["https://clonehero.net", "https://en.wikipedia.org/wiki/Clone_Hero"], "subreddit": ["CloneHero"]}, "path": {"1-165, T:0-1": [[575, 557], [575, 587], [618, 587], [618, 557]]}, "center": {"1-165, T:0-1": [597, 572]}},
@@ -691,7 +691,7 @@
{"id": "twlk86", "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis flag was made by r/franceplace, and is adorned with characters from the Asterix comics.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"1-165, T:0-1": [[433, 757], [433, 829], [373, 829], [373, 757]]}, "center": {"1-165, T:0-1": [403, 793]}},
{"id": "twlk2m", "name": "Miami Dolphins", "description": "The Miami Dolphins are an American football team known for the only perfect season in football: 1972.", "links": {"website": ["https://en.wikipedia.org/wiki/Miami_Dolphins"], "subreddit": ["miamidolphins", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[298, 917], [328, 916], [328, 944], [298, 944]]}, "center": {"1-166, T:0-1": [313, 930]}},
{"id": "twljim", "name": "Chester", "description": "Sprite of the companion \"Chester\" from the Don't Starve series. Made by the Chester/Place Discord server.", "links": {"website": ["https://dontstarve.fandom.com/wiki/Chester"], "subreddit": ["dontstarve"]}, "path": {"109-166, T:0-1": [[668, 1355], [648, 1355], [648, 1352], [646, 1349], [646, 1343], [652, 1343], [652, 1340], [668, 1340]]}, "center": {"109-166, T:0-1": [658, 1348]}},
-{"id": "twljhd", "name": "Crying YAGOO", "description": "Motoaki Tanigo, aka YAGOO, is the CEO of Cover Corp., The company behind the virtual YouTuber agency Hololive and Holostars. He looks cute in Kizuna AI's headband though.", "links": {"website": ["https://cover-corp.com/"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1342, 970], [1342, 948], [1343, 947], [1343, 945], [1344, 944], [1344, 942], [1345, 941], [1345, 939], [1346, 938], [1346, 936], [1345, 935], [1345, 933], [1347, 933], [1349, 931], [1351, 931], [1352, 930], [1353, 930], [1355, 928], [1356, 927], [1358, 927], [1359, 926], [1360, 926], [1361, 925], [1364, 925], [1367, 922], [1367, 916], [1368, 915], [1368, 913], [1369, 912], [1369, 910], [1370, 909], [1375, 909], [1376, 910], [1377, 910], [1379, 908], [1378, 907], [1378, 905], [1379, 904], [1380, 903], [1383, 903], [1384, 904], [1385, 904], [1387, 906], [1388, 905], [1388, 902], [1389, 901], [1389, 900], [1393, 900], [1394, 901], [1394, 903], [1393, 904], [1393, 909], [1391, 911], [1391, 913], [1392, 913], [1392, 914], [1393, 915], [1393, 923], [1392, 923], [1391, 924], [1391, 929], [1389, 931], [1389, 932], [1390, 933], [1390, 934], [1391, 935], [1391, 936], [1392, 937], [1392, 938], [1393, 939], [1393, 949], [1394, 950], [1394, 951], [1395, 952], [1395, 959], [1396, 960], [1396, 961], [1394, 963], [1390, 963], [1389, 962], [1388, 963], [1387, 964], [1387, 966], [1386, 967], [1385, 967], [1385, 966], [1384, 965], [1384, 963], [1383, 962], [1382, 961], [1379, 961], [1375, 965], [1375, 966], [1374, 967], [1369, 967], [1365, 971]]}, "center": {"56-166, T:0-1": [1370, 941]}},
+{"id": "twljhd", "name": "Crying YAGOO", "description": "Motoaki Tanigo, aka YAGOO, is the CEO of Cover Corp., The company behind the virtual YouTuber agency Hololive and Holostars. He looks cute in Kizuna AI's headband though.", "links": {"website": ["https://cover-corp.com/"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1342, 970], [1342, 948], [1343, 947], [1343, 945], [1344, 944], [1344, 942], [1345, 941], [1345, 939], [1346, 938], [1346, 936], [1345, 935], [1345, 933], [1347, 933], [1349, 931], [1351, 931], [1352, 930], [1353, 930], [1355, 928], [1356, 927], [1358, 927], [1359, 926], [1360, 926], [1361, 925], [1364, 925], [1367, 922], [1367, 916], [1368, 915], [1368, 913], [1369, 912], [1369, 910], [1370, 909], [1375, 909], [1376, 910], [1377, 910], [1379, 908], [1378, 907], [1378, 905], [1379, 904], [1380, 903], [1383, 903], [1384, 904], [1385, 904], [1387, 906], [1388, 905], [1388, 902], [1389, 901], [1389, 900], [1393, 900], [1394, 901], [1394, 903], [1393, 904], [1393, 909], [1391, 911], [1391, 913], [1392, 913], [1392, 914], [1393, 915], [1393, 923], [1392, 923], [1391, 924], [1391, 929], [1389, 931], [1389, 932], [1390, 933], [1390, 934], [1391, 935], [1391, 936], [1392, 937], [1392, 938], [1393, 939], [1393, 949], [1394, 950], [1394, 951], [1395, 952], [1395, 959], [1396, 960], [1396, 961], [1394, 963], [1390, 963], [1389, 962], [1388, 963], [1387, 964], [1387, 966], [1386, 967], [1385, 967], [1385, 966], [1384, 965], [1384, 963], [1383, 962], [1382, 961], [1379, 961], [1375, 965], [1375, 966], [1374, 967], [1369, 967], [1365, 971]]}, "center": {"56-166, T:0-1": [1370, 941]}},
{"id": "twlj1s", "name": "r/neoliberal and r/NonCredibleDefense", "description": "Neoliberalism is an ideology that advocates for liberalism, free trade, open borders, and globalism; r/neoliberal serves as a forum to continue neoliberalism against new threats posed by the populist left and right. r/NonCredibleDefense focuses on \"defense-themed shitposting.\"\n\nWith collectivism on the rise, a group of liberal philosophers, economists, and journalists met in Paris at the Walter Lippmann Colloquium in 1938 to discuss the future prospects of liberalism. While the participants could not agree on a comprehensive programme, there was universal agreement that a new liberal (neoliberal) project, able to resist the tendency towards ever more state control without falling back into the dogma of complete laissez-faire, was necessary.\n\nThis art, code-named \"Operation Rochambeau\", is a cooperative banner between users of the neoliberal and NCD subreddits, collectibely known as \"lib-sphere\". Inside the banner are pride flags, the neoliberal globe, F-35-chan from Flight Highschool, and the NATO flag.", "links": {"website": ["https://neoliberalproject.org/"], "subreddit": ["neoliberal", "NonCredibleDefense"]}, "path": {"1-166, T:0-1": [[799, 99], [893, 99], [893, 129], [799, 129]]}, "center": {"1-166, T:0-1": [846, 114]}},
{"id": "twli2j", "name": "My Beautiful Dark Twisted Fantasy", "description": "Depicts the album My Beautiful Dark Twisted Fantasy, released in 2010 by Kanye West", "links": {"subreddit": ["kanye"]}, "path": {"56-166, T:0-1": [[1779, 1007], [1779, 988], [1799, 988], [1799, 1009]]}, "center": {"56-166, T:0-1": [1789, 998]}},
{"id": "twlhuj", "name": "Snoo", "description": "Snoo is the mascot of Reddit. This Snoo is wearing a salakót and barong tagalog, traditional formal attire and national dress of the Philippines", "links": {"subreddit": ["Philippines"]}, "path": {"52-165, T:0-1": [[330, 652], [321, 661], [321, 662], [324, 662], [326, 667], [326, 674], [327, 674], [327, 678], [337, 678], [337, 674], [338, 674], [338, 668], [340, 662], [343, 662], [343, 661], [334, 652], [338, 652], [338, 647], [333, 647], [333, 649], [331, 651], [331, 652]]}, "center": {"52-165, T:0-1": [332, 661]}},
@@ -701,7 +701,7 @@
{"id": "twlgqo", "name": "Risk of Rain", "description": "Risk of Rain is a roguelike action platformer/adventure game series made by indie studio Hopoo Games. The games are set in the distant future, where space transportation is common. Space trains carry passengers and goods all across space. A particular space train, however, had some very special cargo. Through a series of unfortunate events, this space train gets shot out of orbit and crash lands on a mysterious planet… with one survivor.\n\nThis banner features characters and items from Risk of Rain and Risk of Rain 2. From left to right: Sniper, Loader, Mercenary, Ukelele, Bustling Fungus, Commando, Gup, Acrid.", "links": {"website": ["https://www.riskofrain.com/", "https://en.wikipedia.org/wiki/Risk_of_Rain"], "subreddit": ["riskofrain"]}, "path": {"23-58": [[532, 413], [532, 430], [541, 430], [547, 433], [550, 430], [622, 430], [622, 413]], "59-165, T:0-1": [[507, 413], [507, 430], [622, 430], [622, 413]]}, "center": {"23-58": [545, 422], "59-165, T:0-1": [597, 422]}},
{"id": "twlg0b", "name": "University of Houston", "description": "The University of Houston (UH) is a public research university in Houston, Texas, United States. Founded in 1927, the university is the flagship institution of the University of Houston System and the third-largest university in Texas.", "links": {"website": ["https://en.wikipedia.org/wiki/University_of_Houston"], "subreddit": ["UniversityOfHouston"]}, "path": {"105-165, T:0-1": [[23, 252], [46, 252], [46, 276], [23, 276]]}, "center": {"105-165, T:0-1": [35, 264]}},
{"id": "twlfa6", "name": "Barış Manço", "description": "Barış Manço was a popular Turkish rock musician, singer and songwriter. His name means 'peace'.", "links": {"website": ["https://en.wikipedia.org/wiki/Bar%C4%B1%C5%9F_Man%C3%A7o"], "subreddit": ["Turkey"]}, "path": {"109-166, T:0-1": [[765, 1933], [805, 1936], [808, 1933], [816, 1933], [814, 1915], [839, 1914], [832, 1889], [831, 1867], [827, 1852], [823, 1844], [812, 1835], [797, 1834], [786, 1834], [774, 1842], [766, 1851], [762, 1873], [761, 1889], [768, 1903], [762, 1916]]}, "center": {"109-166, T:0-1": [797, 1885]}},
-{"id": "twlf28", "name": "Edmonton Oilers", "description": "Logo of the Edmonton Oilers, a National Hockey League team. Also includes the jersey number of the captain, Connor McDavid.", "links": {"website": ["https://www.nhl.com/oilers"], "subreddit": ["EdmontonOilers"]}, "path": {"109-166, T:0-1": [[1796, 1013], [1829, 1013], [1829, 1044], [1799, 1044], [1799, 1019], [1796, 1019]]}, "center": {"109-166, T:0-1": [1814, 1028]}},
+{"id": "twlf28", "name": "Edmonton Oilers", "description": "The Edmonton Oilers are a National Hockey League team based in Edmonton, Alberta, Canada. This art also includes the jersey number of the captain, Connor McDavid.", "links": {"website": ["https://www.nhl.com/oilers", "https://en.wikipedia.org/wiki/Edmonton_Oilers"], "subreddit": ["EdmontonOilers"]}, "path": {"109-122": [[1821, 1014], [1814, 1018], [1810, 1025], [1810, 1035], [1813, 1041], [1820, 1045], [1830, 1045], [1836, 1042], [1840, 1035], [1840, 1025], [1836, 1018], [1829, 1014]], "125-166, T:0-1": [[1799, 1013], [1830, 1013], [1830, 1045], [1799, 1045]]}, "center": {"109-122": [1825, 1030], "125-166, T:0-1": [1815, 1029]}},
{"id": "twlese", "name": "Dart Monkey", "description": "The Dart Monkey is a tower from the tower defense game Bloons Tower Defense. This art portrays Dart Monkey's appearance in the sixth mainline installment, Bloons Tower Defense 6.", "links": {"website": ["https://bloons.fandom.com/wiki/Dart_Monkey"], "subreddit": ["bloons"]}, "path": {"109-166, T:0-1": [[1886, 1679], [1872, 1679], [1872, 1669], [1863, 1669], [1863, 1665], [1872, 1663], [1863, 1659], [1863, 1644], [1870, 1638], [1874, 1637], [1875, 1634], [1878, 1633], [1882, 1635], [1884, 1638], [1884, 1640], [1887, 1648], [1890, 1650], [1890, 1654], [1884, 1658], [1885, 1666], [1896, 1665], [1900, 1671], [1897, 1673], [1896, 1671], [1896, 1668], [1883, 1669]]}, "center": {"109-166, T:0-1": [1877, 1656]}},
{"id": "twlemi", "name": "Breaking Bad", "description": "A cute homage to the show Breaking Bad with the show's title up top and Heisenberg in the center.", "links": {"website": ["https://en.wikipedia.org/wiki/Breaking_Bad"], "subreddit": ["okbuddychicanery", "breakingbad"]}, "path": {"56-165, T:0-1": [[1134, 928], [1153, 928], [1153, 953], [1134, 953]]}, "center": {"56-165, T:0-1": [1144, 941]}},
{"id": "twlekf", "name": "BEMANI", "description": "A rhythm game division of Konami hosting several arcade rhythm games, including Dance Dance Revolution, Beatmania IIDX, Sound Voltex, Pop'n Music, Jubeat, GuitarFreaks, DrumMania.", "links": {"website": ["https://en.wikipedia.org/wiki/Bemani", "https://remywiki.com/BEMANI"], "subreddit": ["bemani"]}, "path": {"62-166, T:0-1": [[1215, 69], [1215, 82], [1273, 82], [1273, 69]]}, "center": {"62-166, T:0-1": [1244, 76]}},
@@ -717,7 +717,7 @@
{"id": "twlcoj", "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.\n\nThis art was briefly destroyed by the white void along with TWRP's allies, 100 Gecs and Spamton's nose. All three quickly recovered and maintained their property. The band themselves seemed to have been convinced that their band name was, in fact, FWRP, to which their own community said \"No.\" and restored the logo to TWRP.", "links": {"website": ["https://linktr.ee/twrpband", "https://en.wikipedia.org/wiki/TWRP_(band)"], "subreddit": ["TWRP"]}, "path": {"62-156": [[480, 414], [480, 422], [505, 422], [505, 414]], "35-52": [[509, 421], [509, 429], [535, 429], [535, 421]], "157-165, T:0-1": [[480, 414], [480, 423], [505, 423], [505, 414]]}, "center": {"62-156": [493, 418], "35-52": [522, 425], "157-165, T:0-1": [493, 419]}},
{"id": "twlcgh", "name": "Scott the Woz", "description": "Scott the Woz is a YouTuber who discusses a large variety of video games and gaming topics. This is the room where Scott the Woz usually records his videos in.\n\nThis mural was made by the fine folks over at r/scottthewoz. Between them needing to switch locations three times to xQc destroying it causing Ludwig to help rebuild it, this little picture's life was pretty rough, but dang it, did it pull through creating a pretty good picture that \"Hey alls\".", "links": {"website": ["https://www.youtube.com/channel/UC4rqhyiTs7XyuODcECvuiiQ", "https://en.wikipedia.org/wiki/Scott_the_Woz"], "subreddit": ["scottthewoz"]}, "path": {"125-127": [[1550, 195], [1550, 249], [1604, 249], [1604, 221], [1614, 221], [1614, 228], [1621, 228], [1621, 210], [1618, 210], [1618, 195]], "56-124": [[1551, 212], [1551, 248], [1603, 248], [1603, 212]], "128-166, T:0-1": [[1550, 211], [1550, 249], [1603, 249], [1603, 211]]}, "center": {"125-127": [1577, 222], "56-124": [1577, 230], "128-166, T:0-1": [1577, 230]}},
{"id": "twlcbj", "name": "Core: Shard", "description": "The Core: Shard is a block in the sandbox tower defense game Mindustry. It is the lowest tier of core, and acts as the center of the player's base and factory, collecting resources which the player can use to create buildings and machinery.", "links": {"website": ["https://mindustry-unofficial.fandom.com/wiki/Core:_Shard", "https://mindustrygame.github.io"], "subreddit": ["Mindustry"]}, "path": {"2-166, T:0-1": [[850, 552], [850, 579], [877, 579], [877, 552]]}, "center": {"2-166, T:0-1": [864, 566]}},
-{"id": "twlc0g", "name": "Python", "description": "Python is a programming language, invented on 1991.", "links": {}, "path": {"56-166, T:0-1": [[1260, 884], [1265, 884], [1265, 879], [1274, 879], [1274, 884], [1279, 884], [1279, 894], [1274, 894], [1274, 899], [1265, 899], [1265, 894], [1260, 894]]}, "center": {"56-166, T:0-1": [1270, 889]}},
+{"id": "twlc0g", "name": "Python", "description": "Python is a programming language invented in 1991. It is known for its ease of use, and is used by beginners and advanced coders alike.\n\nThis Python logo was drawn at the start of the first canvas expansion, surviving through a war thanks to r/PlaceNL.", "links": {"subreddit": ["placepython", "Python"]}, "path": {"57-73": [[1260, 879], [1260, 883], [1256, 883], [1256, 893], [1260, 893], [1260, 897], [1269, 897], [1269, 893], [1273, 893], [1273, 883], [1269, 883], [1269, 879]], "74-86, 88-166, T:0-1": [[1266, 878], [1264, 880], [1264, 883], [1261, 883], [1259, 885], [1259, 893], [1261, 895], [1264, 895], [1264, 898], [1266, 900], [1273, 900], [1275, 898], [1275, 895], [1278, 895], [1280, 893], [1280, 885], [1278, 883], [1275, 883], [1275, 880], [1273, 878]]}, "center": {"57-73": [1265, 888], "74-86, 88-166, T:0-1": [1270, 889]}},
{"id": "twlbqh", "name": "Flag of Kinoko Kingdom", "description": "Kinoko Kingdom is a nation formed by content creator Karl Jacobs on the Dream SMP, a private multiplayer server for content creators in the game Minecraft.\n\nThis flag was created by the L'Manplace community.", "links": {"website": ["https://dreamteam.fandom.com/wiki/Kinoko_Kingdom"], "subreddit": ["dreamsmp", "KarlJacobs"], "discord": ["25j3Cxnvjt"]}, "path": {"24-165, T:0-1": [[136, 147], [136, 158], [147, 158], [147, 147]]}, "center": {"24-165, T:0-1": [142, 153]}},
{"id": "twlbpn", "name": "EthosLab", "description": "EthosLab is a YouTuber for the game Minecraft. He is known for his complex redstone contraptions, and is also a member of the Hermitcraft Minecraft server.", "links": {"website": ["https://www.youtube.com/channel/UCFKDEp9si4RmHFWJW1vYsMA"], "subreddit": ["ethoslab"]}, "path": {"7-11": [[204, 286], [213, 286], [213, 294], [204, 294]], "12-165, T:0-1": [[241, 286], [250, 286], [250, 294], [241, 294]]}, "center": {"7-11": [209, 290], "12-165, T:0-1": [246, 290]}},
{"id": "twlb2b", "name": "Garfield", "description": "The fat, orange, lazy, Monday-hating, hungry cat, in all his r/place glory! Excuse his ears being pink, please.", "links": {"website": ["https://www.garfield.com/"], "subreddit": ["garfield"]}, "path": {"56-166, T:0-1": [[1763, 929], [1767, 928], [1770, 932], [1770, 933], [1773, 937], [1773, 941], [1769, 947], [1758, 947], [1755, 943], [1754, 935], [1756, 932], [1760, 928], [1763, 930]]}, "center": {"56-166, T:0-1": [1763, 938]}},
@@ -726,13 +726,13 @@
{"id": "twla6v", "name": "100 Gecs", "description": "100 Gecs is a hyperpop group consisting of Laura Les and Dylan Brady. They are often considered to be one of the most important groups in the genre.", "links": {"website": ["https://www.100gecs.com/", "https://en.wikipedia.org/wiki/100_Gecs"], "subreddit": ["100gecs"]}, "path": {"151-165, 27-43, 51-52, 61-144, T:0-1": [[480, 422], [480, 430], [508, 430], [508, 422]]}, "center": {"151-165, 27-43, 51-52, 61-144, T:0-1": [494, 426]}},
{"id": "twl9wx", "name": "The Wheel of Time", "description": "A high fantasy novel series.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Wheel_of_Time"], "subreddit": ["SFFA"]}, "path": {"109-166, T:0-1": [[1630, 1366], [1620, 1379], [1627, 1393], [1635, 1394], [1646, 1386], [1659, 1393], [1662, 1393], [1670, 1385], [1671, 1375], [1662, 1367], [1654, 1367], [1646, 1375], [1639, 1367]]}, "center": {"109-166, T:0-1": [1646, 1380]}},
{"id": "twl9rb", "name": "Bill Cipher", "description": "Bill Cipher is the main antagonist from the Gravity Falls animated television series, which aired from 2012-2016. He is a demonic puzzle genius who wants to take over the entire third dimension and instill madness and chaos before destroying it all.", "links": {"website": ["https://gravityfalls.fandom.com/wiki/Bill_Cipher"], "subreddit": ["gravityfalls"]}, "path": {"100-122, 139-152": [[1175, 890], [1172, 890], [1172, 896], [1175, 896], [1169, 902], [1169, 899], [1166, 897], [1164, 897], [1161, 899], [1161, 901], [1165, 906], [1148, 923], [1148, 927], [1210, 927], [1210, 921], [1195, 906], [1195, 905], [1199, 901], [1199, 899], [1195, 896], [1193, 896], [1191, 899], [1191, 901], [1190, 901], [1185, 896], [1188, 896], [1188, 890], [1185, 890], [1185, 881], [1175, 881]], "123-138": [[1175, 890], [1172, 890], [1172, 896], [1175, 896], [1169, 902], [1169, 899], [1166, 897], [1164, 897], [1161, 899], [1161, 901], [1165, 906], [1148, 923], [1148, 927], [1210, 927], [1210, 921], [1195, 906], [1195, 905], [1199, 901], [1199, 899], [1195, 896], [1193, 896], [1191, 899], [1191, 901], [1190, 901], [1185, 896], [1188, 896], [1188, 890], [1185, 890], [1185, 875], [1175, 875]], "87-99": [[1145, 927], [1215, 927], [1215, 926], [1194, 905], [1197, 902], [1198, 900], [1198, 896], [1192, 896], [1192, 892], [1184, 892], [1184, 880], [1176, 880], [1176, 892], [1168, 892], [1168, 896], [1162, 896], [1162, 900], [1166, 905], [1145, 926]], "74-86": [[1145, 927], [1215, 927], [1215, 926], [1194, 905], [1197, 902], [1198, 900], [1198, 896], [1192, 896], [1192, 892], [1185, 892], [1185, 801], [1184, 801], [1184, 743], [1176, 743], [1176, 799], [1175, 799], [1175, 892], [1168, 892], [1168, 895], [1164, 895], [1161, 897], [1161, 901], [1165, 903], [1165, 905], [1164, 907], [1161, 907], [1161, 910], [1145, 926]], "56-73": [[1145, 927], [1215, 927], [1215, 926], [1194, 905], [1197, 902], [1198, 900], [1198, 896], [1192, 896], [1192, 892], [1185, 892], [1185, 869], [1175, 869], [1175, 892], [1168, 892], [1168, 896], [1163, 896], [1163, 900], [1166, 905], [1145, 926]], "153-165, T:0-1": [[1175, 890], [1172, 890], [1172, 896], [1175, 896], [1169, 902], [1169, 899], [1166, 897], [1164, 897], [1161, 899], [1161, 901], [1165, 906], [1148, 923], [1148, 927], [1210, 927], [1210, 921], [1195, 906], [1195, 905], [1199, 901], [1199, 899], [1195, 896], [1193, 896], [1191, 899], [1191, 901], [1190, 901], [1185, 896], [1188, 896], [1188, 890], [1185, 890], [1185, 877], [1175, 877]]}, "center": {"100-122, 139-152": [1180, 912], "123-138": [1180, 912], "87-99": [1180, 911], "74-86": [1180, 911], "56-73": [1180, 911], "153-165, T:0-1": [1180, 912]}},
-{"id": "twl9q1", "name": "Animal Crossing Leaf", "description": "This is the Leaf along with other items such as the bell bag, pitfall seed, fossil, and gyroid, which were all from the Animal Crossing video game series by Nintendo.", "links": {"subreddit": ["AnimalCrossing"]}, "path": {"56-166, T:0-1": [[1403, 869], [1412, 868], [1413, 863], [1429, 862], [1429, 869], [1437, 869], [1441, 904], [1403, 902]]}, "center": {"56-166, T:0-1": [1421, 885]}},
+{"id": "twl9q1", "name": "Animal Crossing", "description": "Animal Crossing is a video game series made by Nintendo. This art depicts Animal Crossing's monogram text and Nook leaf logo, along with other items such as the bell bag, pitfall seed, fossil, and gyroid.", "links": {"website": ["https://animal-crossing.com/", "https://en.wikipedia.org/wiki/Animal_Crossing"], "subreddit": ["AnimalCrossing"]}, "path": {"56-106": [[1403, 869], [1403, 887], [1402, 888], [1402, 893], [1403, 894], [1403, 902], [1428, 902], [1432, 905], [1437, 905], [1441, 901], [1441, 899], [1439, 897], [1438, 895], [1437, 892], [1437, 869]], "107-166, T:0-1": [[1412, 862], [1412, 869], [1403, 869], [1403, 887], [1402, 888], [1402, 893], [1403, 894], [1403, 902], [1420, 902], [1423, 905], [1436, 905], [1440, 901], [1440, 899], [1439, 898], [1439, 895], [1437, 893], [1437, 869], [1429, 869], [1429, 861], [1426, 861], [1425, 862]]}, "center": {"56-106": [1420, 886], "107-166, T:0-1": [1420, 884]}},
{"id": "twl9gv", "name": "Indianapolis Colts", "description": "The Indianapolis Colts are an American football team in the National Football League (NFL) that plays for Indianapolis, Indiana, United States. Pictured are the team's horseshoe logo and name.", "links": {"website": ["https://www.colts.com", "https://en.wikipedia.org/wiki/Indianapolis_Colts"], "subreddit": ["Colts"]}, "path": {"61-72": [[1973, 82], [1973, 113], [1999, 113], [1999, 82]], "74-165, T:0-1": [[1954, 73], [1954, 98], [1970, 98], [1970, 79], [1997, 79], [1997, 73]]}, "center": {"61-72": [1986, 98], "74-165, T:0-1": [1962, 82]}},
{"id": "twl9fs", "name": "Retrora pepeL", "description": "Retrora is a Twitch streamer. This emote depicts Retrora in the style of the ppL Twitch emote.\n\nThe first recreation of Retrora on the canvas was invaded by the Void, instigated by Twitch streamer xQc and his viewers. The art then relocated.", "links": {"website": ["https://twitch.tv/retrora"], "subreddit": ["retrora"]}, "path": {"74-93": [[1816, 693], [1816, 705], [1829, 705], [1829, 693]], "122-150, T:0-1": [[425, 1436], [425, 1447], [449, 1447], [449, 1442], [446, 1439], [446, 1438], [447, 1437], [447, 1436]]}, "center": {"74-93": [1823, 699], "122-150, T:0-1": [437, 1442]}},
{"id": "twl99l", "name": "Talking heads section", "description": "Different Talking heads representation. From top down, The most iconic logo for the group, used on the album True Stories (86), The album Speaking in Tongues on the left (83), The album Remain in Light (80), and a picture of David Byrne in his iconic large suit", "links": {"subreddit": ["talkingheads"]}, "path": {"109-166, T:0-1": [[531, 1367], [530, 1408], [545, 1408], [545, 1393], [559, 1392], [559, 1367]]}, "center": {"109-166, T:0-1": [543, 1385]}},
{"id": "twl8o1", "name": "Boston University", "description": "Boston University is a university in Boston, Massachusetts, United States. This banner features Rhett the Terrier, the university's mascot. On the left is the iconic Boston Citgo sign with a sunset background.", "links": {"website": ["https://www.bu.edu", "https://en.wikipedia.org/wiki/Boston_University"], "subreddit": ["BostonU"]}, "path": {"58-166, T:0-1": [[1551, 335], [1551, 354], [1607, 354], [1607, 335]]}, "center": {"58-166, T:0-1": [1579, 345]}},
{"id": "twl8le", "name": "Celeste", "description": "Celeste is a video game made in 2018 by EXOK studios. The artwork shows the game's logo, featuring the titular Celeste Mountain.", "links": {"website": ["https://celestegame.com"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"109-166, T:0-1": [[1387, 1279], [1446, 1279], [1445, 1280], [1444, 1322], [1389, 1322], [1389, 1311], [1388, 1311], [1388, 1306], [1387, 1306]]}, "center": {"109-166, T:0-1": [1416, 1300]}},
-{"id": "twl8ew", "name": "Gawr Gura", "description": "Gawr Gura is a talent of the VTuber agency Hololive English. She has the most subscribers out of any VTuber in YouTube.", "links": {"website": ["https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g", "https://en.wikipedia.org/wiki/Gawr_Gura", "https://twitter.com/gawrgura"], "subreddit": ["GawrGura", "Hololive"]}, "path": {"1-7": [[244, 752], [236, 759], [227, 770], [227, 772], [229, 774], [233, 774], [238, 778], [238, 780], [243, 784], [253, 784], [262, 774], [268, 774], [268, 770], [252, 752]], "8-165, T:0-1": [[244, 753], [238, 758], [230, 768], [230, 769], [232, 769], [233, 770], [233, 775], [262, 775], [262, 771], [263, 770], [266, 770], [266, 769], [258, 760], [257, 758], [251, 753]]}, "center": {"1-7": [247, 768], "8-165, T:0-1": [248, 764]}},
+{"id": "twl8ew", "name": "Gawr Gura", "description": "Gawr Gura is a talent of the VTuber agency Hololive English. She has the most subscribers out of any VTuber in YouTube.", "links": {"website": ["https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g", "https://en.wikipedia.org/wiki/Gawr_Gura", "https://twitter.com/gawrgura"], "subreddit": ["GawrGura", "Hololive"], "discord": ["holofans"]}, "path": {"1-7": [[244, 752], [236, 759], [227, 770], [227, 772], [229, 774], [233, 774], [238, 778], [238, 780], [243, 784], [253, 784], [262, 774], [268, 774], [268, 770], [252, 752]], "8-165, T:0-1": [[244, 753], [238, 758], [230, 768], [230, 769], [232, 769], [233, 770], [233, 775], [262, 775], [262, 771], [263, 770], [266, 770], [266, 769], [258, 760], [257, 758], [251, 753]]}, "center": {"1-7": [247, 768], "8-165, T:0-1": [248, 764]}},
{"id": "twl873", "name": "The Last Supper", "description": "The Last Supper is a High Renaissance painting by Leonardo Da Vinci on circa 1495-1498 AD.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Last_Supper_(Leonardo)"], "subreddit": ["italy"]}, "path": {"109-165, T:0-1": [[902, 1073], [902, 1116], [999, 1116], [999, 1112], [1008, 1103], [1017, 1099], [1021, 1099], [1046, 1073], [1062, 1073], [1038, 1097], [1045, 1097], [1047, 1098], [1048, 1105], [1048, 1112], [1053, 1112], [1056, 1114], [1083, 1114], [1083, 1073]]}, "center": {"109-165, T:0-1": [985, 1093]}},
{"id": "twl86e", "name": "Ben", "description": "Ben is a stickman who is one of the main characters in wavetro's \"the untitled Teddy and Ben show\".", "links": {"subreddit": ["wavetro"]}, "path": {"117-165, T:0-1": [[1055, 404], [1053, 406], [1053, 411], [1055, 413], [1060, 413], [1062, 411], [1062, 406], [1060, 404]]}, "center": {"117-165, T:0-1": [1058, 409]}},
{"id": "twl86b", "name": "Ostehøvel", "description": "The mighty Ostehøvel cheese slicer, a symbol of Norwegian innovation!", "links": {"website": ["https://en.wikipedia.org/wiki/Cheese_knife#Cheese_slicer"], "subreddit": ["place_nordicunion", "Norge"]}, "path": {"106-165, T:0-1": [[433, 68], [433, 67], [444, 56], [444, 55], [442, 53], [442, 52], [444, 50], [445, 50], [448, 47], [451, 47], [455, 51], [455, 54], [452, 57], [452, 58], [450, 60], [449, 60], [447, 58], [446, 58], [435, 69], [434, 69]]}, "center": {"106-165, T:0-1": [449, 53]}},
@@ -757,7 +757,7 @@
{"id": "twl46i", "name": "r/MadeOfStyrofoam", "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": {"24-165, T:0-1": [[707, 412], [705, 414], [705, 417], [706, 417], [706, 425], [708, 429], [715, 429], [717, 425], [717, 417], [718, 417], [718, 414], [716, 412]]}, "center": {"24-165, T:0-1": [712, 420]}},
{"id": "twl3uz", "name": "Dungeons & Dragons", "description": "Dungeons & Dragons (DnD) is a fantasy tabletop role-playing game (TTRPG) and the most popular TTRPG worldwide.", "links": {"website": ["https://dnd.wizards.com/", "https://en.wikipedia.org/wiki/Dungeons_%26_Dragons"], "subreddit": ["DnD", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[513, 1051], [540, 1051], [540, 1068], [562, 1068], [561, 1100], [511, 1100], [511, 1064], [513, 1063]]}, "center": {"109-166, T:0-1": [534, 1078]}},
{"id": "twl3rd", "name": "Bittersweet Candy Bowl", "description": "Bittersweet Candy Bowl is a comic about love, cats, dogs, and highschool drama!", "links": {"website": ["https://bcb.cat"]}, "path": {"109-165, T:0-1": [[1760, 1938], [1760, 1952], [1774, 1952], [1774, 1938]]}, "center": {"109-165, T:0-1": [1767, 1945]}},
-{"id": "twl3ko", "name": ":FubuHappy:", "description": "A happy emoji of the Hololive VTuber Shirakami Fubuki. Created by the people of r/okbuddyhololive.", "links": {"subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holotards"]}, "path": {"56-165, T:0-1": [[1332, 869], [1332, 902], [1353, 902], [1353, 898], [1354, 898], [1354, 893], [1356, 893], [1356, 894], [1357, 894], [1357, 895], [1359, 895], [1359, 896], [1365, 896], [1365, 869]]}, "center": {"56-165, T:0-1": [1348, 884]}},
+{"id": "twl3ko", "name": "FubuHappy", "description": "FubuHappy, a.k.a. FOOB, is a happy emoji of the Hololive VTuber Shirakami Fubuki. It is a memed and edited version of her Live2D model without a nose.\n\nThis art was created by the people of r/okbuddyhololive.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Shirakami_Fubuki"], "subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holotards", "holofans"]}, "path": {"64-66": [[1332, 869], [1332, 902], [1365, 902], [1365, 869]], "57-63": [[1332, 869], [1332, 902], [1369, 902], [1369, 869]], "67-165, T:0-1": [[1332, 869], [1332, 902], [1354, 902], [1354, 899], [1356, 895], [1359, 897], [1365, 897], [1365, 869]]}, "center": {"64-66": [1349, 886], "57-63": [1351, 886], "67-165, T:0-1": [1347, 884]}},
{"id": "twl2y7", "name": "Currents", "description": "Currents is a 2015 psychedelic indie rock album by the Australian psychedelic music project Tame Impala. The album contains hit songs like \"The Less I Know the Better\", \"Let it Happen\", and \"New Person, Same Old Mistakes\".\n\nThis art was built by fans in the r/TameImpala subreddit.", "links": {"website": ["https://en.wikipedia.org/wiki/Currents_(Tame_Impala_album)", "https://official.tameimpala.com/"], "subreddit": ["TameImpala"]}, "path": {"113-164, T:0-1": [[1552, 768], [1552, 780], [1553, 780], [1553, 784], [1579, 784], [1579, 783], [1600, 783], [1600, 766], [1594, 766], [1594, 767], [1582, 767], [1582, 768]]}, "center": {"113-164, T:0-1": [1588, 775]}},
{"id": "twl2vs", "name": "Good Pizza, Great Pizza", "description": "A GPGP wordmark from the Good Pizza, Great Pizza game's community. It was originally planned to be a full-on logo; however, after some issues with their r/place team, a simpler wordmark version was completed by members of the GPGP Discord server.", "links": {"website": ["https://discord.com/gpgp"], "subreddit": ["GoodPizzaGreatPizza"]}, "path": {"109-165, T:0-1": [[1497, 1739], [1497, 1727], [1486, 1727], [1486, 1739]]}, "center": {"109-165, T:0-1": [1492, 1733]}},
{"id": "twl2ms", "name": "Flag of Poland", "description": "Poland is a country in Central Europe.\n\nThis section was originally a map of several other countries of Europe, including Germany and Ukraine, following what the Baltic countries started. But this was very unpopular, so people attacked it. Eventually, it just became a regular Polish flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Flag_of_Poland"]}, "path": {"138-154": [[1841, 175], [1840, 234], [1938, 233], [1938, 178], [1932, 176], [1926, 180], [1922, 180], [1915, 175]], "132-137": [[1840, 175], [1840, 234], [1922, 234], [1922, 181], [1914, 173], [1874, 173], [1874, 175]], "114-116": [[1890, 114], [1890, 121], [1899, 121], [1899, 114]]}, "center": {"138-154": [1888, 204], "132-137": [1884, 204], "114-116": [1895, 118]}},
@@ -767,12 +767,12 @@
{"id": "twl25g", "name": "Red Rising", "description": "Red Rising is a critically acclaimed sci-fi book series by Pierce Brown.", "links": {"website": ["https://www.piercebrown.com/", "https://en.wikipedia.org/wiki/Red_Rising"], "subreddit": ["redrising"]}, "path": {"23-55": [[865, 408], [865, 440], [904, 440], [904, 408]], "3-22": [[872, 408], [872, 440], [903, 440], [903, 408]], "56-164, T:0-1": [[865, 411], [865, 449], [912, 449], [912, 411]]}, "center": {"23-55": [885, 424], "3-22": [888, 424], "56-164, T:0-1": [889, 430]}},
{"id": "twl23i", "name": "NootNToot", "description": "Small YouTube content creator that makes content primarily on the Minetown Minecraft server.", "links": {"website": ["https://www.youtube.com/channel/UCcxO9zgG-i9mXQsTWGPlJhA"], "subreddit": ["minetown", "MinecraftChampionship"]}, "path": {"31-165, T:0-1": [[895, 567], [895, 576], [904, 576], [904, 567]]}, "center": {"31-165, T:0-1": [900, 572]}},
{"id": "100463", "name": "LittleBigPlanet", "description": "LittleBigPlanet is a PlayStation-exclusive puzzle platforming game franchise created in 2008 by British developer Media Molecule. It is known for its community and easy-to-learn level editor. The games in the franchise include LittleBigPlanet (2008), LittleBigPlanet PSP (2009), Sackboy's Prehistoric Moves (2010), LittleBigPlanet 2 (2011), LittleBigPlanet PS Vita (2012), LittleBigPlanet Karting (2012), Run Sackboy! Run (2014), LittleBigPlanet 3 (2014), and Sackboy: A Big Adventure (2020).\n\nThis art was created by several dedicated members of LittleBigPlanet Union and r/littlebigplanet. It includes the well-known LittleBigPlanet tree, a Sackboy face to the right, and the r/littlebigplanet subreddit text below the tree.", "links": {"website": ["https://littlebigplanet.com/", "https://www.lbpunion.com/", "https://en.wikipedia.org/wiki/LittleBigPlanet"], "subreddit": ["LittleBigPlanet"], "discord": ["YGFRh8WFDn"]}, "path": {"97-106": [[1054, 417], [1054, 435], [1072, 435], [1072, 417]], "108-164, T:0-1": [[1064, 400], [1033, 400], [1033, 366], [1051, 366], [1051, 373], [1062, 373], [1062, 379], [1051, 379], [1051, 387], [1064, 387]]}, "center": {"97-106": [1063, 426], "108-164, T:0-1": [1042, 375]}},
-{"id": "000464", "name": "Suzyroxx Twitch Streamer", "description": "Suzyroxx is a spanish twitch streamer. She is part of the content creators team of KOI.", "links": {"website": ["https://www.twitch.tv/suzyroxx"]}, "path": {"56-166, T:0-1": [[1892, 893], [1900, 893], [1900, 916], [1892, 916]]}, "center": {"56-166, T:0-1": [1896, 905]}},
+{"id": "000464", "name": "Suzyroxx", "description": "Suzyroxx is a Spanish Twitch streamer. She is part of the content creator team KOI.", "links": {"website": ["https://www.twitch.tv/suzyroxx"]}, "path": {"103-165, T:0-1": [[1892, 904], [1892, 916], [1900, 916], [1900, 904]]}, "center": {"103-165, T:0-1": [1896, 910]}},
{"id": "000465", "name": "Kerbal Space Program", "description": "Kerbal Space Program (KSP) is a planetary simulator game that includes realistic rocket physics and orbital mechanics. The large astronaut is Jeb, an iconic character from the game. Below Jeb is a representation of the Kerbol System, the game's solar system. From left to right these planets are: Kerbol (Sun), Moho (Mercury), Eve (Venus), Kerbin (Earth), Duna (Mars), Dres (Ceres), Jool (Jupiter), and Eeloo (Pluto).", "links": {"website": ["https://www.kerbalspaceprogram.com/", "https://en.wikipedia.org/wiki/Kerbal_Space_Program"], "subreddit": ["KerbalSpaceProgram"]}, "path": {"64-166, T:0-1": [[1493, 427], [1493, 415], [1495, 415], [1495, 397], [1496, 397], [1496, 394], [1497, 394], [1497, 393], [1498, 393], [1498, 392], [1500, 392], [1500, 391], [1507, 391], [1507, 392], [1509, 392], [1509, 393], [1510, 393], [1510, 394], [1511, 394], [1511, 397], [1512, 397], [1512, 427]]}, "center": {"64-166, T:0-1": [1503, 422]}},
{"id": "000466", "name": "Hytale", "description": "Hytale is an upcoming voxel sandbox role-playing game (RPG) developed by Hypixel Studios. Production began in 2015 by developers from Hypixel, a multiplayer server for the game Minecraft. They received funding and assistance from Riot Games, who later acquired the studio in 2020.\n\nThis is the second Hytale-related piece on r/place, consisting of the 'H' in Hytale's logo. The effort was started and primarily based within r/HytaleInfo, but it also gained some traction on Twitter. A few of the game's developers also helped out with a number of tiles.\n\nDuring the event r/HytaleIinfo was allied with r/Philippines, r/OnePiece, r/belgium, r/gatech, r/PoliticalCompassMemes, r/Eesti, r/BitCraftOnline, and r/hypixel.", "links": {"website": ["https://hytale.com/", "https://en.wikipedia.org/wiki/Hytale"], "subreddit": ["HytaleInfo"], "discord": ["WSjqdz3"]}, "path": {"65-166, T:0-1": [[1522, 113], [1522, 120], [1523, 120], [1523, 134], [1526, 137], [1528, 137], [1532, 140], [1532, 143], [1535, 143], [1541, 138], [1541, 121], [1543, 117], [1543, 115], [1541, 113]]}, "center": {"65-166, T:0-1": [1532, 123]}},
{"id": "000467", "name": "Timber Wolf", "description": "The Timber Wolf, also known as Mad Cat, is a mech from the BattleTech franchise. BattleTech originally started as a board game, and later spawned a spin-off video game series, MechWarrior.\n\nThis art is based on the .exe icon for MechWarrior 3 and the explosion background on the MechWarrior 2 box art.", "links": {"website": ["https://www.sarna.net/wiki/Timber_Wolf_(Mad_Cat)"], "subreddit": ["mechwarrior"]}, "path": {"71-164, T:0-1": [[1339, 522], [1339, 543], [1357, 543], [1357, 522]]}, "center": {"71-164, T:0-1": [1348, 533]}},
{"id": "000469", "name": "Modrinth", "description": "Modrinth is an open-source modding platform for the game Minecraft.", "links": {"website": ["https://modrinth.com"]}, "path": {"58-164, T:0-1": [[727, 636], [724, 639], [724, 644], [727, 647], [732, 647], [735, 644], [735, 639], [732, 636]]}, "center": {"58-164, T:0-1": [730, 642]}},
-{"id": "000470", "name": "Gem Galaxies", "description": "Gem Galaxies is a game on Roblox inspired by Steven Universe that is dedicated to role-playing. The symbol that was created is of their diamond insignia.", "links": {"website": ["https://www.roblox.com/games/273326777/Gem-Galaxies"]}, "path": {"56-165, T:0-1": [[1255, 891], [1250, 898], [1251, 899], [1255, 900], [1261, 899], [1256, 892]]}, "center": {"56-165, T:0-1": [1255, 897]}},
+{"id": "000470", "name": "Gem Galaxies", "description": "Gem Galaxies is a game on the game platform Roblox inspired by the TV show Steven Universe. It is dedicated to role-playing. This symbol is the game's diamond insignia.", "links": {"website": ["https://www.roblox.com/games/273326777/Gem-Galaxies"]}, "path": {"118-119": [[1260, 870], [1257, 873], [1257, 874], [1255, 876], [1255, 877], [1257, 879], [1263, 879], [1265, 877], [1265, 876], [1263, 874], [1263, 873]], "120-165, T:0-1": [[1255, 891], [1252, 894], [1252, 895], [1250, 897], [1250, 898], [1252, 900], [1258, 900], [1260, 898], [1260, 897], [1258, 895], [1258, 894]]}, "center": {"118-119": [1260, 875], "120-165, T:0-1": [1255, 896]}},
{"id": "000471", "name": "Rocket League", "description": "Rocket League is a vehicular soccer video game developed and published by Psyonix. In the game, two teams of players are pitted against each other in a futuristic arena to duke it out in five-minute matches. The game is a sequel to Psyonix's previous game, Supersonic Acrobatic Rocket-Powered Battle-Cars (SARPBC).\n\nThis Rocket League logo was planned and led by the RL creator RyanGoldfish.", "links": {"website": ["https://www.rocketleague.com/", "https://en.wikipedia.org/wiki/Rocket_League"], "subreddit": ["RocketLeague"]}, "path": {"70-106": [[1358, 508], [1360, 506], [1363, 505], [1396, 505], [1406, 505], [1406, 507], [1413, 507], [1413, 510], [1414, 512], [1414, 526], [1412, 531], [1404, 547], [1390, 560], [1383, 560], [1368, 546], [1362, 534], [1358, 519]], "56-65": [[1494, 491], [1534, 491], [1534, 531], [1494, 531]], "107-164, T:0-1": [[1358, 508], [1360, 506], [1363, 505], [1396, 505], [1406, 505], [1406, 507], [1413, 507], [1413, 510], [1414, 512], [1414, 540], [1424, 540], [1424, 555], [1393, 555], [1393, 557], [1389, 560], [1384, 560], [1378, 556], [1369, 548], [1363, 537], [1359, 527], [1358, 520]]}, "center": {"70-106": [1386, 529], "56-65": [1514, 511], "107-164, T:0-1": [1389, 530]}},
{"id": "2e9af3", "name": "Gudako", "description": "Gudako is a main character from the manga series \"Learn with Manga! FGO\" The manga is a spinoff from the game Fate/Grand Order (FGO), and Gudako is the chibified version of the female main character in Fate/Grand Order, Ritsuka Fujimaru. Gudako was drawn by artist Riyo, and is a common meme in the FGO community.\n\nThis is the second drawing made by r/grandorder.", "links": {"website": ["https://typemoon.fandom.com/wiki/Gudako", "https://fate-go.us/manga_fgo/"], "subreddit": ["grandorder"], "discord": ["grandorder"]}, "path": {"65-165, T:0-1": [[1476, 379], [1474, 381], [1475, 382], [1475, 384], [1472, 387], [1470, 387], [1466, 385], [1457, 382], [1447, 382], [1437, 386], [1431, 386], [1425, 392], [1422, 399], [1422, 413], [1421, 414], [1422, 415], [1426, 415], [1426, 419], [1429, 419], [1429, 422], [1427, 424], [1427, 426], [1446, 426], [1447, 429], [1452, 429], [1453, 426], [1466, 426], [1467, 429], [1472, 429], [1473, 426], [1477, 426], [1479, 423], [1479, 415], [1481, 415], [1481, 402], [1479, 397], [1475, 391], [1480, 387], [1480, 385], [1478, 381]]}, "center": {"65-165, T:0-1": [1451, 404]}},
{"id": "0480d3", "name": "BB", "description": "BB is devilish kouhai and the main antagonist in the game Fate/Extra CCC, later appearing as a playable servant in the mobile game Fate/Grand Order. She is an Advanced AI who originated from the Advanced AI Sakura Matou. As a Moon Cancer, she increased her powers by encroaching in the supercomputer Mooncell. This art of BB is based on an April Fools' drawing by illustrator Riyo, known for their work on the \"Learning with Manga! FGO\" series. The drawing gained recognition and love from the fanbase.\n\nOn r/place, BB decided to be tame and befriend her surroundings, only fighting to keep her nose in place. This was the first art created by r/grandorder on the canvas.", "links": {"website": ["https://typemoon.fandom.com/wiki/BB"], "subreddit": ["grandorder"]}, "path": {"5-166, T:0-1": [[162, 804], [160, 802], [158, 802], [157, 801], [157, 800], [156, 799], [156, 798], [155, 797], [155, 793], [154, 792], [154, 783], [155, 782], [155, 779], [156, 778], [156, 777], [157, 776], [157, 775], [158, 774], [158, 773], [163, 768], [164, 768], [165, 767], [166, 767], [167, 766], [168, 766], [169, 765], [182, 765], [183, 766], [185, 766], [186, 767], [187, 767], [188, 768], [189, 768], [195, 774], [200, 774], [202, 776], [202, 777], [201, 778], [199, 779], [197, 781], [197, 784], [202, 789], [202, 795], [207, 798], [206, 800], [205, 804]]}, "center": {"5-166, T:0-1": [177, 785]}},
@@ -789,7 +789,6 @@
{"id": "twrtfu", "name": "GeoGuessr", "description": "A pin from the game GeoGuessr, which challenges players to guess a location on a map using street view images.", "links": {"website": ["https://geoguessr.com", "https://en.wikipedia.org/wiki/GeoGuessr"], "subreddit": ["geoguessr"]}, "path": {"60-63": [[1429, 75], [1426, 78], [1426, 81], [1431, 86], [1436, 81], [1436, 78], [1433, 75]], "56-59": [[1429, 81], [1426, 84], [1426, 87], [1431, 92], [1436, 87], [1436, 84], [1433, 81]], "100-166, T:0-1": [[1486, 474], [1486, 486], [1501, 486], [1501, 474]]}, "center": {"60-63": [1431, 80], "56-59": [1431, 86], "100-166, T:0-1": [1494, 480]}},
{"id": "twrtec", "name": "Kishirika Kishirisu", "description": "A character from the novel/anime series Mushoku Tensei: Jobless Reincarnation. She valiantly fought off a European invasion.", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Kishirika_Kishirisu", "https://anilist.co/manga/85470/Mushoku-Tensei-Jobless-Reincarnation/"], "subreddit": ["mushokutensei", "sixfacedworld"]}, "path": {"93-166, T:0-1": [[1731, 212], [1747, 212], [1747, 228], [1731, 228]]}, "center": {"93-166, T:0-1": [1739, 220]}},
{"id": "twrsum", "name": "r/ShibbySays", "description": "r/ShibbySays is a subreddit dedicated to Shibby, an ASMR hypnosis (hypnokink) content creator. One of a few animated art pieces on the canvas, the colors of the spiral changed consistently up until the very end.", "links": {"website": ["https://shibbydex.com/"], "subreddit": ["ShibbySays"]}, "path": {"29-45": [[585, 173], [585, 202], [614, 202], [614, 175], [598, 175], [598, 173]], "61-92, 97-165, T:0-1": [[1197, 445], [1197, 507], [1259, 507], [1259, 445]]}, "center": {"29-45": [600, 189], "61-92, 97-165, T:0-1": [1228, 476]}},
-{"id": "twrsu0", "name": "Planetside2", "description": "PlanetSide 2 is a free-to-play massively multiplayer online first-person shooter developed by Rogue Planet Games and published by Daybreak Game Company.", "links": {"subreddit": ["planetside"]}, "path": {"56-166, T:0-1": [[1869, 893], [1892, 893], [1892, 916], [1869, 916]]}, "center": {"56-166, T:0-1": [1881, 905]}},
{"id": "twrssr", "name": "Casandra", "description": "The orange mascot of Spanish art streamer NouConcept.", "links": {"website": ["https://twitch.tv/nouconcept"]}, "path": {"149-165, T:0-1": [[29, 73], [29, 76], [26, 79], [26, 81], [25, 82], [25, 85], [24, 86], [24, 87], [23, 88], [25, 90], [29, 90], [30, 91], [34, 91], [35, 90], [39, 90], [41, 88], [40, 87], [40, 86], [39, 85], [39, 82], [38, 81], [38, 79], [36, 77], [36, 73]]}, "center": {"149-165, T:0-1": [32, 84]}},
{"id": "twrssd", "name": "Cat", "description": "Just a little cat, also known as Kočku (Czech for \"cat\"). Originally next to Czech Republic's flag, a voted decision to invade it was opposed by many Czechs when the cat's owner expressed their sadness. After a poll in which more than 200 people (against 27) voted in favour of the cat, The Czechs would help rebuild it, relocate it when that place turned impractical, and defend it until the end of r/place.", "links": {"subreddit": ["czech"]}, "path": {"109-166, T:0-1": [[1684, 1570], [1684, 1560], [1693, 1560], [1693, 1570]]}, "center": {"109-166, T:0-1": [1689, 1565]}},
{"id": "twrsph", "name": "Guinea pig gang", "description": "A group of cute guinea pigs (not to be confused with hamsters).", "links": {"website": ["https://en.wikipedia.org/wiki/Guinea_pig"], "subreddit": ["guineapigs"]}, "path": {"109-166, T:0-1": [[1317, 1681], [1332, 1681], [1332, 1697], [1228, 1696], [1226, 1676], [1236, 1680], [1240, 1682], [1273, 1680]]}, "center": {"109-166, T:0-1": [1280, 1688]}},
@@ -809,7 +808,6 @@
{"id": "twrqti", "name": "Severance", "description": "The logo of Lumon Industries from the TV show Severance.", "links": {"subreddit": ["SeveranceAppleTVPlus"]}, "path": {"109-166, T:0-1": [[895, 1736], [926, 1736], [926, 1745], [895, 1745]]}, "center": {"109-166, T:0-1": [911, 1741]}},
{"id": "twrqqt", "name": "Pokelawls", "description": "Image depicts twitch streamer pokelawls smoking from a bong. Created by pokelawls and his community.", "links": {"website": ["https://www.twitch.tv/pokelawls"], "subreddit": ["pokelawls"]}, "path": {"109-166, T:0-1": [[1645, 1075], [1692, 1075], [1692, 1121], [1646, 1120]]}, "center": {"109-166, T:0-1": [1669, 1098]}},
{"id": "twrql4", "name": "TRIA.os", "description": "TRIA.os is a Roblox platforming game made in January 2021.", "links": {"website": ["https://www.roblox.com/games/6311279644/TRIA-os-0-6-1"], "subreddit": ["place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[593, 948], [593, 974], [607, 974], [607, 964], [608, 964], [608, 960], [609, 960], [609, 954], [609, 952], [608, 952], [608, 951], [607, 951], [607, 948], [600, 948]]}, "center": {"1-166, T:0-1": [600, 961]}},
-{"id": "twrqi6", "name": "Planetside 2", "description": "Planetside 2 is a free-to-play massively multiplayer online first-person shooter released in 2012.", "links": {"website": ["https://www.planetside2.com/home"], "subreddit": ["Planetside"]}, "path": {"56-166, T:0-1": [[1869, 893], [1869, 916], [1892, 916], [1892, 893]]}, "center": {"56-166, T:0-1": [1881, 905]}},
{"id": "twrqhj", "name": "Dream", "description": "Dream is a pseudonym of an American YouTuber and Twitch streamer who is known primarily for creating Minecraft content.\n\nDream gained substantial popularity in 2019 and 2020 having uploaded videos based around the game Minecraft. He is known for his YouTube series Minecraft Manhunt and his speedruns of Minecraft. Content created in his Dream SMP (survival multiplayer) Minecraft server has also attracted considerable attention. As of January 26, 2022, his seven YouTube channels have collectively reached over 39 million subscribers and over 2.9 billion total views. YouTube awarded Dream the Streamy Award for Gaming in 2020 and 2021.\n\nThis art of Dream/Dreamwastaken was started and maintained by fans on (mostly) Twitter. However, was helped by Dream himself later during a stream. It's an example of the support from his fandom even when he is offline.", "links": {"website": ["https://www.youtube.com/c/dream"], "subreddit": ["DreamWasTaken"]}, "path": {"115-165, T:0-1": [[136, 1014], [189, 1014], [189, 1084], [136, 1084]]}, "center": {"115-165, T:0-1": [163, 1049]}},
{"id": "twrq9w", "name": "Jelledot", "description": "Jelledot is a Twitch streamer.", "links": {"website": ["https://www.twitch.tv/jelledot"]}, "path": {"142-143": [[1953, 760], [1953, 769], [1962, 769], [1962, 760]], "144-167, T:0-1": [[1953, 744], [1953, 752], [1962, 752], [1962, 744]]}, "center": {"142-143": [1958, 765], "144-167, T:0-1": [1958, 748]}},
{"id": "twrpyr", "name": "Centaurworld", "description": "(From left to right and starting at the top] The characters Zulius, Glendale, Durpleton, and Wammawink from the 2021 animated musical comedy series Centaurworld.", "links": {"website": ["https://www.netflix.com"], "subreddit": ["CentaurWorld"]}, "path": {"109-166, T:0-1": [[1551, 1361], [1538, 1361], [1536, 1358], [1535, 1352], [1539, 1351], [1542, 1349], [1545, 1349], [1546, 1349], [1546, 1345], [1549, 1343], [1550, 1344], [1550, 1350], [1552, 1351], [1551, 1353]]}, "center": {"109-166, T:0-1": [1544, 1354]}},
@@ -824,7 +822,7 @@
{"id": "twrogm", "name": "Energy sword", "description": "Melee weapon from the Halo gaming franchise. Created by xQc and his community.", "links": {"website": ["https://www.halopedia.org/Type-1_energy_sword"], "subreddit": ["halo"]}, "path": {"109-166, T:0-1": [[3, 1236], [11, 1236], [24, 1238], [29, 1245], [26, 1252], [4, 1255], [4, 1260], [10, 1264], [20, 1264], [30, 1259], [45, 1255], [54, 1255], [57, 1253], [165, 1250], [165, 1248], [165, 1242], [74, 1239], [45, 1237], [18, 1227], [11, 1228], [4, 1232]]}, "center": {"109-166, T:0-1": [71, 1246]}},
{"id": "twroad", "name": "Freddie Mercury", "description": "Freddie Mercury is a famous singer and leader of the British rock band Queen. He is depicted here in his iconic pose with his yellow jacket.\n\nThis art was a collaboration between r/ukplace and r/PlacePride, referencing the British singer's homosexuality.", "links": {"website": ["https://i0.wp.com/www.michigandaily.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-22-at-6.26.12-PM.png?fit=562%2C787&ssl=1", "https://en.wikipedia.org/wiki/Freddie_Mercury"], "subreddit": ["ukplace", "unitedkingdom", "PlacePride"]}, "path": {"152-165, T:0-1": [[564, 504], [565, 505], [566, 504], [577, 504], [577, 497], [578, 496], [578, 488], [577, 488], [575, 487], [575, 479], [573, 478], [567, 479], [566, 483], [562, 482], [561, 483], [562, 486], [563, 488], [564, 488], [565, 490], [566, 494], [567, 495], [568, 496], [565, 498], [563, 503], [564, 505]]}, "center": {"152-165, T:0-1": [572, 492]}},
{"id": "twro93", "name": "Celeste Cell Machine Wandersong collab berry", "description": "This was a collaboration between the indie games Celeste, Cell Machine, and Wandersong.", "links": {"subreddit": ["celesteplace", "celestegame", "WandersongFans", "CellMachine"], "discord": ["celeste", "d8vvEN7V", "mzgSMd759F"]}, "path": {"109-166, T:0-1": [[1435, 1287], [1437, 1287], [1437, 1292], [1438, 1295], [1434, 1299], [1433, 1299], [1429, 1295], [1430, 1289], [1433, 1288]]}, "center": {"109-166, T:0-1": [1433, 1293]}},
-{"id": "twro7p", "name": "Reichstag", "description": "The place in Berlin where the German Parliament is situated. The flags on top are the German and Ukrainian flag; the Ukrainian flag was added to show support for Ukraine during its invasion by Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Reichstag_building"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1696, 869], [1696, 850], [1698, 843], [1699, 843], [1699, 842], [1703, 842], [1703, 834], [1722, 834], [1722, 841], [1705, 841], [1705, 842], [1708, 842], [1708, 843], [1709, 843], [1709, 850], [1721, 850], [1721, 843], [1722, 843], [1722, 841], [1724, 841], [1724, 846], [1725, 846], [1725, 843], [1726, 843], [1726, 841], [1727, 841], [1727, 840], [1729, 840], [1730, 839], [1731, 839], [1736, 838], [1737, 838], [1737, 839], [1739, 839], [1739, 840], [1741, 840], [1741, 841], [1742, 841], [1742, 843], [1743, 843], [1743, 846], [1744, 846], [1744, 841], [1745, 841], [1746, 841], [1746, 843], [1747, 843], [1747, 850], [1759, 850], [1759, 843], [1760, 843], [1760, 842], [1763, 842], [1763, 834], [1764, 834], [1764, 833], [1767, 833], [1767, 834], [1768, 834], [1768, 833], [1771, 833], [1771, 834], [1774, 834], [1774, 833], [1775, 833], [1775, 832], [1779, 832], [1779, 833], [1783, 833], [1783, 832], [1784, 832], [1785, 832], [1785, 841], [1776, 841], [1776, 840], [1774, 840], [1774, 841], [1765, 841], [1765, 842], [1769, 842], [1769, 843], [1770, 843], [1770, 849], [1771, 849], [1771, 850], [1772, 850], [1772, 869]]}, "center": {"56-166, T:0-1": [1736, 854]}},
+{"id": "twro7p", "name": "Reichstag", "description": "The Reichstag, or Reichstagsgebäude (Reichstag building), is a building in the city of Berlin, Germany where the German Parliament is situated.\n\nThe flags on top are the German and Ukrainian flag; the Ukrainian flag was added to show support for Ukraine during its invasion by Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/Reichstag_building"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"90-166, T:0-1": [[1695, 850], [1695, 869], [1774, 869], [1774, 851], [1772, 849], [1772, 841], [1785, 841], [1785, 832], [1763, 832], [1763, 842], [1758, 842], [1758, 849], [1749, 849], [1749, 841], [1742, 841], [1736, 838], [1732, 838], [1727, 841], [1721, 841], [1721, 850], [1709, 850], [1709, 841], [1722, 841], [1722, 834], [1703, 834], [1703, 842], [1700, 842], [1697, 844], [1697, 849]]}, "center": {"90-166, T:0-1": [1735, 854]}},
{"id": "twro5l", "name": "Fiery Cambridge", "description": "Within a fiery duel between Obi Wan and Anakin, The crest of the University of Cambridge hides using Jedi mind tricks.", "links": {"subreddit": ["cambridge_uni"]}, "path": {"109-166, T:0-1": [[767, 1586], [784, 1586], [784, 1591], [783, 1591], [783, 1595], [782, 1595], [782, 1596], [781, 1596], [781, 1597], [780, 1597], [780, 1598], [779, 1598], [778, 1598], [778, 1599], [778, 1600], [779, 1600], [779, 1601], [780, 1601], [779, 1601], [779, 1602], [779, 1605], [778, 1605], [778, 1606], [776, 1606], [776, 1607], [771, 1607], [770, 1605], [769, 1604], [768, 1604], [767, 1603], [767, 1602]]}, "center": {"109-166, T:0-1": [774, 1595]}},
{"id": "twro4i", "name": "Stellaris", "description": "Stellaris is a 4X space strategy game by Paradox Interactive.\n\nThis art was a combined Stellaris, Rainbow Six Siege, and PHTANUM B site. It was brutally attacked by streamers in the last hours of r/place.", "links": {"website": ["https://www.paradoxinteractive.com/games/stellaris", "https://en.wikipedia.org/wiki/Stellaris_(video_game)"], "subreddit": ["Stellaris"]}, "path": {"54-61": [[857, 225], [857, 246], [897, 246], [897, 225]], "109-152, T:0-1": [[1451, 999], [1451, 1023], [1476, 1023], [1476, 999]]}, "center": {"54-61": [877, 236], "109-152, T:0-1": [1464, 1011]}},
{"id": "twrnwc", "name": "Bidetcoin", "description": "A fictional cryptocurrency created by the Spanish Twitch streamer and content creator Outconsumer and his community for the Grand Theft Auto role-play series Marbella Vice.", "links": {"website": ["https://www.bidetcoins.com/"]}, "path": {"144-151": [[1751, 404], [1759, 404], [1759, 414], [1751, 414]], "152-167, T:0-1": [[1750, 404], [1750, 414], [1758, 414], [1758, 404]]}, "center": {"144-151": [1755, 409], "152-167, T:0-1": [1754, 409]}},
@@ -839,10 +837,10 @@
{"id": "twrmlj", "name": "Esperanto flag", "description": "Esperanto is a constructed auxiliary language. It was created in 1887 by L. L. Zamenhof as a project for an international language that would be neutral and easy to learn. It is the most popular constructed language, spoken by 200,000 to 2,000,000 people.\n\nThis was originally the only Esperanto presence on canvas. It was vandalised shortly before canvas closure.", "links": {"website": ["https://esperanto.net/", "https://en.wikipedia.org/wiki/Esperanto"], "subreddit": ["Esperanto"]}, "path": {"89-163": [[771, 325], [771, 330], [781, 330], [781, 325]], "68-88": [[771, 325], [771, 330], [779, 330], [779, 325]], "49-67": [[771, 323], [771, 330], [781, 330], [781, 323]], "26-44": [[778, 315], [778, 330], [788, 330], [788, 323], [785, 323], [785, 318], [782, 318], [782, 315]], "17-25": [[778, 309], [778, 330], [782, 330], [782, 309]]}, "center": {"89-163": [776, 328], "68-88": [775, 328], "49-67": [776, 327], "26-44": [782, 326], "17-25": [780, 320]}},
{"id": "twrma6", "name": "Emil", "description": "Emil is an iconic character in Yoko Taro's game series NieR. He often appears as a disembodied head.", "links": {"website": ["https://nier.fandom.com/wiki/Emil"], "subreddit": ["nier"]}, "path": {"60-122": [[1311, 673], [1311, 697], [1335, 697], [1335, 673]], "125-165, T:0-1": [[1287, 673], [1287, 700], [1311, 700], [1311, 673]]}, "center": {"60-122": [1323, 685], "125-165, T:0-1": [1299, 687]}},
{"id": "twrlzz", "name": "r/PlaceTrees", "description": "r/PlaceTrees is a subreddit focused on placing trees on r/place. This is the main grove of r/PlaceTrees, filled with many different creatures! <3 trees!\n\nThis grove used to be located at the Immutable X area and the small area under the Scotland flag.", "links": {"subreddit": ["PlaceTrees"]}, "path": {"109-123": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [1147, 923], [1153, 917], [1153, 912], [1151, 912], [1151, 910], [1148, 910], [1144, 914], [1141, 910], [1139, 910], [1139, 912], [1138, 913], [1135, 913], [1132, 910], [1108, 910], [1106, 908], [1086, 908], [1084, 906], [1083, 907], [1083, 909], [1082, 910], [1028, 910], [1025, 905], [979, 905], [979, 909], [978, 910], [940, 910], [941, 911], [938, 915], [934, 921], [929, 917], [929, 910], [933, 905], [887, 905], [885, 903], [877, 903], [875, 905]], "79-108": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [1147, 923], [1153, 917], [1153, 912], [1151, 912], [1151, 910], [1148, 910], [1144, 914], [1141, 910], [1139, 910], [1139, 912], [1138, 913], [1135, 913], [1132, 910], [1108, 910], [1106, 908], [1086, 908], [1084, 906], [1083, 907], [1083, 909], [1082, 910], [1028, 910], [1025, 905], [886, 905], [884, 903], [877, 903], [875, 905]], "55-78": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [1147, 923], [1153, 917], [1153, 912], [1151, 912], [1151, 910], [1148, 910], [1144, 914], [1141, 910], [947, 910], [947, 905], [887, 905], [885, 903], [878, 903], [876, 905]], "39-51": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [999, 923], [999, 913], [996, 910], [908, 910], [905, 905], [887, 905], [885, 903], [877, 903], [875, 905], [875, 897], [902, 897], [907, 887], [907, 883], [904, 879], [895, 879], [892, 881], [890, 878], [885, 878], [886, 873], [886, 869], [884, 865], [878, 863], [876, 866], [876, 879], [868, 875], [855, 873], [850, 858], [841, 842], [835, 850], [830, 858], [827, 862], [827, 867], [818, 862], [816, 864], [817, 865], [817, 882], [816, 883], [816, 884], [818, 887], [818, 897], [875, 897], [875, 905]], "19-38": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [899, 923], [899, 905], [886, 905], [884, 903], [877, 903], [875, 905]], "10-18": [[795, 901], [795, 915], [803, 915], [805, 917], [808, 917], [819, 924], [822, 924], [822, 921], [829, 921], [832, 919], [842, 919], [850, 922], [851, 922], [851, 913], [853, 912], [860, 912], [862, 914], [862, 923], [900, 923], [900, 914], [902, 912], [902, 905], [909, 905], [909, 898], [957, 898], [957, 889], [958, 888], [958, 886], [908, 886], [908, 898], [909, 898], [909, 905], [846, 905], [840, 900], [818, 900], [816, 902], [810, 902], [807, 904], [806, 903], [806, 900]], "1-9": [[823, 855], [810, 859], [805, 864], [804, 878], [796, 883], [796, 894], [804, 894], [804, 896], [809, 904], [836, 904], [839, 901], [903, 901], [903, 898], [939, 898], [940, 896], [939, 890], [935, 886], [926, 884], [920, 884], [916, 881], [911, 878], [908, 883], [907, 883], [907, 858], [901, 854]], "52-54": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [999, 923], [999, 913], [996, 910], [908, 910], [905, 905], [887, 905], [885, 903], [878, 903], [876, 905]], "124-165, T:0-1": [[776, 905], [773, 909], [773, 912], [774, 913], [774, 916], [775, 917], [775, 927], [776, 927], [783, 922], [798, 915], [800, 915], [819, 925], [823, 925], [823, 921], [851, 921], [851, 913], [852, 912], [859, 912], [862, 915], [862, 923], [1133, 923], [1133, 911], [1125, 911], [1125, 905], [1111, 905], [1108, 908], [1086, 908], [1084, 905], [942, 905], [947, 910], [947, 916], [942, 921], [940, 922], [936, 922], [932, 920], [929, 915], [929, 910], [933, 905], [887, 905], [885, 903], [877, 903], [875, 905]]}, "center": {"109-123": [881, 913], "79-108": [881, 913], "55-78": [882, 913], "39-51": [839, 880], "19-38": [880, 913], "10-18": [826, 911], "1-9": [828, 879], "52-54": [882, 913], "124-165, T:0-1": [881, 913]}},
-{"id": "twrlw2", "name": ">Gamer", "description": "This little controller, is the logo of a couple of friends' Discord server, \">Gamer\". It was gracefully saved by the wholesome Touhou community multiple times.", "links": {}, "path": {"65-150": [[1750, 780], [1750, 782], [1748, 782], [1745, 785], [1745, 787], [1748, 790], [1755, 790], [1758, 787], [1758, 785], [1755, 782], [1753, 782], [1753, 780]], "151-166, T:0-1": [[1749, 782], [1746, 785], [1746, 787], [1749, 790], [1756, 790], [1759, 787], [1759, 785], [1756, 782], [1754, 782], [1754, 780], [1751, 780], [1751, 782]]}, "center": {"65-150": [1752, 786], "151-166, T:0-1": [1753, 786]}},
+{"id": "twrlw2", "name": ">Gamer", "description": "This little controller, is the logo of a couple of friends' Discord server, \">Gamer\". It was gracefully saved by the wholesome Touhou community multiple times.", "links": {}, "path": {"65-150": [[1750, 780], [1750, 782], [1748, 782], [1745, 785], [1745, 787], [1748, 790], [1755, 790], [1758, 787], [1758, 785], [1755, 782], [1753, 782], [1753, 780]], "60-64": [[1773, 813], [1770, 816], [1770, 818], [1773, 821], [1780, 821], [1783, 818], [1783, 816], [1780, 813]], "151-166, T:0-1": [[1749, 782], [1746, 785], [1746, 787], [1749, 790], [1756, 790], [1759, 787], [1759, 785], [1756, 782], [1754, 782], [1754, 780], [1751, 780], [1751, 782]]}, "center": {"65-150": [1752, 786], "60-64": [1777, 817], "151-166, T:0-1": [1753, 786]}},
{"id": "twrlp4", "name": "Mai Sakurajima", "description": "Mai Sakurajima from Rascal Does Not Dream of Bunny Girl Senpai.", "links": {"subreddit": ["maiplace"], "discord": ["nADCVDmmT5"]}, "path": {"109-166, T:0-1": [[514, 1792], [514, 1789], [515, 1788], [515, 1786], [517, 1784], [521, 1784], [522, 1785], [523, 1785], [524, 1786], [524, 1789], [526, 1791], [533, 1791], [534, 1790], [534, 1789], [535, 1788], [536, 1787], [536, 1786], [537, 1785], [540, 1785], [541, 1786], [542, 1786], [543, 1787], [543, 1788], [544, 1789], [544, 1794], [543, 1795], [539, 1795], [538, 1794], [538, 1793], [537, 1792], [536, 1793], [536, 1794], [537, 1795], [537, 1796], [538, 1797], [538, 1798], [539, 1799], [539, 1800], [540, 1801], [540, 1802], [539, 1803], [538, 1803], [538, 1805], [537, 1806], [538, 1807], [538, 1810], [537, 1811], [537, 1812], [535, 1814], [535, 1816], [534, 1817], [533, 1817], [532, 1818], [532, 1820], [531, 1821], [530, 1821], [530, 1820], [529, 1819], [529, 1818], [528, 1817], [526, 1819], [526, 1820], [525, 1821], [524, 1821], [524, 1818], [523, 1817], [522, 1816], [522, 1815], [523, 1814], [523, 1813], [522, 1813], [522, 1808], [523, 1807], [522, 1806], [522, 1803], [521, 1802], [520, 1801], [520, 1798], [519, 1798], [519, 1797], [520, 1796], [520, 1795], [522, 1793], [522, 1790], [521, 1789], [520, 1790], [520, 1792], [519, 1793], [515, 1793]]}, "center": {"109-166, T:0-1": [529, 1800]}},
{"id": "twrloh", "name": "Phosphor hearts", "description": "Hearts representing the phosphors from the game Oneshot. The hearts represent red, blue, green, and yellow phosphor", "links": {"website": ["https://oneshot.fandom.com/wiki/Phosphor"], "subreddit": ["oneshot"]}, "path": {"109-166, T:0-1": [[1080, 1675], [1099, 1674], [1103, 1670], [1103, 1667], [1095, 1667], [1088, 1669], [1083, 1670], [1078, 1672], [1078, 1673]]}, "center": {"109-166, T:0-1": [1092, 1671]}},
-{"id": "twrlng", "name": "Fubuking", "description": "Hololive First Generation VTuber Shirakami Fubuki sitting on a burger, eating a burger, with a crown on her head (hence the 'king' in 'Fubuking'). She loves burgers.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shirakami-fubuki"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1350, 1113], [1350, 1111], [1351, 1111], [1351, 1110], [1352, 1110], [1352, 1109], [1353, 1109], [1353, 1108], [1353, 1107], [1352, 1107], [1352, 1106], [1351, 1106], [1351, 1105], [1350, 1105], [1350, 1104], [1349, 1104], [1350, 1105], [1350, 1106], [1350, 1107], [1349, 1107], [1349, 1108], [1348, 1109], [1347, 1109], [1347, 1110], [1347, 1112], [1346, 1112], [1346, 1113], [1345, 1113], [1345, 1114], [1345, 1115], [1341, 1115], [1341, 1110], [1340, 1110], [1340, 1109], [1338, 1109], [1338, 1107], [1336, 1107], [1336, 1109], [1335, 1109], [1334, 1109], [1334, 1110], [1333, 1110], [1333, 1114], [1333, 1115], [1333, 1098], [1333, 1097], [1334, 1097], [1336, 1097], [1335, 1096], [1335, 1095], [1337, 1095], [1336, 1094], [1346, 1094], [1346, 1091], [1347, 1091], [1347, 1090], [1348, 1090], [1348, 1089], [1349, 1089], [1349, 1088], [1351, 1088], [1351, 1087], [1352, 1087], [1352, 1086], [1353, 1086], [1353, 1085], [1354, 1085], [1354, 1084], [1355, 1084], [1355, 1083], [1358, 1083], [1358, 1082], [1361, 1082], [1361, 1081], [1362, 1081], [1363, 1081], [1363, 1080], [1364, 1080], [1364, 1078], [1363, 1078], [1363, 1073], [1362, 1073], [1361, 1073], [1361, 1074], [1361, 1075], [1360, 1075], [1360, 1076], [1359, 1076], [1359, 1078], [1358, 1078], [1358, 1079], [1357, 1079], [1357, 1080], [1357, 1079], [1356, 1079], [1356, 1078], [1355, 1078], [1355, 1077], [1354, 1077], [1355, 1077], [1355, 1076], [1356, 1076], [1356, 1075], [1357, 1075], [1357, 1074], [1358, 1074], [1358, 1073], [1359, 1073], [1359, 1072], [1360, 1072], [1360, 1071], [1361, 1071], [1361, 1070], [1361, 1069], [1361, 1068], [1359, 1068], [1359, 1066], [1358, 1066], [1358, 1065], [1357, 1065], [1357, 1061], [1358, 1061], [1358, 1058], [1359, 1058], [1359, 1056], [1360, 1056], [1360, 1053], [1361, 1053], [1361, 1049], [1360, 1049], [1360, 1048], [1359, 1048], [1359, 1044], [1360, 1044], [1360, 1045], [1363, 1045], [1363, 1046], [1366, 1046], [1366, 1047], [1370, 1047], [1370, 1046], [1370, 1045], [1370, 1044], [1369, 1044], [1370, 1044], [1370, 1045], [1371, 1045], [1372, 1045], [1372, 1044], [1372, 1045], [1373, 1045], [1374, 1045], [1374, 1044], [1374, 1045], [1375, 1045], [1375, 1046], [1376, 1045], [1377, 1045], [1377, 1044], [1379, 1044], [1379, 1046], [1380, 1046], [1379, 1046], [1379, 1047], [1379, 1048], [1378, 1048], [1378, 1049], [1377, 1049], [1377, 1052], [1378, 1052], [1378, 1055], [1379, 1055], [1379, 1060], [1380, 1060], [1380, 1064], [1381, 1064], [1380, 1064], [1380, 1065], [1379, 1065], [1379, 1071], [1381, 1071], [1381, 1070], [1387, 1070], [1387, 1071], [1388, 1071], [1389, 1071], [1389, 1072], [1391, 1072], [1391, 1079], [1390, 1079], [1389, 1079], [1389, 1080], [1388, 1080], [1388, 1081], [1390, 1080], [1391, 1080], [1392, 1080], [1392, 1079], [1392, 1078], [1392, 1076], [1392, 1081], [1391, 1081], [1391, 1082], [1390, 1082], [1390, 1083], [1387, 1083], [1387, 1084], [1382, 1084], [1382, 1083], [1381, 1083], [1379, 1083], [1380, 1084], [1380, 1086], [1381, 1086], [1381, 1087], [1396, 1087], [1396, 1088], [1398, 1088], [1398, 1089], [1399, 1089], [1399, 1090], [1401, 1090], [1401, 1091], [1403, 1091], [1403, 1092], [1405, 1092], [1405, 1093], [1408, 1093], [1412, 1093], [1413, 1093], [1415, 1093], [1416, 1093], [1416, 1092], [1416, 1091], [1421, 1091], [1420, 1097], [1421, 1097], [1421, 1096], [1421, 1095], [1421, 1096], [1421, 1097], [1420, 1097], [1420, 1098], [1419, 1098], [1419, 1101], [1418, 1101], [1418, 1102], [1415, 1102], [1415, 1101], [1414, 1101], [1413, 1101], [1413, 1100], [1410, 1100], [1410, 1098], [1409, 1098], [1409, 1097], [1406, 1097], [1406, 1096], [1404, 1096], [1404, 1095], [1401, 1095], [1401, 1094], [1398, 1094], [1398, 1093], [1400, 1094], [1398, 1094], [1397, 1094], [1397, 1095], [1397, 1096], [1398, 1096], [1399, 1096], [1399, 1099], [1398, 1099], [1398, 1100], [1398, 1101], [1399, 1101], [1399, 1104], [1398, 1104], [1398, 1105], [1397, 1105], [1397, 1108], [1397, 1109], [1395, 1109], [1395, 1111], [1396, 1112], [1396, 1111], [1396, 1110], [1397, 1110], [1398, 1110], [1398, 1109], [1398, 1110], [1399, 1110], [1399, 1111], [1400, 1111], [1400, 1112], [1400, 1113], [1399, 1113], [1399, 1114], [1396, 1114], [1396, 1115], [1397, 1115], [1397, 1116], [1398, 1116], [1398, 1117], [1399, 1117], [1399, 1119], [1398, 1119], [1398, 1123], [1397, 1123], [1397, 1125], [1390, 1125], [1390, 1124], [1385, 1124], [1385, 1125], [1382, 1125], [1382, 1124], [1379, 1124], [1369, 1124], [1369, 1125], [1367, 1125], [1367, 1124], [1366, 1124], [1366, 1123], [1367, 1123], [1367, 1122], [1367, 1121], [1368, 1121], [1368, 1120], [1368, 1119], [1368, 1118], [1368, 1117], [1367, 1117], [1367, 1116], [1366, 1116], [1366, 1115], [1365, 1115], [1364, 1115], [1363, 1115], [1363, 1114], [1363, 1113], [1363, 1112], [1362, 1112], [1362, 1111], [1362, 1110], [1357, 1110], [1357, 1112], [1356, 1112], [1356, 1114], [1355, 1114], [1355, 1115], [1354, 1115], [1354, 1116], [1353, 1116], [1353, 1117], [1352, 1117], [1352, 1119], [1352, 1117], [1351, 1117], [1351, 1116], [1351, 1117], [1351, 1116], [1351, 1115], [1351, 1114], [1350, 1114]]}, "center": {"109-165, T:0-1": [1373, 1092]}},
+{"id": "twrlng", "name": "Fubuking", "description": "Hololive First Generation VTuber Shirakami Fubuki sitting on a burger, eating a burger, with a crown on her head (hence the 'king' in 'Fubuking'). She loves burgers.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shirakami-fubuki"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1350, 1113], [1350, 1111], [1351, 1111], [1351, 1110], [1352, 1110], [1352, 1109], [1353, 1109], [1353, 1108], [1353, 1107], [1352, 1107], [1352, 1106], [1351, 1106], [1351, 1105], [1350, 1105], [1350, 1104], [1349, 1104], [1350, 1105], [1350, 1106], [1350, 1107], [1349, 1107], [1349, 1108], [1348, 1109], [1347, 1109], [1347, 1110], [1347, 1112], [1346, 1112], [1346, 1113], [1345, 1113], [1345, 1114], [1345, 1115], [1341, 1115], [1341, 1110], [1340, 1110], [1340, 1109], [1338, 1109], [1338, 1107], [1336, 1107], [1336, 1109], [1335, 1109], [1334, 1109], [1334, 1110], [1333, 1110], [1333, 1114], [1333, 1115], [1333, 1098], [1333, 1097], [1334, 1097], [1336, 1097], [1335, 1096], [1335, 1095], [1337, 1095], [1336, 1094], [1346, 1094], [1346, 1091], [1347, 1091], [1347, 1090], [1348, 1090], [1348, 1089], [1349, 1089], [1349, 1088], [1351, 1088], [1351, 1087], [1352, 1087], [1352, 1086], [1353, 1086], [1353, 1085], [1354, 1085], [1354, 1084], [1355, 1084], [1355, 1083], [1358, 1083], [1358, 1082], [1361, 1082], [1361, 1081], [1362, 1081], [1363, 1081], [1363, 1080], [1364, 1080], [1364, 1078], [1363, 1078], [1363, 1073], [1362, 1073], [1361, 1073], [1361, 1074], [1361, 1075], [1360, 1075], [1360, 1076], [1359, 1076], [1359, 1078], [1358, 1078], [1358, 1079], [1357, 1079], [1357, 1080], [1357, 1079], [1356, 1079], [1356, 1078], [1355, 1078], [1355, 1077], [1354, 1077], [1355, 1077], [1355, 1076], [1356, 1076], [1356, 1075], [1357, 1075], [1357, 1074], [1358, 1074], [1358, 1073], [1359, 1073], [1359, 1072], [1360, 1072], [1360, 1071], [1361, 1071], [1361, 1070], [1361, 1069], [1361, 1068], [1359, 1068], [1359, 1066], [1358, 1066], [1358, 1065], [1357, 1065], [1357, 1061], [1358, 1061], [1358, 1058], [1359, 1058], [1359, 1056], [1360, 1056], [1360, 1053], [1361, 1053], [1361, 1049], [1360, 1049], [1360, 1048], [1359, 1048], [1359, 1044], [1360, 1044], [1360, 1045], [1363, 1045], [1363, 1046], [1366, 1046], [1366, 1047], [1370, 1047], [1370, 1046], [1370, 1045], [1370, 1044], [1369, 1044], [1370, 1044], [1370, 1045], [1371, 1045], [1372, 1045], [1372, 1044], [1372, 1045], [1373, 1045], [1374, 1045], [1374, 1044], [1374, 1045], [1375, 1045], [1375, 1046], [1376, 1045], [1377, 1045], [1377, 1044], [1379, 1044], [1379, 1046], [1380, 1046], [1379, 1046], [1379, 1047], [1379, 1048], [1378, 1048], [1378, 1049], [1377, 1049], [1377, 1052], [1378, 1052], [1378, 1055], [1379, 1055], [1379, 1060], [1380, 1060], [1380, 1064], [1381, 1064], [1380, 1064], [1380, 1065], [1379, 1065], [1379, 1071], [1381, 1071], [1381, 1070], [1387, 1070], [1387, 1071], [1388, 1071], [1389, 1071], [1389, 1072], [1391, 1072], [1391, 1079], [1390, 1079], [1389, 1079], [1389, 1080], [1388, 1080], [1388, 1081], [1390, 1080], [1391, 1080], [1392, 1080], [1392, 1079], [1392, 1078], [1392, 1076], [1392, 1081], [1391, 1081], [1391, 1082], [1390, 1082], [1390, 1083], [1387, 1083], [1387, 1084], [1382, 1084], [1382, 1083], [1381, 1083], [1379, 1083], [1380, 1084], [1380, 1086], [1381, 1086], [1381, 1087], [1396, 1087], [1396, 1088], [1398, 1088], [1398, 1089], [1399, 1089], [1399, 1090], [1401, 1090], [1401, 1091], [1403, 1091], [1403, 1092], [1405, 1092], [1405, 1093], [1408, 1093], [1412, 1093], [1413, 1093], [1415, 1093], [1416, 1093], [1416, 1092], [1416, 1091], [1421, 1091], [1420, 1097], [1421, 1097], [1421, 1096], [1421, 1095], [1421, 1096], [1421, 1097], [1420, 1097], [1420, 1098], [1419, 1098], [1419, 1101], [1418, 1101], [1418, 1102], [1415, 1102], [1415, 1101], [1414, 1101], [1413, 1101], [1413, 1100], [1410, 1100], [1410, 1098], [1409, 1098], [1409, 1097], [1406, 1097], [1406, 1096], [1404, 1096], [1404, 1095], [1401, 1095], [1401, 1094], [1398, 1094], [1398, 1093], [1400, 1094], [1398, 1094], [1397, 1094], [1397, 1095], [1397, 1096], [1398, 1096], [1399, 1096], [1399, 1099], [1398, 1099], [1398, 1100], [1398, 1101], [1399, 1101], [1399, 1104], [1398, 1104], [1398, 1105], [1397, 1105], [1397, 1108], [1397, 1109], [1395, 1109], [1395, 1111], [1396, 1112], [1396, 1111], [1396, 1110], [1397, 1110], [1398, 1110], [1398, 1109], [1398, 1110], [1399, 1110], [1399, 1111], [1400, 1111], [1400, 1112], [1400, 1113], [1399, 1113], [1399, 1114], [1396, 1114], [1396, 1115], [1397, 1115], [1397, 1116], [1398, 1116], [1398, 1117], [1399, 1117], [1399, 1119], [1398, 1119], [1398, 1123], [1397, 1123], [1397, 1125], [1390, 1125], [1390, 1124], [1385, 1124], [1385, 1125], [1382, 1125], [1382, 1124], [1379, 1124], [1369, 1124], [1369, 1125], [1367, 1125], [1367, 1124], [1366, 1124], [1366, 1123], [1367, 1123], [1367, 1122], [1367, 1121], [1368, 1121], [1368, 1120], [1368, 1119], [1368, 1118], [1368, 1117], [1367, 1117], [1367, 1116], [1366, 1116], [1366, 1115], [1365, 1115], [1364, 1115], [1363, 1115], [1363, 1114], [1363, 1113], [1363, 1112], [1362, 1112], [1362, 1111], [1362, 1110], [1357, 1110], [1357, 1112], [1356, 1112], [1356, 1114], [1355, 1114], [1355, 1115], [1354, 1115], [1354, 1116], [1353, 1116], [1353, 1117], [1352, 1117], [1352, 1119], [1352, 1117], [1351, 1117], [1351, 1116], [1351, 1117], [1351, 1116], [1351, 1115], [1351, 1114], [1350, 1114]]}, "center": {"109-165, T:0-1": [1373, 1092]}},
{"id": "twrlhi", "name": "Solary", "description": "Famous french esport team & webTV from TOURS, Indre-et-Loire", "links": {"website": ["https://www.solary.fr/"]}, "path": {"109-166, T:0-1": [[844, 1707], [872, 1707], [873, 1736], [845, 1736], [845, 1707]]}, "center": {"109-166, T:0-1": [859, 1722]}},
{"id": "twrleg", "name": "Beneath the Dragoneye Moons - Auri", "description": "A small hummingbird from the webserial Beneath the Dragoneye Moons by Selkie Myth, winner of the Best Serialised Fiction Stabby Award 2021.", "links": {"website": ["https://www.royalroad.com/fiction/36299/beneath-the-dragoneye-moons"]}, "path": {"109-166, T:0-1": [[1783, 1271], [1786, 1269], [1787, 1270], [1790, 1268], [1788, 1271], [1790, 1271], [1790, 1273]]}, "center": {"109-166, T:0-1": [1787, 1271]}},
{"id": "twrl9z", "name": "Joueur du Grenier", "description": "French YouTuber known for his humoristic and satirical videos about old retro games.", "links": {"website": ["https://www.youtube.com/user/joueurdugrenier"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-164, T:0-1": [[24, 1951], [22, 1951], [21, 1950], [20, 1949], [19, 1948], [19, 1947], [18, 1946], [18, 1943], [19, 1943], [20, 1942], [20, 1936], [19, 1935], [19, 1934], [17, 1932], [17, 1931], [18, 1930], [18, 1928], [19, 1927], [19, 1925], [18, 1924], [14, 1928], [13, 1928], [11, 1926], [11, 1925], [7, 1921], [6, 1921], [4, 1919], [4, 1914], [5, 1915], [6, 1914], [7, 1914], [8, 1913], [8, 1909], [7, 1908], [6, 1908], [6, 1907], [7, 1906], [7, 1905], [8, 1906], [9, 1905], [11, 1905], [12, 1906], [12, 1908], [11, 1909], [10, 1910], [9, 1910], [8, 1910], [8, 1913], [9, 1914], [11, 1915], [11, 1916], [12, 1917], [12, 1918], [11, 1919], [12, 1920], [15, 1917], [15, 1916], [16, 1915], [16, 1914], [21, 1914], [22, 1913], [22, 1911], [23, 1911], [24, 1910], [23, 1909], [22, 1909], [21, 1908], [21, 1907], [22, 1906], [22, 1904], [21, 1903], [21, 1902], [20, 1901], [21, 1900], [21, 1897], [22, 1897], [23, 1896], [23, 1898], [24, 1898], [25, 1896], [26, 1898], [27, 1896], [28, 1896], [27, 1897], [27, 1898], [28, 1898], [30, 1896], [30, 1897], [32, 1897], [32, 1898], [33, 1898], [34, 1900], [34, 1902], [35, 1903], [35, 1904], [33, 1904], [33, 1905], [34, 1906], [33, 1907], [33, 1908], [35, 1910], [36, 1910], [36, 1911], [37, 1912], [37, 1913], [38, 1913], [39, 1912], [40, 1912], [41, 1913], [41, 1914], [42, 1915], [42, 1921], [43, 1922], [43, 1924], [41, 1926], [39, 1926], [38, 1925], [37, 1925], [36, 1924], [36, 1923], [35, 1922], [34, 1923], [34, 1927], [35, 1928], [35, 1932], [36, 1933], [36, 1939], [35, 1939], [34, 1938], [33, 1939], [33, 1945], [32, 1946], [32, 1947], [31, 1947], [30, 1948], [31, 1949], [33, 1951], [33, 1954], [32, 1953], [31, 1954], [28, 1954], [27, 1953], [26, 1953], [26, 1950], [24, 1950]]}, "center": {"109-164, T:0-1": [26, 1924]}},
@@ -864,7 +862,7 @@
{"id": "twrjah", "name": "r/SGaP", "description": "r/SGaP is a subreddit about SoGreatAndPowerful, a brony (My Little Pony fandom) musician that first appeared in late 2011. They are recognized for their unique musical style and later sudden erasure of all of their published work and social media. They have returned in subsequent years under the new monikers \"mirrorsforprinces\" and \"Captive Unicorns\". Despite the mysterious communication with fans, SGaP has gained a small yet dedicated cult following, which continues to create musical and artistic tribute content to this day.", "links": {"website": ["https://sogreatandpowerful.com/", "https://mlpfanart.fandom.com/wiki/SoGreatandPowerful"], "subreddit": ["SGaP"]}, "path": {"56-61": [[1802, 196], [1802, 201], [1824, 201], [1824, 196]], "111-166, T:0-1": [[1361, 1289], [1387, 1289], [1387, 1295], [1361, 1295]]}, "center": {"56-61": [1813, 199], "111-166, T:0-1": [1374, 1292]}},
{"id": "twrj8k", "name": "Pulsus", "description": "Pulsus is a free online rhythm game for PC where the player hits incoming beats on a 3x3 tile board. It was developed by TetroGem.", "links": {"website": ["https://pulsus.cc"], "subreddit": ["Pulsus"]}, "path": {"87-128": [[675, 697], [673, 699], [670, 705], [670, 706], [672, 708], [679, 711], [684, 703], [683, 701], [676, 697]], "18-84": [[674, 674], [671, 674], [671, 681], [670, 681], [670, 689], [671, 689], [671, 692], [678, 692], [678, 693], [686, 693], [686, 692], [688, 692], [688, 684], [689, 684], [689, 681], [690, 680], [690, 677], [689, 677], [689, 676], [687, 674], [682, 674], [682, 673], [674, 673]], "5-16": [[670, 682], [670, 683], [667, 683], [667, 690], [666, 690], [666, 694], [667, 694], [667, 697], [674, 697], [674, 698], [678, 698], [678, 697], [681, 697], [681, 690], [682, 690], [682, 686], [681, 686], [681, 683], [674, 683], [674, 682]], "1-4": [[613, 717], [613, 723], [612, 723], [612, 728], [613, 728], [613, 731], [618, 731], [618, 732], [624, 732], [624, 731], [627, 731], [627, 724], [628, 724], [628, 720], [627, 720], [627, 717], [620, 717], [620, 716], [616, 716], [616, 717]], "151-165, T:0-1": [[674, 695], [680, 695], [680, 696], [683, 696], [683, 695], [686, 695], [686, 689], [687, 689], [687, 686], [686, 686], [686, 683], [680, 683], [680, 682], [677, 682], [677, 683], [674, 683], [674, 689], [673, 689], [673, 692], [674, 692]]}, "center": {"87-128": [677, 704], "18-84": [679, 683], "5-16": [674, 690], "1-4": [620, 724], "151-165, T:0-1": [680, 689]}},
{"id": "twrj8e", "name": "Abenaki flag", "description": "The Abenaki are a group of indigenous Canadians.\n\nAfter struggling to find somewhere to keep their flag, the Abenaki were given space by Toki Pona and r/Parahumans.", "links": {"website": ["https://en.wikipedia.org/wiki/Abenaki"]}, "path": {"70-85, 94-166, T:0-1": [[1705, 226], [1705, 230], [1708, 230], [1708, 226]]}, "center": {"70-85, 94-166, T:0-1": [1707, 228]}},
-{"id": "twriya", "name": "Re:Zero - Starting Life in Another World", "description": "Re:Zero - Starting Life in Another World, also known as Re: Life in a different world from zero, is a Japanese light novel series written by Tappei Nagatsuki and illustrated by Shin'ichirō Ōtsuka. The story centres on Subaru Natsuki, a hikikomori who suddenly finds himself transported to another world on his way home from the convenience store. The series was initially serialized on the website Shōsetsuka ni Narō from 2012 onwards. 29 light novels, five side story volumes, and six short story collections have been published by Media Factory under their MF Bunko J imprint. This art features three main characters from Re:Zero: Emilia, Ram, and Rem.\n\nIn the last few hours of r/place, r/lost, r/Senzawa, r/place_the_wave, r/Vivy, and r/Tunisia fought and helped to defend r/Re_Zero against rogue Tunisians who planned to take over the entire area. The defense was ultimately a success, and they all saw the end of r/place together as comrades.", "links": {"website": ["https://en.wikipedia.org/wiki/Re:Zero_%E2%88%92_Starting_Life_in_Another_World"], "subreddit": ["Re_Zero", "ReZero"]}, "path": {"57-166, T:0-1": [[1867, 799], [1867, 820], [1898, 820], [1898, 799]]}, "center": {"57-166, T:0-1": [1883, 810]}},
+{"id": "twriya", "name": "Re:Zero - Starting Life in Another World", "description": "Re:Zero - Starting Life in Another World, also known as Re: Life in a different world from zero, is a Japanese light novel series written by Tappei Nagatsuki and illustrated by Shin'ichirō Ōtsuka. The story centres on Subaru Natsuki, a hikikomori who suddenly finds himself transported to another world on his way home from the convenience store. The series was initially serialized on the website Shōsetsuka ni Narō from 2012 onwards. 29 light novels, five side story volumes, and six short story collections have been published by Media Factory under their MF Bunko J imprint. This art features three main characters from Re:Zero: Emilia, Ram, and Rem.\n\nIn the last few hours of r/place, r/lost, r/Senzawa, r/place_the_wave, r/Vivy, and r/Tunisia fought and helped to defend r/Re_Zero against rogue Tunisians who planned to take over the entire area. The defense was ultimately a success, and they all saw the end of r/place together as comrades.", "links": {"website": ["https://en.wikipedia.org/wiki/Re:Zero_%E2%88%92_Starting_Life_in_Another_World"], "subreddit": ["Re_Zero", "ReZero"]}, "path": {"57-166, T:0-1": [[1867, 799], [1867, 820], [1898, 820], [1898, 799]]}, "center": {"57-166, T:0-1": [1883, 802]}},
{"id": "twrig2", "name": "Mango the landshark", "description": "Mango is a landshark created by the swedish YouTuber The Click.", "links": {}, "path": {"56-166, T:0-1": [[1730, 922], [1749, 922], [1749, 902], [1730, 902]]}, "center": {"56-166, T:0-1": [1740, 912]}},
{"id": "twribt", "name": "Flag of Algeria", "description": "Algeria is a country in North Africa. Related to it is the Amazigh flag (native North Africans) under it.\n\nThis flag was created by the Algerian subreddit. People tried to turn its neighbours against the flag to destroy it. The flag suffered a lot of attacks from Moroccan streamers, but with the help of Liverpool F.C. and the French-Algerian streamer Kamet0, the Algerian flag survived.", "links": {"website": ["https://en.wikipedia.org/wiki/Algeria", "https://en.wikipedia.org/wiki/Flag_of_Algeria"], "subreddit": ["algeria"]}, "path": {"119-158": [[1595, 1579], [1595, 1609], [1654, 1609], [1654, 1579]], "109-118": [[1596, 1579], [1596, 1609], [1639, 1609], [1639, 1579]], "12-48": [[222, 78], [222, 101], [245, 101], [245, 78]], "7-11": [[283, 45], [298, 45], [298, 35], [283, 35], [283, 45], [242, 82], [227, 82], [227, 92], [242, 92], [242, 82]], "83-90": [[1909, 791], [1909, 799], [1920, 799], [1920, 791]], "68-81": [[1909, 790], [1909, 799], [1920, 799], [1920, 790]], "159-165, T:0-1": [[1533, 1609], [1533, 1579], [1700, 1579], [1700, 1609]]}, "center": {"119-158": [1625, 1594], "109-118": [1618, 1594], "12-48": [234, 90], "7-11": [292, 40], "83-90": [1915, 795], "68-81": [1915, 795], "159-165, T:0-1": [1617, 1594]}},
{"id": "twri8h", "name": "Wanderer above the Sea of Fog", "description": "Wanderer above the Sea of Fog is a painting by German Romantic artist Caspar David Friedrich made in 1818.\n\nThis painting makes a cameo in the paintings in Minecraft.", "links": {"website": ["https://en.wikipedia.org/wiki/Wanderer_above_the_Sea_of_Fog"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-167, T:0-1": [[1979, 828], [1979, 867], [1998, 867], [1998, 828]]}, "center": {"56-167, T:0-1": [1989, 848]}},
@@ -891,17 +889,17 @@
{"id": "twrf4s", "name": "Gojo Satoru", "description": "Gojo Satoru, a special grade jujutsu sorcerer, first bearer of both the Limitless and Six Eyes technique in 400 years, regarded as the strongest sorcerer of the modern world. Mentor at Tokyo Metropolitan Curse Technical College.", "links": {"subreddit": ["JuJutsuKaisen"]}, "path": {"109-166, T:0-1": [[455, 1420], [446, 1420], [445, 1401], [445, 1400], [421, 1400], [422, 1417], [426, 1417], [426, 1436], [452, 1436], [455, 1431], [455, 1426]]}, "center": {"109-166, T:0-1": [437, 1419]}},
{"id": "twrew4", "name": "Reveille", "description": "The school mascot of Texas A&M University.", "links": {"website": ["https://en.wikipedia.org/wiki/Reveille_(dog)"], "subreddit": ["aggies"]}, "path": {"109-166, T:0-1": [[855, 1950], [874, 1950], [874, 1959], [883, 1959], [883, 1970], [855, 1970]]}, "center": {"109-166, T:0-1": [867, 1961]}},
{"id": "twreup", "name": "Löwenzahn Bauwagen", "description": "It's the Home of the protagonist of a German Show that aims to bring science to young kids and adults. Formerly it was home to Peter Lustig and now to Fritz Fuchs", "links": {}, "path": {"109-165, T:0-1": [[967, 1171], [965, 1171], [965, 1170], [963, 1169], [963, 1167], [956, 1167], [956, 1168], [957, 1169], [957, 1171], [937, 1171], [937, 1169], [938, 1169], [938, 1168], [938, 1167], [923, 1167], [923, 1169], [915, 1169], [914, 1168], [914, 1167], [908, 1167], [908, 1165], [908, 1162], [910, 1162], [910, 1159], [907, 1159], [906, 1135], [940, 1135], [940, 1139], [956, 1139], [956, 1136], [957, 1136], [958, 1135], [959, 1136], [963, 1136], [963, 1135], [964, 1135], [965, 1135], [965, 1136], [966, 1136], [966, 1139], [972, 1139], [972, 1140], [973, 1141], [974, 1143], [974, 1145], [975, 1145], [976, 1146], [976, 1148], [975, 1148], [975, 1156], [976, 1156], [976, 1157], [978, 1157], [978, 1158], [979, 1159], [979, 1160], [978, 1161], [976, 1161], [975, 1162], [974, 1163], [973, 1164], [972, 1164], [973, 1166], [973, 1167], [969, 1167], [969, 1169], [968, 1169], [967, 1170]]}, "center": {"109-165, T:0-1": [940, 1153]}},
-{"id": "twrese", "name": "TU Berlin", "description": "The logo of the Technical University in Berlin. It was mostly held alive by the german community, Thanks to DerBerliner.", "links": {"website": ["https://www.tu.berlin/"], "subreddit": ["tuberlin"]}, "path": {"56-166, T:0-1": [[1392, 806], [1392, 830], [1430, 830], [1430, 829], [1459, 829], [1459, 822], [1443, 822], [1443, 820], [1434, 820], [1434, 824], [1411, 824], [1411, 817], [1401, 817], [1401, 806]]}, "center": {"56-166, T:0-1": [1418, 823]}},
+{"id": "twrese", "name": "Technical University of Berlin", "description": "The Technical University of Berlin (TU Berlin) is a university in Berlin, Germany.\n\nThis art was mostly kept alive by the German community, thanks to DerBerliner.", "links": {"website": ["https://www.tu.berlin/", "https://en.wikipedia.org/wiki/Technical_University_of_Berlin"], "subreddit": ["tuberlin"]}, "path": {"94-142": [[1392, 806], [1392, 830], [1411, 830], [1411, 817], [1401, 817], [1401, 806]], "62-93": [[1392, 819], [1392, 830], [1405, 830], [1405, 819]], "143-166, T:0-1": [[1392, 806], [1392, 830], [1430, 830], [1430, 829], [1459, 829], [1459, 822], [1443, 822], [1443, 820], [1434, 820], [1434, 824], [1411, 824], [1411, 817], [1401, 817], [1401, 806]]}, "center": {"94-142": [1399, 824], "62-93": [1399, 825], "143-166, T:0-1": [1399, 823]}},
{"id": "twreom", "name": "Edward Elric", "description": "Edward Elric is the protagonist of the Fullmetal Alchemist manga.\n\nThe Fullmetal Alchemist community managed to sneak this art in at the very end of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Edward_Elric"], "subreddit": ["FullmetalAlchemist"]}, "path": {"162-166, T:0-1": [[1593, 392], [1593, 412], [1611, 412], [1611, 392]]}, "center": {"162-166, T:0-1": [1602, 402]}},
{"id": "twgxb9", "name": "keqLove", "description": "keqLove is an emote from the Keqing Mains (KQM), a community for the game Genshin Impact focused on the character Keqing. The emote depicts Keqing holding a heart.\n\nThis was made by r/KeqingMains with the help of their allies.", "links": {"website": ["https://keqingmains.com/", "https://genshin-impact.fandom.com/wiki/Keqing"], "subreddit": ["KeqingMains"]}, "path": {"71-165, T:0-1": [[1561, 535], [1561, 483], [1509, 483], [1509, 535]]}, "center": {"71-165, T:0-1": [1535, 509]}},
-{"id": "twre65", "name": "Kep1er", "description": "Kep1er is a nine-member K-pop project girl group formed through the Mnet survival show Girls Planet 999. They officially debuted on January 3, 2022 with the mini-album \"FIRST IMPACT\" and title track \"WA DA DA\".", "links": {"website": ["https://wake-one.com/artists/kep1er/", "https://en.wikipedia.org/wiki/Kep1er"], "subreddit": ["kep1er"]}, "path": {"66-84": [[1633, 879], [1633, 897], [1670, 897], [1670, 879]], "37-52": [[216, 877], [216, 890], [254, 890], [254, 877]], "85-166, T:0-1": [[1633, 879], [1633, 892], [1670, 892], [1670, 879]]}, "center": {"66-84": [1652, 888], "37-52": [235, 884], "85-166, T:0-1": [1652, 886]}},
+{"id": "twre65", "name": "Kep1er", "description": "Kep1er (pronounced Kep-ler) is a nine-member K-pop project girl group formed through the Mnet survival show Girls Planet 999. The group is managed by WakeOne Entertainment They officially debuted on January 3, 2022 with the mini-album \"FIRST IMPACT\" and title track \"WA DA DA\". Despite their recent debut, Kep1er has already made waves in the K-pop industry and broken numerous records. Currently, the team is finding further success as participants on Mnet's TV series Queendom 2.", "links": {"website": ["https://wake-one.com/artists/kep1er/", "https://en.wikipedia.org/wiki/Kep1er"], "subreddit": ["kep1er", "kpop"]}, "path": {"66-84": [[1633, 879], [1633, 897], [1670, 897], [1670, 879]], "37-52": [[216, 877], [216, 890], [254, 890], [254, 877]], "85-166, T:0-1": [[1633, 879], [1633, 892], [1670, 892], [1670, 879]]}, "center": {"66-84": [1652, 888], "37-52": [235, 884], "85-166, T:0-1": [1652, 886]}},
{"id": "twre3d", "name": "Balisong Community Logos", "description": "A group of logos pertaining to the Balisong Knife Community. Featuring CamaroEE, Glidrco, Zippybalisong, Squid Industries, NRB and TheWillHirsch.", "links": {"subreddit": ["balisong"]}, "path": {"125-164, T:0-1": [[1795, 1208], [1815, 1208], [1815, 1207], [1818, 1207], [1818, 1208], [1827, 1208], [1827, 1194], [1801, 1194], [1799, 1196], [1799, 1197], [1797, 1199], [1797, 1200], [1796, 1201], [1796, 1202], [1795, 1203]]}, "center": {"125-164, T:0-1": [1811, 1201]}},
{"id": "twre2w", "name": "LilyPichu", "description": "Variety streamer (mainly music and games), YouTuber and voice actress.\n\nFriend of streamer Destiny which lead to the inclusion of her logo into the GigaChad", "links": {"website": ["https://lilypichu.com/"], "subreddit": ["lilypichu"]}, "path": {"109-165, T:0-1": [[1931, 1442], [1931, 1466], [1958, 1467], [1957, 1443]]}, "center": {"109-165, T:0-1": [1944, 1455]}},
{"id": "twre1o", "name": "FeelsYabbeMan", "description": "A Twitch emote of the Twitch streamer Yabbe with a FeelsDonkMan hat.", "links": {"website": ["https://twitch.tv/yabbe"]}, "path": {"1-166, T:0-1": [[656, 942], [656, 933], [664, 933], [664, 942]]}, "center": {"1-166, T:0-1": [660, 938]}},
{"id": "twrdy3", "name": "Serbian Cross", "description": "The Serbian Cross is a symbol of the Serbian Orthodox Church and a national symbol of Serbia, part of the coat of arms and flag of Serbia. It is based on the tetragrammic cross emblem/flag of the Byzantine Palaiologos dynasty.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbian_cross"], "subreddit": ["serbia", "place_CentralAlliance"]}, "path": {"18-93": [[328, 897], [328, 901], [332, 901], [332, 905], [336, 905], [336, 908], [338, 908], [338, 906], [340, 906], [340, 905], [344, 905], [344, 901], [348, 901], [348, 897], [344, 897], [344, 893], [340, 893], [340, 890], [336, 890], [336, 893], [332, 893], [332, 897]], "94-165, T:0-1": [[344, 891], [344, 895], [343, 895], [343, 898], [344, 898], [344, 902], [348, 902], [348, 903], [351, 903], [351, 902], [355, 902], [355, 898], [356, 898], [356, 895], [355, 895], [355, 891], [351, 891], [351, 890], [348, 890], [348, 891]]}, "center": {"18-93": [338, 899], "94-165, T:0-1": [350, 897]}},
{"id": "twrdu0", "name": "CarlSagan42's Yoshi", "description": "A Yoshi head made by viewers of CarlSagan42's Twitch stream, with a long tongue snaking around various other drawings.", "links": {"website": ["https://twitch.tv/carlsagan42"]}, "path": {"157-162": [[1856, 1276], [1856, 1257], [1834, 1257], [1834, 1273], [1835, 1273], [1835, 1276]]}, "center": {"157-162": [1845, 1267]}},
{"id": "twrdse", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/William_the_Silent"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"143-165, T:0-1": [[1890, 34], [1888, 34], [1888, 33], [1887, 33], [1887, 32], [1885, 32], [1885, 31], [1884, 31], [1884, 30], [1883, 30], [1883, 29], [1882, 29], [1882, 28], [1879, 25], [1879, 23], [1879, 21], [1880, 21], [1880, 18], [1881, 18], [1881, 13], [1880, 13], [1880, 10], [1881, 10], [1881, 6], [1882, 6], [1882, 4], [1883, 4], [1883, 3], [1884, 3], [1884, 2], [1897, 2], [1897, 3], [1898, 4], [1900, 6], [1901, 6], [1901, 7], [1902, 8], [1902, 17], [1903, 18], [1904, 19], [1904, 22], [1906, 24], [1907, 25], [1907, 28], [1906, 28], [1906, 30], [1905, 30], [1905, 33], [1904, 33], [1903, 34]]}, "center": {"143-165, T:0-1": [1892, 22]}},
-{"id": "twrdr7", "name": "Red Velvet", "description": "The logo of Red Velvet (RV), a South Korean girl group formed and managed by SM Entertainment. The group consists of members: Irene, Seulgi, Wendy, Joy and Yeri. Musically, The work of Red Velvet reflects their own group name: their predominantly pop \"red\" side experiments occasionally with electronic, funk and hip hop, while their \"velvet\" side focuses on '90s-influenced rhythm & blues with elements of ballad and jazz. Their genre versatility and hooks have garnered critical praise. The five colors on the rightmost end of the name represents the five members of the group.", "links": {"website": ["https://redvelvet-jp.net/en/"], "subreddit": ["red_velvet"]}, "path": {"56-166, T:0-1": [[1606, 879], [1606, 903], [1646, 903], [1646, 897], [1633, 897], [1633, 879]]}, "center": {"56-166, T:0-1": [1622, 892]}},
+{"id": "twrdr7", "name": "Red Velvet", "description": "Red Velvet (RV) is a South Korean girl group formed and managed by SM Entertainment. They originally debuted on August 1, 2014 with the single \"Happiness\", with the four-member line-up of Irene, Seulgi, Wendy and Joy. A fifth member, Yeri, joined the group in March 2015. Musically, the work of Red Velvet reflects their own group name: their predominantly pop \"red\" side experiments occasionally with electronic, funk, and hip hop, while their \"velvet\" side focuses on '90s-influenced rhythm & blues with elements of ballad and jazz. Their genre versatility and hooks have garnered critical praise. The five colors on the rightmost end of the name represents the five members of the group.", "links": {"website": ["https://redvelvet-jp.net/en/", "https://en.wikipedia.org/wiki/Red_Velvet_(group)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"64-72": [[1606, 879], [1606, 897], [1633, 897], [1633, 879]], "73-166, T:0-1": [[1606, 879], [1606, 903], [1646, 903], [1646, 897], [1633, 897], [1633, 879]]}, "center": {"64-72": [1620, 888], "73-166, T:0-1": [1618, 891]}},
{"id": "twrdq5", "name": "vutEZ", "description": "vutEZ is an emote from the VUT FIT Discord server. The server is a community of the Brno University of Technology (Czech: Vysoké Učení Technické v Brně; VUT.CZ), a public university in Brno, Czech Republic consisting of eight faculties and two major institutions.", "links": {"website": ["https://www.su.fit.vutbr.cz/", "https://en.wikipedia.org/wiki/Brno_University_of_Technology"], "subreddit": ["vutbrno"]}, "path": {"57-164, T:0-1": [[1330, 570], [1330, 599], [1361, 599], [1361, 570]]}, "center": {"57-164, T:0-1": [1346, 585]}},
{"id": "twrdot", "name": "nu.nl", "description": "A Dutch news website founded in 1999.", "links": {"website": ["https://www.nu.nl/"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[607, 1951], [604, 1953], [603, 1958], [603, 1963], [604, 1964], [605, 1966], [607, 1967], [609, 1968], [610, 1969], [614, 1969], [615, 1968], [616, 1968], [617, 1967], [618, 1967], [619, 1966], [620, 1965], [620, 1964], [621, 1963], [621, 1962], [623, 1962], [624, 1961], [625, 1960], [625, 1959], [625, 1958], [624, 1957], [623, 1956], [621, 1956], [620, 1955], [619, 1954], [619, 1953], [618, 1952], [617, 1952], [616, 1951], [615, 1951], [614, 1950], [610, 1950], [609, 1951]]}, "center": {"109-166, T:0-1": [613, 1959]}},
{"id": "twrd56", "name": "Imperial College", "description": "Logo of Imperial College London, with art of Queen's Tower and Central Library", "links": {"website": ["https://www.imperial.ac.uk"], "subreddit": ["imperial"]}, "path": {"109-166, T:0-1": [[525, 1435], [525, 1446], [524, 1446], [524, 1460], [537, 1460], [537, 1431], [529, 1432]]}, "center": {"109-166, T:0-1": [531, 1446]}},
@@ -910,7 +908,7 @@
{"id": "twrczf", "name": "Tryzub", "description": "The tryzub is the coat of arms of Ukraine, a blue shield with a gold trident. The insignia derives from the seal-trident of Volodymyr, the first Grand Prince of Kyiv.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"60-111": [[187, 191], [187, 225], [201, 233], [205, 233], [219, 225], [219, 191]], "47-59": [[187, 191], [187, 233], [219, 233], [219, 191]], "112-165, T:0-1": [[205, 233], [219, 225], [219, 192], [188, 192], [188, 206], [190, 206], [190, 211], [191, 211], [191, 219], [190, 219], [190, 226], [203, 233], [202, 234], [205, 234], [206, 233]]}, "center": {"60-111": [203, 210], "47-59": [203, 212], "112-165, T:0-1": [205, 207]}},
{"id": "twrcmo", "name": "Church of Saint Sava", "description": "The Church of Saint Sava (Serbian: Hram Svetog Save u Beogradu) is a Serbian Orthodox church which sits on the Vračar plateau in Belgrade, Serbia. It was planned as the bishopric seat and main cathedral of the Serbian Orthodox Church. The church is dedicated to Saint Sava, the founder of the Serbian Orthodox Church and an important figure in medieval Serbia.", "links": {"website": ["https://en.wikipedia.org/wiki/Church_of_Saint_Sava"], "subreddit": ["serbia", "place_CentralAlliance"]}, "path": {"92-166, T:0-1": [[303, 900], [301, 903], [301, 910], [338, 910], [338, 906], [341, 906], [341, 903], [339, 900], [337, 900], [337, 899], [333, 895], [333, 891], [331, 889], [329, 891], [328, 891], [326, 889], [326, 888], [323, 888], [323, 887], [321, 885], [319, 887], [319, 888], [317, 888], [315, 890], [312, 890], [311, 889], [309, 891], [309, 895], [305, 899], [305, 900]]}, "center": {"92-166, T:0-1": [321, 899]}},
{"id": "twrclv", "name": "Association of Southeast Asian Nations", "description": "The Association of Southeast Asian Nations (ASEAN) is a political/economic union of countries in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/ASEAN", "https://en.wikipedia.org/wiki/Flag_of_the_Association_of_Southeast_Asian_Nations"], "subreddit": ["Asean", "Philippines"]}, "path": {"126-145": [[1348, 648], [1348, 671], [1374, 671], [1374, 648]], "88-124": [[1347, 648], [1347, 671], [1374, 671], [1374, 648]], "57-82": [[1474, 727], [1474, 739], [1486, 739], [1486, 727]], "152-166, T:0-1": [[1374, 671], [1348, 671], [1348, 648], [1374, 648]]}, "center": {"126-145": [1361, 660], "88-124": [1361, 660], "57-82": [1480, 733], "152-166, T:0-1": [1361, 660]}},
-{"id": "twrci5", "name": "BattleBots", "description": "The logo of robot combat TV show BattleBots and a tiny image of fan-favorite competitor Rusty.", "links": {"website": ["https://battlebots.com"], "subreddit": ["battlebots"]}, "path": {"56-166, T:0-1": [[1794, 897], [1806, 897], [1806, 911], [1804, 911], [1804, 905], [1794, 905]]}, "center": {"56-166, T:0-1": [1801, 902]}},
+{"id": "twrci5", "name": "BattleBots", "description": "BattleBots is a robot combat TV show. This art depicts the show's logo and an image of fan-favorite competitor Rusty.", "links": {"website": ["https://battlebots.com", "https://en.wikipedia.org/wiki/BattleBots"], "subreddit": ["battlebots"]}, "path": {"85-122": [[1792, 897], [1792, 912], [1806, 912], [1806, 897]], "63-84": [[1792, 897], [1792, 907], [1806, 907], [1806, 897]], "56-62": [[1792, 896], [1792, 906], [1806, 906], [1806, 896]], "125-166, T:0-1": [[1793, 896], [1793, 906], [1803, 906], [1803, 912], [1807, 912], [1807, 896]]}, "center": {"85-122": [1799, 905], "63-84": [1799, 902], "56-62": [1799, 901], "125-166, T:0-1": [1801, 901]}},
{"id": "twrcav", "name": "Squishmallow", "description": "Squishmalllows are collecatble stuffed animals. The two represented here are cows called Patty and Caedyn.", "links": {"subreddit": ["squishmallow"]}, "path": {"109-166, T:0-1": [[418, 1944], [430, 1944], [430, 1969], [418, 1969], [418, 1956]]}, "center": {"109-166, T:0-1": [424, 1957]}},
{"id": "twrcaj", "name": "Stroopwafel", "description": "A traditional Dutch cookie that has sugar syrup between the two layers. The name means 'syrup waffle' in English.", "links": {"website": ["https://en.wikipedia.org/wiki/Stroopwafel"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[632, 1968], [631, 1968], [631, 1967], [630, 1967], [629, 1967], [629, 1965], [628, 1965], [628, 1963], [627, 1963], [627, 1958], [628, 1958], [628, 1955], [629, 1955], [633, 1951], [633, 1950], [636, 1950], [636, 1949], [639, 1949], [639, 1948], [649, 1948], [649, 1949], [652, 1949], [652, 1950], [654, 1950], [654, 1951], [655, 1951], [656, 1951], [656, 1952], [657, 1952], [657, 1953], [658, 1953], [658, 1954], [659, 1954], [659, 1957], [660, 1957], [660, 1963], [659, 1963], [659, 1964], [659, 1965], [658, 1965], [658, 1966], [657, 1966], [657, 1967], [656, 1967], [656, 1968], [655, 1968], [655, 1969], [652, 1969], [652, 1968], [649, 1968], [649, 1967], [644, 1967], [644, 1966], [643, 1966], [643, 1965], [642, 1965], [642, 1966], [639, 1966], [639, 1967], [637, 1967], [637, 1968], [635, 1968], [635, 1969], [632, 1969]]}, "center": {"109-166, T:0-1": [644, 1959]}},
{"id": "twrc97", "name": "Mango", "description": "(one of the) mascots of YouTuber the click", "links": {"website": ["https://www.youtube.com/user/CrazyShootin"], "subreddit": ["TheClickOwO"]}, "path": {"56-166, T:0-1": [[1748, 921], [1748, 902], [1731, 902], [1731, 921]]}, "center": {"56-166, T:0-1": [1740, 912]}},
@@ -940,7 +938,7 @@
{"id": "twr92j", "name": "You'll Never Walk Alone", "description": "YNWA (You'll Never Walk Alone) is a motto of Liverpool Football Club.\n\nThis art was made here in collaboration with Borussia Dortmund, because both clubs were/are under management of the legendary Jürgen Klopp.", "links": {"website": ["https://en.wikipedia.org/wiki/You%27ll_Never_Walk_Alone"], "subreddit": ["LiverpoolFC"]}, "path": {"19-73": [[488, 562], [488, 609], [495, 609], [495, 562]], "147-166, T:0-1": [[1608, 1579], [1608, 1571], [1581, 1572], [1582, 1579]]}, "center": {"19-73": [492, 586], "147-166, T:0-1": [1597, 1575]}},
{"id": "twr91j", "name": "Flo and Nico in Canary", "description": "We wanted to represent our Canarian life as French without putting the French flag again.", "links": {"website": ["https://www.youtube.com/watch?v=eSUKpa1Viq0&ab_channel=NicoJo"]}, "path": {"133-146": [[17, 66], [17, 71], [35, 71], [35, 66]]}, "center": {"133-146": [26, 69]}},
{"id": "twr8ql", "name": "University of Oklahoma", "description": "The University of Oklahoma is a university in Norman, Oklahoma. The top left is the Sooner Schooner, the university's mascot. The top right is an outline of the state of Oklahoma. The bottom left is the logo for OU. The bottom right is a rare alliance with the University of Texas's Texas Longhorns, to show support for the Southeastern Conference (SEC), an American football conference.\n\nThis tribute to the University of Oklahoma created by the Sooner Nation. BOOMER!", "links": {"website": ["http://www.ou.edu/", "https://en.wikipedia.org/wiki/University_of_Oklahoma"], "subreddit": ["sooners"]}, "path": {"109-110": [[1246, 1822], [1246, 1837], [1260, 1837], [1260, 1822]], "63-69": [[1833, 705], [1833, 715], [1841, 715], [1841, 705]], "57-62": [[1832, 704], [1832, 714], [1840, 714], [1840, 704]], "75-93": [[1828, 698], [1828, 715], [1842, 715], [1842, 698]], "111-166, T:0-1": [[1257, 1815], [1257, 1843], [1271, 1843], [1276, 1848], [1285, 1848], [1291, 1842], [1291, 1815]]}, "center": {"109-110": [1253, 1830], "63-69": [1837, 710], "57-62": [1836, 709], "75-93": [1835, 707], "111-166, T:0-1": [1273, 1829]}},
-{"id": "twr8l9", "name": "Flag of Germany", "description": "Germany is a country in Central Europe.\n\nThis is the second expansion of German territory on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[2000, 829], [1999, 869], [1055, 869], [1055, 830], [1917, 832], [1919, 830]]}, "center": {"56-166, T:0-1": [1525, 850]}},
+{"id": "twr8l9", "name": "Flag of Germany", "description": "Germany is a country in Central Europe.\n\nThis is the second expansion of German territory on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Flag_of_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"55-59": [[2000, 829], [1999, 869], [1005, 869], [1005, 829]], "60-64": [[2000, 829], [1999, 869], [1043, 869], [1043, 829]], "65-166, T:0-1": [[2000, 829], [1999, 869], [1055, 869], [1055, 830], [1917, 830], [1919, 830]]}, "center": {"55-59": [1503, 849], "60-64": [1522, 849], "65-166, T:0-1": [1950, 849]}},
{"id": "twr8ia", "name": "Anon Filly", "description": "Mascot pony of 4chan's My Little Pony community (/mlp/).", "links": {"website": ["https://boards.4channel.org/mlp/"]}, "path": {"109-165, T:0-1": [[919, 1829], [919, 1823], [918, 1823], [918, 1820], [915, 1820], [915, 1819], [914, 1819], [914, 1818], [913, 1818], [913, 1809], [915, 1809], [915, 1808], [916, 1808], [916, 1807], [917, 1807], [917, 1806], [920, 1806], [920, 1805], [923, 1805], [923, 1806], [924, 1806], [924, 1807], [925, 1807], [925, 1808], [925, 1809], [926, 1809], [927, 1809], [927, 1811], [929, 1811], [929, 1812], [930, 1812], [930, 1813], [936, 1813], [936, 1814], [937, 1814], [937, 1815], [938, 1815], [938, 1816], [939, 1816], [939, 1821], [941, 1821], [941, 1825], [940, 1825], [940, 1826], [939, 1826], [939, 1827], [938, 1827], [938, 1828], [933, 1828], [933, 1829]]}, "center": {"109-165, T:0-1": [926, 1818]}},
{"id": "twr8c9", "name": "Spike Spiegel", "description": "Spike Spiegel is a character from the 1998 anime Cowboy Bebop.", "links": {"website": ["https://en.wikipedia.org/wiki/Spike_Spiegel"], "subreddit": ["cowboybebop"]}, "path": {"109-166, T:0-1": [[1226, 1492], [1227, 1492], [1227, 1491], [1284, 1491], [1284, 1492], [1285, 1492], [1285, 1505], [1286, 1504], [1287, 1505], [1286, 1506], [1285, 1507], [1285, 1607], [1284, 1607], [1284, 1608], [1227, 1608], [1227, 1607], [1226, 1607], [1226, 1585], [1227, 1584], [1228, 1583], [1229, 1582], [1230, 1582], [1230, 1580], [1227, 1580], [1226, 1581], [1226, 1567], [1225, 1566], [1224, 1564], [1223, 1562], [1222, 1561], [1221, 1561], [1220, 1561], [1219, 1560], [1218, 1559], [1217, 1558], [1216, 1557], [1215, 1556], [1214, 1555], [1213, 1554], [1212, 1553], [1213, 1552], [1212, 1551], [1211, 1552], [1210, 1551], [1209, 1550], [1208, 1549], [1208, 1548], [1207, 1548], [1206, 1547], [1206, 1546], [1205, 1546], [1204, 1545], [1204, 1544], [1201, 1544], [1201, 1542], [1200, 1541], [1199, 1542], [1198, 1541], [1199, 1540], [1197, 1540], [1196, 1539], [1194, 1539], [1194, 1538], [1193, 1537], [1190, 1537], [1190, 1535], [1188, 1535], [1188, 1533], [1187, 1532], [1186, 1531], [1187, 1530], [1186, 1529], [1185, 1529], [1184, 1530], [1184, 1531], [1185, 1532], [1184, 1533], [1183, 1533], [1182, 1532], [1181, 1533], [1182, 1534], [1181, 1535], [1180, 1536], [1178, 1536], [1177, 1537], [1176, 1536], [1175, 1535], [1174, 1534], [1172, 1534], [1171, 1533], [1171, 1530], [1172, 1530], [1172, 1527], [1171, 1526], [1170, 1525], [1169, 1524], [1168, 1523], [1168, 1520], [1167, 1521], [1166, 1520], [1167, 1519], [1169, 1518], [1170, 1518], [1171, 1517], [1172, 1516], [1173, 1515], [1174, 1514], [1175, 1513], [1177, 1513], [1178, 1512], [1179, 1511], [1180, 1510], [1181, 1510], [1182, 1509], [1183, 1509], [1184, 1508], [1185, 1507], [1189, 1507], [1190, 1506], [1191, 1506], [1192, 1505], [1193, 1506], [1194, 1505], [1196, 1504], [1196, 1505], [1197, 1506], [1198, 1507], [1199, 1507], [1200, 1506], [1201, 1507], [1201, 1508], [1204, 1508], [1204, 1509], [1205, 1510], [1206, 1509], [1207, 1510], [1208, 1511], [1209, 1512], [1210, 1513], [1211, 1513], [1212, 1514], [1212, 1515], [1213, 1516], [1214, 1516], [1215, 1516], [1215, 1517], [1217, 1517], [1217, 1518], [1218, 1519], [1219, 1519], [1219, 1520], [1219, 1524], [1218, 1525], [1217, 1526], [1216, 1526], [1216, 1527], [1215, 1528], [1214, 1528], [1214, 1529], [1213, 1530], [1213, 1533], [1212, 1533], [1211, 1534], [1211, 1535], [1210, 1536], [1211, 1537], [1211, 1540], [1212, 1541], [1212, 1542], [1213, 1543], [1213, 1545], [1214, 1546], [1215, 1545], [1216, 1546], [1216, 1547], [1217, 1547], [1218, 1549], [1219, 1550], [1219, 1551], [1220, 1552], [1220, 1553], [1221, 1554], [1221, 1555], [1222, 1556], [1222, 1558], [1222, 1559], [1224, 1559], [1223, 1556], [1223, 1551], [1222, 1550], [1221, 1549], [1220, 1548], [1219, 1546], [1218, 1547], [1217, 1546], [1216, 1545], [1216, 1543], [1215, 1542], [1214, 1542], [1213, 1540], [1212, 1539], [1212, 1537], [1214, 1537], [1213, 1536], [1213, 1534], [1214, 1534], [1215, 1532], [1216, 1532], [1215, 1531], [1216, 1530], [1217, 1530], [1217, 1527], [1218, 1527], [1218, 1525], [1219, 1525], [1220, 1524], [1220, 1521], [1222, 1521], [1223, 1520], [1224, 1519], [1225, 1519], [1225, 1513], [1226, 1513]]}, "center": {"109-166, T:0-1": [1245, 1545]}},
{"id": "twr84w", "name": "Mandalorian helmet", "description": "A helmet worn by Mandalorians, a faction in the Star Wars franchise.\n\nHidden among the cell community, a Mandalorian helmet was built in memorial of another piece of artwork that was destroyed by raids. The colour was changed to those of the non-binary flag in solidarity with the surrounding cells.", "links": {"website": ["https://starwars.fandom.com/wiki/Mandalorian_armor"]}, "path": {"91-166, T:0-1": [[1620, 196], [1618, 198], [1618, 201], [1620, 203], [1623, 203], [1625, 201], [1625, 198], [1623, 196]]}, "center": {"91-166, T:0-1": [1622, 200]}},
@@ -985,7 +983,7 @@
{"id": "twr0r3", "name": "Flag of Palau", "description": "Made in collaboration with r/Taiwan and others.", "links": {"website": ["https://www.reddit.com/r/Palau/comments/ttykuv/palauan_flag_on_rplace/"], "subreddit": ["Palau"]}, "path": {"109-165, T:0-1": [[1203, 1264], [1203, 1269], [1213, 1269], [1208, 1264]]}, "center": {"109-165, T:0-1": [1207, 1267]}},
{"id": "twqzsb", "name": "Stromae", "description": "The face of the Belgian musician Stromae.", "links": {"website": ["https://en.wikipedia.org/wiki/Stromae"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-166, T:0-1": [[1293, 1785], [1296, 1807], [1296, 1810], [1304, 1817], [1307, 1817], [1310, 1814], [1313, 1805], [1320, 1805], [1321, 1801], [1322, 1801], [1323, 1795], [1319, 1780], [1316, 1776], [1310, 1774], [1303, 1773], [1301, 1774], [1298, 1776], [1295, 1777]]}, "center": {"109-166, T:0-1": [1307, 1793]}},
{"id": "twqzm5", "name": "University of Alabama", "description": "The University of Alabama. Most notably known for its football program.", "links": {"website": ["https://www.ua.edu/"], "subreddit": ["rolltide"]}, "path": {"109-165, T:0-1": [[1512, 1723], [1512, 1739], [1527, 1739], [1527, 1723]]}, "center": {"109-165, T:0-1": [1520, 1731]}},
-{"id": "twqzhw", "name": "TWICE", "description": "A female K-pop group composed of nine members. The colored squares on the left represent each member's assigned color, and the lollipop next to the logo is a candy bong lightstick.", "links": {"website": ["https://mobile.twitter.com/jypetwice?lang=en"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1525, 870], [1587, 870], [1587, 897], [1558, 897], [1558, 876], [1525, 876]]}, "center": {"56-166, T:0-1": [1566, 881]}},
+{"id": "twqzhw", "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\". Most recently, they embarked on a successful world tour titled \"TWICE III\" which broke numerous k-pop records. The colored squares on the left represent each member's assigned color, and the lollipop next to the logo is a candy bong lightstick.", "links": {"website": ["http://twice.jype.com/", "https://mobile.twitter.com/jypetwice?lang=en", "https://en.wikipedia.org/wiki/Twice"], "subreddit": ["twice", "kpop"]}, "path": {"56-166, T:0-1": [[1524, 869], [1588, 869], [1588, 898], [1557, 898], [1557, 877], [1524, 877]]}, "center": {"56-166, T:0-1": [1571, 883]}},
{"id": "twqzg7", "name": "Oliver Tree", "description": "r/OliverTree's pixel-art rendition of Oliver Tree's Alien Boy EP Coverart.", "links": {"subreddit": ["olivertree"]}, "path": {"109-166, T:0-1": [[645, 1304], [654, 1304], [654, 1313], [645, 1313]]}, "center": {"109-166, T:0-1": [650, 1309]}},
{"id": "twqz0o", "name": "Conlang flag", "description": "The flag for constructed languages. Constructed languages are languages created by people deliberately and not as a result of natural means. They are often created as an art form, as experiments to push the boundaries of what language can and cannot do, or to try to help people from different backgrounds communicate with one another. The flag depicts a stylized version of the Tower of Babel in front of a rising sun.", "links": {"website": ["https://conlang.org/conlang-flag/", "https://en.wikipedia.org/wiki/Constructed_language"], "subreddit": ["conlangs"]}, "path": {"27-165, T:0-1": [[732, 325], [732, 332], [739, 332], [739, 325]]}, "center": {"27-165, T:0-1": [736, 329]}},
{"id": "twqyg2", "name": "Romelu Lukaku and Kevin De Bruyne", "description": "Remake of an iconic association football picture from the 2014 World Cup in Brazil, featuring two of Belgium's most famous players celebrating a goal.", "links": {"website": ["https://sportmagazine.knack.be/medias/14435/7391149.jpg"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-165, T:0-1": [[1310, 1370], [1306, 1369], [1304, 1370], [1306, 1373], [1285, 1394], [1286, 1403], [1292, 1411], [1297, 1411], [1330, 1411], [1330, 1395], [1324, 1386], [1313, 1375], [1315, 1370], [1310, 1369]]}, "center": {"109-165, T:0-1": [1308, 1395]}},
@@ -1004,9 +1002,9 @@
{"id": "twqszg", "name": "Toothless", "description": "Toothless is a Night Fury dragon from the How to Train Your Dragon film franchise.", "links": {"website": ["https://howtotrainyourdragon.fandom.com/wiki/Toothless_(Franchise)"], "subreddit": ["httyd"]}, "path": {"1-165, T:0-1": [[828, 672], [865, 672], [865, 694], [863, 694], [863, 710], [857, 710], [857, 717], [852, 722], [841, 722], [836, 716], [836, 711], [830, 705], [830, 691], [831, 691], [831, 685], [830, 684], [828, 684]]}, "center": {"1-165, T:0-1": [847, 704]}},
{"id": "twqsgq", "name": "Celeste", "description": "Celeste is a 2D platforming game created by Maddy Thorson. This art features a background in the colors of the transgender pride flag, as both the writer and main character of the game are trans.", "links": {"website": ["http://www.celestegame.com/", "https://en.wikipedia.org/wiki/Celeste_(video_game)"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"66-77": [[965, 853], [965, 886], [1011, 886], [1011, 880], [1123, 880], [1123, 874], [1118, 869], [1062, 869], [1057, 864], [1055, 858], [1055, 853]], "55-65": [[965, 853], [965, 886], [1247, 886], [1250, 881], [1250, 880], [1244, 880], [1237, 876], [1237, 869], [1214, 869], [1214, 881], [1200, 881], [1200, 869], [1043, 869], [1043, 853]], "44-54": [[965, 853], [965, 886], [1000, 886], [1000, 853]], "1-43": [[965, 858], [965, 886], [1000, 886], [1000, 858]], "78-165, T:0-1": [[965, 853], [965, 886], [1085, 886], [1085, 880], [1130, 880], [1130, 869], [1062, 870], [1060, 867], [1059, 864], [1057, 862], [1056, 861], [1056, 858], [1056, 853]]}, "center": {"66-77": [982, 870], "55-65": [1015, 870], "44-54": [983, 870], "1-43": [983, 872], "78-165, T:0-1": [1015, 870]}},
{"id": "twqs9s", "name": "Cock and ball torture", "description": "Cock and ball torture (CBT) is a form of BDSM that involves torturing the penis and testicles for sexual pleasure.\n\nAfter many restless nights, we can finally enjoy CBT in peace. Thanks to everyone who helped us along the way! SJJJJFLG <3", "links": {"website": ["https://en.wikipedia.org/wiki/Cock_and_ball_torture", "https://www.youtube.com/watch?v=3847Xkzovt4"], "subreddit": ["CBT"]}, "path": {"12-52": [[760, 684], [760, 692], [774, 692], [774, 684]], "3-11": [[760, 682], [760, 690], [774, 690], [774, 682]], "53-76, 83-125": [[759, 684], [759, 688], [766, 695], [769, 695], [776, 688], [776, 684]], "130-165, T:0-1": [[755, 684], [755, 685], [758, 687], [767, 696], [768, 696], [776, 688], [776, 684]]}, "center": {"12-52": [767, 688], "3-11": [767, 686], "53-76, 83-125": [768, 689], "130-165, T:0-1": [768, 689]}},
-{"id": "twqs8f", "name": "Orange portal", "description": "This orange portal is a reference to Portal, a game series where players use a \"portal gun\" to manipulate portals and solve puzzles. It was build by the Germans and the Portal community to connect the split German flags after the first canvas expansion and avoid destroying the artworks in between. A dachshund was later drawn traveling through the portal.", "links": {"website": ["https://en.wikipedia.org/wiki/Portal_(video_game)"], "subreddit": ["Portal", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"65-166, T:0-1": [[762, 829], [756, 835], [756, 837], [757, 837], [759, 834], [760, 834], [763, 837], [763, 840], [765, 843], [765, 854], [764, 855], [764, 859], [763, 860], [763, 862], [760, 864], [759, 865], [759, 866], [766, 866], [766, 864], [768, 862], [768, 860], [770, 858], [771, 853], [771, 845], [770, 844], [770, 840], [768, 838], [768, 834], [766, 832], [766, 831], [764, 829]]}, "center": {"65-166, T:0-1": [763, 833]}},
+{"id": "twqs8f", "name": "Orange portal", "description": "This orange portal is a reference to Portal, a game series where players use a \"portal gun\" to manipulate portals and solve puzzles. It was build by the Germans and the Portal community to connect the split German flags after the first canvas expansion and avoid destroying the artworks in between. A dachshund was later drawn traveling through the portal.", "links": {"website": ["https://www.thinkwithportals.com/", "https://en.wikipedia.org/wiki/Portal_(video_game)"], "subreddit": ["Portal", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"65-166, T:0-1": [[762, 829], [756, 835], [756, 837], [757, 837], [759, 834], [760, 834], [763, 837], [763, 840], [765, 843], [765, 854], [764, 855], [764, 859], [763, 860], [763, 862], [760, 864], [759, 865], [759, 866], [766, 866], [766, 864], [768, 862], [768, 860], [770, 858], [771, 853], [771, 845], [770, 844], [770, 840], [768, 838], [768, 834], [766, 832], [766, 831], [764, 829]]}, "center": {"65-166, T:0-1": [763, 833]}},
{"id": "twqrbr", "name": "Derpy Hooves", "description": "Derpy 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.\n\nThis Derpy art was not constructed by the r/MyLittlePony subreddit nor the Manechat Discord server, instead being created by the Russian streamer Bratishkinoff during the last day of r/place. While this was initially caused panic from the MLP fandom as they feared a last minute raid from Twitch streamer Mizkif, Bratishkinoff helped to distract Mizkif up until the last moments of r/place, ensuring that the fandom's artworks were part of r/place history.", "links": {"website": ["https://mlp.fandom.com/wiki/Derpy", "https://www.twitch.tv/bratishkinoff"]}, "path": {"109-166, T:0-1": [[907, 1701], [899, 1689], [897, 1684], [898, 1678], [901, 1677], [903, 1677], [903, 1674], [904, 1673], [904, 1672], [903, 1672], [893, 1664], [895, 1661], [898, 1659], [902, 1661], [903, 1660], [903, 1658], [899, 1655], [898, 1654], [893, 1649], [893, 1646], [894, 1644], [901, 1646], [902, 1647], [904, 1643], [907, 1636], [904, 1636], [899, 1641], [900, 1636], [905, 1629], [906, 1628], [904, 1626], [911, 1623], [915, 1622], [930, 1621], [939, 1625], [942, 1621], [944, 1621], [951, 1631], [952, 1641], [950, 1654], [953, 1654], [959, 1648], [968, 1646], [972, 1646], [976, 1647], [978, 1649], [978, 1652], [976, 1654], [971, 1658], [966, 1656], [956, 1656], [954, 1658], [956, 1660], [960, 1661], [964, 1663], [964, 1670], [967, 1672], [965, 1674], [964, 1678], [962, 1682], [957, 1681], [954, 1684], [953, 1686], [954, 1694], [955, 1696], [954, 1698], [953, 1703], [951, 1708], [951, 1713], [951, 1717], [948, 1722], [945, 1723], [936, 1724], [930, 1721], [924, 1717], [923, 1703], [928, 1695], [928, 1692], [922, 1693], [918, 1694], [918, 1697], [914, 1702], [911, 1702]]}, "center": {"109-166, T:0-1": [931, 1668]}},
-{"id": "twqr4q", "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 Earthound-inspired game, the main character and his colorful group of friends venture through a dream-like world. This area is a tribute to WHITE SPACE, a location in the game, commonly known as \"A place to survive, but not to live\". MEWO, OMORI, SOMETHING, HERO, MARI, KEL, AUBREY, HUMPHREY, and OMOLI are seen here.\n\nThe stance on r/omori through place was to be as friendly as possible, so some of WHITE SPACE was lended to good allies, such as WCUE, r/PictureGame, and Lisa: The Painful.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)", "https://omori.fandom.com/wiki/WHITE_SPACE"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"60-64": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 795], [964, 801], [976, 801], [977, 802], [1123, 802], [1123, 830], [1043, 830], [1043, 853]], "56-59": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 795], [964, 801], [997, 801], [998, 802], [1126, 802], [1126, 830], [1005, 830], [1005, 853]], "65-76": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 796], [964, 802], [1123, 802], [1123, 821], [1114, 830], [1068, 830], [1066, 827], [1064, 827], [1061, 829], [1059, 833], [1057, 840], [1057, 853]], "2-55": [[908, 853], [908, 818], [922, 818], [922, 794], [924, 792], [926, 792], [934, 799], [952, 799], [959, 792], [962, 792], [964, 794], [964, 801], [1000, 801], [1000, 853]], "77-165, T:0-1": [[909, 800], [920, 800], [920, 795], [923, 792], [924, 792], [926, 794], [927, 794], [931, 798], [932, 799], [951, 799], [952, 799], [958, 793], [960, 793], [960, 794], [961, 795], [961, 801], [963, 802], [1123, 802], [1123, 830], [1065, 830], [1060, 830], [1057, 837], [1056, 850], [1055, 853], [909, 853], [909, 826], [908, 825], [909, 824]]}, "center": {"60-64": [954, 826], "56-59": [954, 826], "65-76": [952, 826], "2-55": [954, 826], "77-165, T:0-1": [1042, 814]}},
+{"id": "twqr4q", "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 Earthound-inspired game, the main character and his colorful group of friends venture through a dream-like world. This area is a tribute to WHITE SPACE, a location in the game, commonly known as \"A place to survive, but not to live\". The characters MEWO, OMORI, SOMETHING, HERO, MARI, KEL, AUBREY, HUMPHREY, and OMOLI are seen here.\n\nThe stance on r/omori through place was to be as friendly as possible, so some of WHITE SPACE was lended to good allies, such as WCUE, r/PictureGame, and Lisa: The Painful.", "links": {"website": ["https://www.omori-game.com/", "https://store.steampowered.com/app/1150690/OMORI/", "https://en.wikipedia.org/wiki/Omori_(video_game)", "https://omori.fandom.com/wiki/WHITE_SPACE"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"60-64": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 795], [964, 801], [976, 801], [977, 802], [1123, 802], [1123, 830], [1043, 830], [1043, 853]], "56-59": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 795], [964, 801], [997, 801], [998, 802], [1126, 802], [1126, 830], [1005, 830], [1005, 853]], "65-76": [[909, 853], [909, 810], [920, 810], [920, 796], [923, 792], [925, 792], [932, 799], [952, 799], [959, 792], [961, 792], [964, 796], [964, 802], [1123, 802], [1123, 821], [1114, 830], [1068, 830], [1066, 827], [1064, 827], [1061, 829], [1059, 833], [1057, 840], [1057, 853]], "2-55": [[908, 853], [908, 818], [922, 818], [922, 794], [924, 792], [926, 792], [934, 799], [952, 799], [959, 792], [962, 792], [964, 794], [964, 801], [1000, 801], [1000, 853]], "77-165, T:0-1": [[909, 800], [920, 800], [920, 795], [923, 792], [924, 792], [926, 794], [927, 794], [931, 798], [932, 799], [951, 799], [952, 799], [958, 793], [960, 793], [960, 794], [961, 795], [961, 801], [963, 802], [1123, 802], [1123, 830], [1065, 830], [1060, 830], [1057, 837], [1056, 850], [1055, 853], [909, 853], [909, 826], [908, 825], [909, 824]]}, "center": {"60-64": [954, 826], "56-59": [954, 826], "65-76": [952, 826], "2-55": [954, 826], "77-165, T:0-1": [1042, 814]}},
{"id": "twqoqx", "name": "Girls' Frontline", "description": "You play as a freshly hired Commander sent to a peaceful sector of 09, except it isn't peaceful and you have diet Skynet fighting you.", "links": {"website": ["http://gf.sunborngame.com/"], "subreddit": ["girlsfrontline"]}, "path": {"109-166, T:0-1": [[1576, 1712], [1576, 1740], [1582, 1740], [1582, 1741], [1584, 1741], [1585, 1741], [1585, 1742], [1586, 1742], [1586, 1743], [1587, 1744], [1588, 1744], [1588, 1746], [1589, 1746], [1589, 1752], [1588, 1753], [1588, 1754], [1588, 1755], [1587, 1756], [1587, 1757], [1587, 1758], [1587, 1759], [1588, 1759], [1588, 1760], [1611, 1760], [1611, 1759], [1611, 1758], [1612, 1758], [1613, 1757], [1614, 1756], [1615, 1755], [1616, 1754], [1616, 1753], [1617, 1753], [1617, 1752], [1618, 1752], [1618, 1751], [1619, 1751], [1619, 1750], [1620, 1750], [1620, 1749], [1621, 1749], [1621, 1748], [1622, 1748], [1622, 1747], [1623, 1747], [1624, 1747], [1624, 1712]]}, "center": {"109-166, T:0-1": [1601, 1733]}},
{"id": "twqobc", "name": "OTT", "description": "OTT is a multiband compressor plugin developed by Xfer. It's a very popular audio effect used by music producers and has become an inside joke due to its widespread usage. This art piece was made by electronic music producer Eliminate and his Twitch viewers.", "links": {"website": ["https://www.twitch.tv/eliminatehq"], "subreddit": ["EliminateHQ"]}, "path": {"109-166, T:0-1": [[1395, 1612], [1395, 1636], [1413, 1636], [1413, 1612]]}, "center": {"109-166, T:0-1": [1404, 1624]}},
{"id": "twqob2", "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.\n\nInitially, she was to be included in the MLP fandom's original design on r/place, peering over \"The Elements of Harmony: A Reference Guide\" alongside MLP Gen. 5 protagonist Sunny Starscout. As the event continued, the fandom was forced to abandon this art due to multiple Twitch raids and void attacks. Despite this, this little Twilight Sparkle managed to sneak on by, reminding r/place what could have been.", "links": {"website": ["https://mlp.fandom.com/wiki/Twilight_Sparkle"], "subreddit": ["mylittlepony"], "discord": ["manechat"]}, "path": {"29-57": [[631, 219], [627, 225], [627, 228], [630, 228], [630, 237], [627, 237], [625, 239], [625, 243], [627, 245], [630, 245], [630, 231], [646, 231], [644, 227], [644, 222], [638, 219]], "151-166, T:0-1": [[1811, 1724], [1808, 1725], [1806, 1730], [1806, 1731], [1809, 1731], [1810, 1732], [1810, 1735], [1819, 1735], [1819, 1732], [1820, 1731], [1822, 1731], [1822, 1729], [1823, 1728], [1823, 1725], [1821, 1723], [1819, 1725], [1817, 1725], [1816, 1724]]}, "center": {"29-57": [636, 225], "151-166, T:0-1": [1814, 1730]}},
@@ -1035,7 +1033,7 @@
{"id": "twqivm", "name": "Autobahn", "description": "This road sign features the logo of the Autobahn, the federal controlled-access highway system in Germany.\n\nThis sign is held by Archbishop Leucoryx from the game Realm of the Mad God, a collaboration between r/placeDE and r/RotMG.", "links": {"website": ["https://en.wikipedia.org/wiki/Autobahn"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"164": [[541, 837], [538, 840], [538, 858], [547, 858], [547, 861], [548, 861], [548, 866], [553, 866], [553, 863], [560, 863], [563, 860], [563, 843], [562, 842], [562, 840], [559, 837]], "103-163": [[541, 837], [538, 840], [538, 858], [547, 858], [547, 861], [548, 861], [548, 872], [552, 872], [552, 866], [553, 865], [553, 863], [560, 863], [563, 860], [563, 843], [562, 842], [562, 840], [559, 837]], "49-98": [[541, 837], [538, 840], [538, 858], [539, 859], [539, 860], [542, 863], [548, 863], [548, 866], [553, 866], [553, 863], [560, 863], [563, 860], [563, 843], [562, 842], [562, 840], [559, 837]]}, "center": {"164": [552, 848], "103-163": [552, 848], "49-98": [551, 850]}},
{"id": "twqir6", "name": "Gekoloniseerd", "description": "A Dutch word meaning \"colonized\". It was used in the animated short \"de VOC (voor idioten)\", a video explaining the history of Dutch colonialism. The word subsequently became a meme among the Dutch community. Posts or videos about Dutch topics are flooded with comments saying \"gekoloniseerd\", indicating that the post has been taken over or \"colonized\".", "links": {"website": ["https://knowyourmeme.com/memes/gekoloniseerd", "https://www.youtube.com/watch?v=TFgfrv7AfWw"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"101-165": [[384, 20], [508, 20], [508, 28], [384, 28]]}, "center": {"101-165": [446, 24]}},
{"id": "twqibg", "name": "Anarcho-communism flag", "description": "The flag of the anarcho-communism political ideology, an anarchist political ideology that advocates for the abolition of states and hierarchies.", "links": {"website": ["https://en.wikipedia.org/wiki/Anarcho-communism"], "subreddit": ["Anarchism", "AnarchismZ", "anarchocommunism", "COMPLETEANARCHY"]}, "path": {"3-165, T:0-1": [[8, 377], [8, 419], [49, 419], [48, 418], [48, 416], [51, 413], [51, 408], [49, 404], [49, 392], [51, 388], [58, 382], [58, 377]]}, "center": {"3-165, T:0-1": [29, 398]}},
-{"id": "twqi7m", "name": "Weiße Rose", "description": "The White Rose is the symbol of a German student resistance organization against the Nazi regime. Through their work, They became a famous German resistance symbol against totalitarianism and facism. Most members were incarcerated and executed.", "links": {"website": ["https://en.wikipedia.org/wiki/White_Rose"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1890, 868], [1901, 855], [1899, 850], [1908, 845], [1905, 835], [1885, 832], [1880, 837], [1881, 843], [1878, 847], [1886, 852], [1893, 853], [1890, 856], [1890, 865], [1888, 868]]}, "center": {"56-166, T:0-1": [1893, 845]}},
+{"id": "twqi7m", "name": "White Rose", "description": "The White Rose (Weiße Rose) was a non-violent German student resistance organization against the Nazi regime that was active from 1942 to 1943. They were led by students and faculty at the University of Munich. Through their work, they became a famous German resistance symbol against totalitarianism and fascism. Most members were incarcerated and executed by the Nazis.", "links": {"website": ["https://en.wikipedia.org/wiki/White_Rose"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"97-166, T:0-1": [[1889, 832], [1883, 837], [1882, 838], [1880, 845], [1878, 845], [1878, 849], [1881, 849], [1884, 852], [1887, 853], [1892, 853], [1894, 852], [1894, 855], [1890, 855], [1890, 858], [1892, 860], [1889, 864], [1889, 865], [1887, 865], [1884, 867], [1884, 869], [1896, 869], [1896, 862], [1897, 861], [1897, 858], [1900, 853], [1898, 852], [1898, 851], [1908, 845], [1908, 843], [1906, 841], [1904, 841], [1904, 838], [1905, 837], [1905, 835], [1903, 833], [1898, 832]]}, "center": {"97-166, T:0-1": [1893, 842]}},
{"id": "twqhov", "name": "Greek flag", "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.", "links": {"website": ["https://www.gov.gr/en/sdg"], "subreddit": ["greece", "GreecePlace"]}, "path": {"109-166, T:0-1": [[1397, 1917], [1521, 1917], [1521, 1970], [1397, 1970]]}, "center": {"109-166, T:0-1": [1459, 1944]}},
{"id": "twqhcq", "name": "Happy in spite", "description": "Happy in spite is an artwork made by Ivan Seal, which was used by the Caretaker in 'an empty bliss beyond this world'", "links": {"subreddit": ["TheCaretaker"]}, "path": {"109-164, T:0-1": [[269, 1890], [281, 1890], [281, 1901], [269, 1901]]}, "center": {"109-164, T:0-1": [275, 1896]}},
{"id": "twqh82", "name": "Blue Kirby", "description": "Kirby is protagonist of the titular Kirby series of video games. He is usually pink, but is recolored blue in this art.", "links": {"website": ["https://en.wikipedia.org/wiki/Kirby_(character)"]}, "path": {"109-166, T:0-1": [[464, 1496], [462, 1497], [460, 1499], [459, 1501], [457, 1503], [457, 1506], [458, 1507], [457, 1509], [457, 1512], [476, 1512], [476, 1511], [477, 1510], [477, 1506], [476, 1504], [476, 1503], [474, 1501], [474, 1500], [471, 1497], [469, 1496], [468, 1495], [465, 1495]]}, "center": {"109-166, T:0-1": [467, 1505]}},
@@ -1051,7 +1049,6 @@
{"id": "twqegy", "name": "Maya the Bee (Biene Maja)", "description": "The main character of a popular German book series and TV show for children.", "links": {"website": ["https://en.wikipedia.org/wiki/Maya_the_Bee"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-166, T:0-1": [[671, 1125], [662, 1128], [658, 1135], [658, 1143], [663, 1147], [667, 1147], [668, 1152], [672, 1155], [684, 1156], [694, 1160], [694, 1156], [688, 1151], [684, 1150], [685, 1145], [688, 1140], [683, 1137], [679, 1138], [678, 1141], [678, 1134], [675, 1130], [681, 1134], [679, 1128], [672, 1124], [670, 1125], [668, 1126]]}, "center": {"109-166, T:0-1": [674, 1142]}},
{"id": "twqegl", "name": "Shinmyoumaru Sukuna", "description": "An inchling living in the Shining Needle Castle. She is the final boss in Touhou 14: Double Dealing Character.", "links": {"website": ["https://en.touhouwiki.net/wiki/Shinmyoumaru_Sukuna"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1687, 1517], [1654, 1517], [1654, 1550], [1687, 1550]]}, "center": {"109-166, T:0-1": [1671, 1534]}},
{"id": "twqe7m", "name": "Portuguese Among Us crewmate", "description": "Portugal SUS!", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"], "subreddit": ["portugal"]}, "path": {"109-166, T:0-1": [[1527, 1916], [1526, 1914], [1526, 1912], [1527, 1912], [1527, 1911], [1529, 1911], [1530, 1911], [1531, 1911], [1531, 1914], [1531, 1916], [1531, 1917], [1530, 1917], [1529, 1917], [1529, 1916], [1528, 1917], [1527, 1917], [1527, 1915]]}, "center": {"109-166, T:0-1": [1529, 1914]}},
-{"id": "twqe76", "name": "Kpop Lower East Side", "description": "An area containing kpop logo designs. In the lower left corner, The logo for kpop girl group Momoland was merged with a character from the rhytm game BanG Dream! for her to wear the logo as a crown", "links": {"subreddit": ["kpop"]}, "path": {"56-166, T:0-1": [[1686, 898], [1719, 898], [1719, 909], [1729, 909], [1730, 921], [1748, 923], [1748, 933], [1740, 934], [1740, 941], [1728, 941], [1708, 939], [1699, 939], [1699, 945], [1686, 944]]}, "center": {"56-166, T:0-1": [1711, 922]}},
{"id": "twqdst", "name": "Toledo windmills", "description": "Featured in the Don Quixote novel, these windmills can be found in the town of Consuegra, Toledo, Spain. In the book, Don Quixote, in his insanity, confused them for giants and tried to fight them.", "links": {"website": ["http://www.spainisculture.com/en/rutas_culturales/ruta_de_molinos_de_viento_mancha_toledana.html"], "subreddit": ["esPlace", "spain"]}, "path": {"68-166, T:0-1": [[893, 287], [893, 292], [891, 294], [891, 296], [893, 296], [894, 297], [894, 301], [898, 301], [898, 302], [901, 302], [901, 294], [904, 291], [904, 290], [899, 290], [896, 287]]}, "center": {"68-166, T:0-1": [897, 294]}},
{"id": "twqdr9", "name": "Coats of arms of German states", "description": "The artwork shows 5 of 16 coats of arms of German states (Bundesländer).\n\nFrom left to right:\nRheinland-Pfalz (Rhineland-Palatinate)\nBayern (Bavaria)\nBerlin\nHessen (Hesse)\nBremen", "links": {"website": ["https://en.wikipedia.org/wiki/States_of_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-166, T:0-1": [[1333, 1125], [1389, 1125], [1393, 1126], [1393, 1141], [1384, 1140], [1382, 1139], [1372, 1138], [1357, 1138], [1334, 1138]]}, "center": {"109-166, T:0-1": [1364, 1132]}},
{"id": "twqdhc", "name": "Blue Archive", "description": "You're a teacher and you teach students that have...guns?? Wait... All of them have guns!?\n\nBlue Archive (ブルーアーカイブ) is a role-playing game developed by Nexon Games (formerly NAT Games). Blue Archive takes place in the academy city of Kivotos. The player takes the role of a teacher, called Sensei, who is summoned by the president of the General Student Council, a committee managing the schools, before her disappearance. Criminal activity rises following her disappearance. Sensei has the task to resolve the issues around Kivotos and help find the missing president.", "links": {"website": ["https://bluearchive.nexon.com/home"], "subreddit": ["BlueArchive"]}, "path": {"109-166, T:0-1": [[1674, 1738], [1674, 1712], [1723, 1712], [1723, 1734], [1719, 1738], [1719, 1740], [1718, 1740], [1717, 1739], [1714, 1739], [1712, 1741], [1713, 1742], [1712, 1743], [1713, 1744], [1713, 1747], [1710, 1747], [1710, 1761], [1686, 1761], [1686, 1738]]}, "center": {"109-166, T:0-1": [1699, 1733]}},
@@ -1061,7 +1058,7 @@
{"id": "twqcqm", "name": "Twig", "description": "Twig is a small white creature who is half deer, half fox. He is from the graphic novel and TV series Hilda.\n\nTwig is depicted here staring at the user, with a shortened Discord link for the community of the show that he is in (https://discord.gg/hilda).", "links": {"website": ["https://hildatheseries.fandom.com/wiki/Twig"], "subreddit": ["HildaTheSeries"], "discord": ["hilda"]}, "path": {"134-166, T:0-1": [[1830, 623], [1830, 637], [1869, 637], [1869, 623]]}, "center": {"134-166, T:0-1": [1850, 630]}},
{"id": "twqc7p", "name": "Don Quixote", "description": "Don Quixote is the titular character of the book Don Quixote by Miguel de Cervantes, published in 1605. The novel is often labeled as the first modern novel, one of the greatest ever written, and also one of the most translated books in the world.", "links": {"website": ["http://www.donquixote.com/", "https://en.wikipedia.org/wiki/Don_Quixote"], "subreddit": ["esPlace", "spain"]}, "path": {"54-166, T:0-1": [[904, 281], [902, 283], [902, 284], [903, 285], [903, 308], [913, 308], [913, 303], [915, 303], [915, 296], [916, 295], [913, 292], [913, 286], [910, 283], [906, 283]]}, "center": {"54-166, T:0-1": [909, 296]}},
{"id": "twqc4u", "name": "Avatar", "description": "Avatar is a sci-fi movie series directed by James Cameron.\n\nThis art was maintained by members of kelutral.org and r/avatar.", "links": {"website": ["https://en.wikipedia.org/wiki/Avatar_(franchise)", "https://www.kelutral.org/"], "subreddit": ["avatar"]}, "path": {"28-53": [[750, 775], [741, 792], [741, 793], [773, 793], [773, 785], [759, 785], [759, 791]], "4-27, 54-165, T:0-1": [[750, 775], [741, 792], [741, 793], [748, 793], [749, 794], [759, 794], [759, 792]]}, "center": {"28-53": [750, 787], "4-27, 54-165, T:0-1": [750, 788]}},
-{"id": "twqbnk", "name": "Hyper Light Drifter", "description": "The main protagonist and his companion from the game Hyper Light Drifter.", "links": {"subreddit": ["hyperlightdrifter"]}, "path": {"56-166, T:0-1": [[1475, 809], [1481, 804], [1490, 805], [1492, 810], [1485, 823], [1476, 824], [1472, 817]]}, "center": {"56-166, T:0-1": [1482, 814]}},
+{"id": "twqbnk", "name": "The Drifter", "description": "The Drifter is the main protagonist of the game Hyper Light Drifter, a 2D pixel-art exploration/adventure role-playing game developed by Heart Machine.", "links": {"website": ["https://hyperlightdrifter.fandom.com/wiki/The_Drifter", "https://store.steampowered.com/app/257850/Hyper_Light_Drifter/", "https://en.wikipedia.org/wiki/Hyper_Light_Drifter"], "subreddit": ["hyperlightdrifter"]}, "path": {"78-166, T:0-1": [[1479, 805], [1479, 808], [1477, 808], [1475, 810], [1473, 814], [1473, 820], [1478, 824], [1483, 824], [1488, 820], [1488, 815], [1486, 813], [1486, 809], [1485, 809], [1483, 811], [1480, 805]]}, "center": {"78-166, T:0-1": [1480, 817]}},
{"id": "twqbmm", "name": "Coat of arms of German states", "description": "The artwork shows 11 of 16 coats of arms of German states (Bundesländer).\n\nFrom left to right:\nSachsen (Saxony)\nSachsen-Anhalt (Saxony-Anhalt)\nSaarland\nThüringen (Thuringia)\nSchleswig-Holstein\nNordrhein-Westfalen (North Rhine-Westphalia)\nBrandenburg\nMecklenburg-Vorpommern\nBaden-Württemberg\nHamburg\nNiedersachsen (Lower Saxony)", "links": {"website": ["https://en.wikipedia.org/wiki/States_of_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-165, T:0-1": [[1144, 1122], [1271, 1122], [1271, 1135], [1253, 1135], [1248, 1131], [1245, 1135], [1195, 1134], [1191, 1132], [1187, 1135], [1147, 1134], [1144, 1131]]}, "center": {"109-165, T:0-1": [1208, 1128]}},
{"id": "twqbda", "name": "Six Impala", "description": "Six Impala is an electronic/hyperpop band formed in 2017. The band's members are from around the world, and consist of the starting four members (KaTT, underscores, SCRIPT, HELVETICAN) and a fifth member (NEUTRA) who joined in 2020.\n\nThe band's first album, RUBBER, was released in 2019. Two subsequent albums, RUBBER ALT and WFLYTD, were released from 2019-2020. Although the band is pretty niche, they've gotten support from other artists like Anamanaguchi and Bring Me The Horizon.", "links": {"website": ["https://soundcloud.com/siximpala", "https://siximpala.bandcamp.com", "https://twitter.com/siximpalasix"]}, "path": {"64-166, T:0-1": [[1786, 68], [1786, 97], [1799, 97], [1799, 68]]}, "center": {"64-166, T:0-1": [1793, 83]}},
{"id": "twqbag", "name": "Flag of Montenegro", "description": "Montenegro is a country in Southeastern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Montenegro", "https://en.wikipedia.org/wiki/Flag_of_Montenegro"], "subreddit": ["montenegro"]}, "path": {"43-52": [[249, 528], [249, 543], [268, 543], [268, 528]], "56-165, T:0-1": [[1954, 100], [1954, 120], [1974, 120], [1974, 113], [1973, 113], [1973, 100]]}, "center": {"43-52": [259, 536], "56-165, T:0-1": [1964, 110]}},
@@ -1073,11 +1070,11 @@
{"id": "twqag9", "name": "Yuru Camp", "description": "Logo of Yuru Camp (Laid-Back Camp), an anime about a group of girls going camping around Mount Fuji in Japan.", "links": {"website": ["https://en.wikipedia.org/wiki/Laid-Back_Camp"], "subreddit": ["laidbackcamp"]}, "path": {"78-166, T:0-1": [[1357, 121], [1349, 133], [1349, 136], [1352, 136], [1352, 137], [1362, 137], [1362, 136], [1365, 136], [1365, 133]]}, "center": {"78-166, T:0-1": [1357, 131]}},
{"id": "twqaf6", "name": "Wizard101", "description": "Wizard101 is a massively multiplayer online role-playing game (MMORPG) released in by KingsIsle Entertainment. Development on the game started in 2005, and the game released in 2008. In the game, players battle enemies by casting spells, with a combat system similar to collectible card games. Although it is an old game, it stays very alive as a classic with a large fanbase.", "links": {"website": ["https://www.wizard101.com/", "https://en.wikipedia.org/wiki/Wizard101"], "subreddit": ["Wizard101"]}, "path": {"66-164, T:0-1": [[1178, 437], [1175, 439], [1170, 444], [1168, 447], [1168, 455], [1171, 460], [1175, 464], [1178, 465], [1197, 465], [1197, 447], [1193, 441], [1187, 437]]}, "center": {"66-164, T:0-1": [1183, 451]}},
{"id": "twqa81", "name": "Cravos (carnations)", "description": "The carnation is a flower that symbolizes freedom in Portugal, because it was the flower that soldiers during the revolution of April 25, 1974 wore on their chests or on the barrels of their weapons.", "links": {"website": ["https://en.wikipedia.org/wiki/Dianthus_caryophyllus"], "subreddit": ["portugal"]}, "path": {"109-166, T:0-1": [[1403, 1891], [1409, 1887], [1415, 1888], [1419, 1895], [1423, 1900], [1429, 1902], [1439, 1904], [1448, 1905], [1455, 1902], [1461, 1902], [1463, 1908], [1465, 1914], [1462, 1913], [1456, 1915], [1451, 1913], [1446, 1913], [1441, 1908], [1436, 1909], [1434, 1909], [1432, 1912], [1431, 1916], [1404, 1916], [1403, 1911], [1403, 1903], [1404, 1896]]}, "center": {"109-166, T:0-1": [1426, 1905]}},
-{"id": "twqa36", "name": "Suisex", "description": "\"Suisex\" refers to a meme from the shitposting community r/okbuddyhololive that parodies the name of highly enthusiastic Hoshiyomi, fanname for Hololive VTuber 星街すいせい (Hoshimachi Suisei)\n\nThis art was maintained by r/okbuddyhololive and its corresponding Discord, but was hotly warred upon as people kept changing it to \"Suisei\" and back to \"Suisex\".", "links": {"website": ["https://en.wikipedia.org/wiki/Hoshimachi_Suisei"], "subreddit": ["okbuddyhololive", "HoshimachiSuisei", "Hololive"], "discord": ["holotards"]}, "path": {"3-42": [[218, 715], [218, 725], [251, 725], [251, 715]], "43-165, T:0-1": [[218, 715], [218, 724], [218, 725], [249, 725], [249, 715]]}, "center": {"3-42": [235, 720], "43-165, T:0-1": [234, 720]}},
+{"id": "twqa36", "name": "Suisex", "description": "\"Suisex\" refers to a meme from the shitposting community r/okbuddyhololive that parodies the name of highly enthusiastic Hoshiyomi, fanname for Hololive VTuber 星街すいせい (Hoshimachi Suisei)\n\nThis art was maintained by r/okbuddyhololive and its corresponding Discord, but was hotly warred upon as people kept changing it to \"Suisei\" and back to \"Suisex\".", "links": {"website": ["https://en.wikipedia.org/wiki/Hoshimachi_Suisei"], "subreddit": ["okbuddyhololive", "HoshimachiSuisei", "Hololive"], "discord": ["holotards", "holofans"]}, "path": {"3-42": [[218, 715], [218, 725], [251, 725], [251, 715]], "43-165, T:0-1": [[218, 715], [218, 724], [218, 725], [249, 725], [249, 715]]}, "center": {"3-42": [235, 720], "43-165, T:0-1": [234, 720]}},
{"id": "twq9zl", "name": ".gg/placeDE sign", "description": "discord.gg/placeDE, The German Discord server.", "links": {"subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE", "de", "germany"]}, "path": {"109-166, T:0-1": [[1935, 1140], [1935, 1128], [1974, 1128], [1975, 1133], [1974, 1135], [1974, 1134], [1974, 1136], [1975, 1136], [1974, 1137], [1973, 1140], [1973, 1141], [1974, 1140]]}, "center": {"109-166, T:0-1": [1955, 1134]}},
{"id": "twq9vm", "name": "Dwarf Fortress", "description": "Dwarf Fortress is a free management simulation and roguelike game, and the inspiration for games such as Minecraft, RimWorld, and Terraria. It is known for its emergent gameplay resulting from the complexity of its simulation mechanics. Strike the earth!", "links": {"website": ["https://www.bay12games.com/dwarves/", "https://en.wikipedia.org/wiki/Dwarf_Fortress"], "subreddit": ["armok", "DwarfFortressPlace", "dwarffortress"]}, "path": {"2-37": [[0, 490], [0, 516], [52, 516], [52, 490]], "137-142": [[45, 464], [45, 510], [0, 510], [0, 516], [53, 516], [53, 507], [54, 507], [54, 500], [52, 498], [52, 464]], "143-166, 38-136, T:0-1": [[0, 464], [52, 464], [52, 515], [0, 515]]}, "center": {"2-37": [26, 503], "137-142": [49, 503], "143-166, 38-136, T:0-1": [26, 490]}},
{"id": "twq9qn", "name": "Flag of Canada", "description": "Canada is 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": {"109-166, T:0-1": [[502, 1950], [537, 1950], [538, 1950], [538, 1949], [539, 1949], [539, 1951], [541, 1951], [539, 1951], [539, 1957], [539, 1958], [540, 1958], [540, 1962], [541, 1962], [541, 1965], [542, 1965], [542, 1966], [543, 1966], [543, 1968], [544, 1968], [544, 1969], [546, 1969], [546, 1958], [544, 1958], [544, 1959], [542, 1959], [542, 1960], [542, 1958], [543, 1958], [543, 1957], [545, 1957], [545, 1956], [546, 1956], [546, 1969], [502, 1969]]}, "center": {"109-166, T:0-1": [521, 1960]}},
-{"id": "twq9c5", "name": "MAMAMOO", "description": "Logo of the Korean girl-group MAMAMOO, composed by members Solar, Moonbyul, Wheein and Hwasa. After debuting in 2014 under RBW, MAMAMOO made a name for themselves in the industry despite coming from a small and stuggling company. MAMAMOO are recognized for their outstanding vocal abilities aswell as their captivating performances. They are the only group (except for SHINEE) to remain active as a team whilst all four members also persue their own successful solo carreers .", "links": {"website": ["https://www.youtube.com/@MAMAMOO_OFFICIAL", "https://www.instagram.com/mamamoo_official/?hl=fr", "https://kpop.fandom.com/wiki/MAMAMOO"], "subreddit": ["mamamoo"], "discord": ["mamamoo"], "wiki": ["https://en.wikipedia.org/wiki/Mamamoo", "https://en.wikipedia.org/wiki/Mamamoo"]}, "path": {"56-165, T:0-1": [[1450, 870], [1450, 878], [1487, 878], [1487, 870]]}, "center": {"56-165, T:0-1": [1469, 874]}},
+{"id": "twq9c5", "name": "MAMAMOO", "description": "MAMAMOO is a Korean girl-group composed of members Solar, Moonbyul, Wheein and Hwasa. After debuting in 2014 under RBW, MAMAMOO made a name for themselves in the industry despite coming from a small and struggling company. MAMAMOO are recognized for their outstanding vocal abilities as well as their captivating performances. They are one of the few groups (along with SHINEE) to remain active as a team whilst all four members also pursue their own successful solo careers.", "links": {"website": ["https://www.youtube.com/@MAMAMOO_OFFICIAL", "https://www.instagram.com/mamamoo_official/?hl=fr", "https://kpop.fandom.com/wiki/MAMAMOO", "https://en.wikipedia.org/wiki/Mamamoo"], "subreddit": ["mamamoo", "kpop"], "discord": ["mamamoo"]}, "path": {"71-146": [[1448, 869], [1448, 879], [1488, 879], [1488, 869]], "147-166, T:0-1": [[1449, 869], [1449, 879], [1488, 879], [1488, 869]]}, "center": {"71-146": [1468, 874], "147-166, T:0-1": [1469, 874]}},
{"id": "twq8yy", "name": "Spanish guitar", "description": "The Spanish guitar, also known as the classical guitar, is a member of the guitar family used in classical Spanish music and other styles such as flamenco.", "links": {"website": ["https://www.metmuseum.org/toah/hd/spgu/hd_spgu.htm", "https://en.wikipedia.org/wiki/Classical_guitar"], "subreddit": ["esPlace", "spain"]}, "path": {"68-166, T:0-1": [[1091, 287], [1087, 291], [1087, 300], [1089, 302], [1104, 302], [1108, 298], [1115, 298], [1117, 300], [1121, 300], [1123, 299], [1127, 295], [1123, 291], [1121, 290], [1117, 290], [1115, 292], [1108, 292], [1104, 288], [1095, 288], [1094, 287]]}, "center": {"68-166, T:0-1": [1094, 295]}},
{"id": "twq8yq", "name": "Tank", "description": "A tank is a unit that can shoot bullets or other ammunition in the game Diep.io. This picture shows the starting tank of every game of Diep.io.\n\nThis is the fourth and final rendition that came to be, after the other three were destroyed.", "links": {"website": ["https://diepio.fandom.com/wiki/Tanks"], "subreddit": ["Diepio"]}, "path": {"149-162": [[164, 1227], [140, 1227], [140, 1239], [164, 1239]], "81-106": [[1848, 309], [1843, 315], [1846, 318], [1852, 313], [1852, 311], [1850, 309]]}, "center": {"149-162": [152, 1233], "81-106": [1847, 314]}},
{"id": "twq8pz", "name": "Mai Alliance", "description": "A Plot Area shared by Seishun Buta Yarou, Cardinals, SC,HPlace(Disocrd Group), Potato,and a star!", "links": {"discord": ["WTdwjSjk"]}, "path": {"109-166, T:0-1": [[548, 1827], [548, 1783], [501, 1782], [501, 1799], [516, 1800], [516, 1814], [510, 1827], [527, 1827], [511, 1826], [534, 1827], [524, 1828], [530, 1827]]}, "center": {"109-166, T:0-1": [528, 1803]}},
@@ -1119,9 +1116,8 @@
{"id": "twq4w2", "name": "Juja", "description": "Jujalag is a Spanish streamer", "links": {"website": ["https://www.twitch.tv/jujalag"], "subreddit": ["SorryLag"]}, "path": {"109-165, T:0-1": [[1525, 999], [1574, 999], [1573, 1045], [1525, 1045]]}, "center": {"109-165, T:0-1": [1549, 1022]}},
{"id": "twq4vt", "name": "Cal Poly SLO", "description": "The logo of California Polytechnic State University, San Luis Obispo (Cal Poly SLO) along with the mountains surrounding the campus.", "links": {"website": ["https://www.calpoly.edu/"], "subreddit": ["CalPoly"]}, "path": {"109-166, T:0-1": [[716, 1830], [733, 1830], [733, 1862], [716, 1862], [716, 1837], [716, 1831]]}, "center": {"109-166, T:0-1": [725, 1846]}},
{"id": "twq4ux", "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": {"157-166, 83-154, T:0-1": [[563, 377], [562, 378], [561, 379], [561, 392], [580, 392], [580, 379], [579, 378], [579, 377], [578, 376], [563, 376]]}, "center": {"157-166, 83-154, T:0-1": [571, 384]}},
-{"id": "twq4nz", "name": "Flipnote Frog", "description": "What's supposed to be the Flipnote Studio frog", "links": {"subreddit": ["FlipnoteStudio3D"]}, "path": {"56-166, T:0-1": [[1987, 869], [1998, 869], [1998, 880], [1987, 880]]}, "center": {"56-166, T:0-1": [1993, 875]}},
{"id": "twq4h9", "name": "The Wandering Inn", "description": "The Wandering Inn is a web serial written by pirateaba. Pictured is a goblin, an acidfly jar, and Apista the bee.\n\nThis art is part of a collaboration with Star Trek", "links": {"website": ["https://wanderinginn.com/"], "subreddit": ["WanderingInn"]}, "path": {"65-82": [[1852, 375], [1852, 395], [1882, 395], [1882, 372], [1868, 372], [1864, 375]], "153-166, 83-150, T:0-1": [[1852, 372], [1852, 389], [1876, 389], [1876, 383], [1877, 382], [1903, 382], [1904, 381], [1918, 381], [1918, 372]]}, "center": {"65-82": [1871, 384], "153-166, 83-150, T:0-1": [1894, 377]}},
-{"id": "twq3zd", "name": "Girl Group Alley", "description": "A section featuring logos of several K-pop girl groups. Allied with MF DOOM, who became the face of the Discord used to coordinate the builds.", "links": {"subreddit": ["kpop", "Aespa", "aiyu", "bravegirls", "CherryBullet", "crystalclear", "dreamcatcher", "Fromis", "GIDLE", "ITZY", "kep1er", "LOONA", "mamamoo", "mfdoom", "niziu", "NMIXX", "PurpleKiss", "red_velvet", "seventeen", "SNSD", "twice", "VIVIZ", "weeekly"]}, "path": {"56-166, T:0-1": [[1450, 869], [1718, 869], [1718, 898], [1646, 898], [1646, 903], [1607, 903], [1607, 908], [1588, 908], [1587, 899], [1525, 898], [1525, 912], [1508, 911], [1508, 899], [1503, 898], [1503, 891], [1498, 890], [1498, 885], [1453, 883], [1452, 878]]}, "center": {"56-166, T:0-1": [1594, 884]}},
+{"id": "twq3zd", "name": "Girl Group Alley", "description": "A section featuring logos of several K-pop girl groups. Allied with MF DOOM, who became the face of the Discord used to coordinate the builds.", "links": {"website": ["https://en.wikipedia.org/wiki/K-pop"], "subreddit": ["kpop", "Aespa", "aiyu", "bravegirls", "CherryBullet", "crystalclear", "dreamcatcher", "Fromis", "GIDLE", "ITZY", "kep1er", "LOONA", "mamamoo", "mfdoom", "niziu", "NMIXX", "PurpleKiss", "red_velvet", "seventeen", "SNSD", "twice", "VIVIZ", "weeekly"], "discord": ["mamamoo"]}, "path": {"102-123": [[1448, 869], [1736, 869], [1736, 879], [1680, 879], [1680, 898], [1646, 898], [1646, 903], [1607, 903], [1607, 908], [1587, 908], [1587, 898], [1525, 898], [1525, 911], [1508, 911], [1508, 898], [1503, 898], [1503, 890], [1453, 890], [1453, 879], [1448, 879]], "56-101": [[1448, 869], [1736, 869], [1736, 879], [1680, 879], [1680, 898], [1646, 898], [1646, 903], [1607, 903], [1607, 908], [1587, 908], [1587, 898], [1503, 898], [1503, 890], [1453, 890], [1453, 879], [1448, 879]], "124-166, T:0-1": [[1450, 869], [1718, 869], [1718, 898], [1646, 898], [1646, 903], [1607, 903], [1607, 908], [1587, 908], [1587, 898], [1525, 898], [1525, 911], [1508, 911], [1508, 898], [1504, 898], [1504, 890], [1453, 890], [1453, 884], [1452, 884], [1452, 879], [1449, 879], [1449, 869]]}, "center": {"102-123": [1601, 886], "56-101": [1601, 886], "124-166, T:0-1": [1600, 886]}},
{"id": "twq3ux", "name": "Crono", "description": "Crono is the main character from the 1995 SNES game Chrono Trigger, a Japanese role-playing game (JRPG) developed and published by Square.\n\nCrono used to overlap with Okabe from Steins;Gate. This was very fitting as both Chrono Trigger and Steins;Gate heavily feature time travel. However, a few hours before the end, both Crono and Okabe were moved when the Netherlands placed their ship painting, De Zeven Provinciën, on the canvas. Crono used to be accompanied by a sprite of a kissing Marle, another playable character in the game. However, during the transfer, Marle's sprite was unfortunately lost.", "links": {"website": ["https://chrono.fandom.com/wiki/Crono", "https://en.wikipedia.org/wiki/Chrono_Trigger"], "subreddit": ["chronotrigger"]}, "path": {"26-48": [[782, 188], [777, 195], [780, 213], [785, 215], [792, 203], [792, 199]], "1-10": [[196, 473], [196, 476], [190, 476], [190, 482], [191, 483], [191, 486], [192, 487], [192, 491], [191, 492], [197, 497], [207, 497], [209, 493], [209, 486], [206, 484], [206, 480], [203, 476], [201, 476], [198, 473]], "149-166, T:0-1": [[430, 1937], [449, 1937], [449, 1970], [430, 1970]]}, "center": {"26-48": [785, 201], "1-10": [200, 489], "149-166, T:0-1": [440, 1954]}},
{"id": "twq3sg", "name": "Fox", "description": "A small fox built by members of Samifying's Discord Server.", "links": {"discord": ["samifying"]}, "path": {"109-166, T:0-1": [[1606, 1523], [1608, 1523], [1608, 1524], [1609, 1524], [1609, 1525], [1610, 1525], [1610, 1526], [1612, 1526], [1612, 1525], [1613, 1525], [1613, 1524], [1614, 1524], [1614, 1523], [1616, 1523], [1616, 1530], [1617, 1530], [1617, 1532], [1618, 1532], [1618, 1534], [1616, 1534], [1616, 1535], [1613, 1535], [1613, 1537], [1614, 1536], [1615, 1535], [1618, 1535], [1618, 1536], [1617, 1536], [1617, 1537], [1616, 1537], [1616, 1538], [1615, 1538], [1615, 1539], [1608, 1539], [1608, 1538], [1609, 1538], [1609, 1535], [1606, 1535], [1606, 1534], [1604, 1534], [1604, 1532], [1605, 1532], [1605, 1530], [1606, 1530]]}, "center": {"109-166, T:0-1": [1611, 1531]}},
{"id": "twq3fd", "name": "Etoiles' Emote", "description": "Emote twitch from the French streamer Etoiles", "links": {"website": ["https://www.twitch.tv/etoiles?lang=fr"]}, "path": {"109-164, T:0-1": [[250, 1554], [251, 1554], [251, 1552], [267, 1552], [267, 1553], [272, 1553], [277, 1553], [277, 1598], [250, 1598]]}, "center": {"109-164, T:0-1": [263, 1575]}},
@@ -1139,7 +1135,7 @@
{"id": "twq29h", "name": "Fukano", "description": "Emote of the French Streamer Fukano", "links": {"website": ["https://www.twitch.tv/fukano?lang=fr"]}, "path": {"109-164, T:0-1": [[250, 1602], [250, 1636], [278, 1636], [278, 1602]]}, "center": {"109-164, T:0-1": [264, 1619]}},
{"id": "twq1tk", "name": "Turtle", "description": "The auto-battler game Super Auto Pets, by Teamwood Games, uses android emojis for its characters. The turtle unit is modeled after it.", "links": {"website": ["https://superautopets.fandom.com/wiki/Turtle"], "subreddit": ["superautopets", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[245, 967], [245, 989], [267, 989], [269, 975], [267, 967]]}, "center": {"1-166, T:0-1": [257, 978]}},
{"id": "twq1px", "name": "Tomb of Cyrus", "description": "The final resting place of Cyrus the Great, the founder of the ancient Achaemenid Empire. The Achaemenid Empire is an ancient precursor to Iran.", "links": {"website": ["https://en.wikipedia.org/wiki/Tomb_of_Cyrus"]}, "path": {"T:0-1": [[32, 314], [28, 318], [28, 325], [26, 326], [18, 334], [18, 335], [41, 335], [41, 326], [39, 326], [38, 325], [38, 318], [34, 314]], "154-165": [[31, 315], [28, 318], [28, 325], [27, 325], [17, 334], [17, 340], [29, 340], [30, 345], [32, 345], [40, 342], [40, 325], [38, 325], [38, 318], [35, 315]]}, "center": {"T:0-1": [33, 329], "154-165": [32, 332]}},
-{"id": "twq1jo", "name": "Lion of Brabant", "description": "In collaboration with r/placeDE, Belgium's r/place crew created the Lion of Brabant (from the Belgian coat of arms) where Belgian and German flags cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1282, 830], [1331, 830], [1331, 878], [1330, 881], [1329, 884], [1327, 886], [1323, 886], [1311, 887], [1308, 888], [1304, 889], [1302, 888], [1302, 887], [1290, 887], [1290, 886], [1287, 886], [1285, 883], [1284, 881], [1283, 880], [1283, 877], [1282, 878]]}, "center": {"56-166, T:0-1": [1307, 858]}},
+{"id": "twq1jo", "name": "Lion of Brabant", "description": "The Lion of Brabant is a piece of heraldry from the Belgian coat of arms.\n\nIn collaboration with r/placeDE, Belgium's r/place crew created the Lion of Brabant where Belgian and German flags cross.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"92-166, T:0-1": [[1281, 829], [1281, 878], [1284, 884], [1284, 887], [1289, 887], [1289, 889], [1294, 889], [1295, 890], [1299, 890], [1304, 893], [1309, 893], [1312, 891], [1324, 891], [1324, 889], [1327, 889], [1330, 883], [1332, 878], [1332, 829]]}, "center": {"92-166, T:0-1": [1307, 861]}},
{"id": "twq1hs", "name": "Chloe", "description": "Chloe is a character created by u/SrGrafo as a mascot of r/animemes. He then started drawing a NSFW comic series daily and posted his drawings of Chloe and other young girls on r/chloe.", "links": {"subreddit": ["chloe"]}, "path": {"56-167, T:0-1": [[1968, 269], [1968, 239], [1940, 239], [1940, 269]]}, "center": {"56-167, T:0-1": [1954, 254]}},
{"id": "twq1fd", "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.\n\nThe Bulgarian flag contains a bowl of tarator, the 3 first letters of the Cyrillic alphabet, an image of a lion representing the Bulgarian national animal and coat of arms, the St. Alexander Nevsky Cathedral, a silhouette of the country, the liberty memorial at Shipka, a pink oil-bearing rose, and the mascot of r/bulgaria. A sign under the flag says \"Съединението прави силата\" (\"unity makes strength\"), along with the year of the foundation of Bulgaria and the infinity symbol next to it implying that Bulgaria will live forever.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria", "https://en.wikipedia.org/wiki/Flag_of_Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"1-32": [[432, 376], [432, 399], [595, 399], [595, 392], [718, 392], [718, 379], [716, 379], [714, 377], [714, 376]], "33-166, T:0-1": [[480, 376], [480, 399], [620, 399], [620, 392], [718, 392], [718, 379], [716, 379], [714, 377], [714, 376]]}, "center": {"1-32": [559, 388], "33-166, T:0-1": [584, 388]}},
{"id": "twq0xx", "name": "Azadi Tower", "description": "Azadi Tower is a tower located in the Iranian capital, Tehran. This drawing of the tower has an Iranian flag on top of it.", "links": {"website": ["https://en.wikipedia.org/wiki/Azadi_Tower"]}, "path": {"60-115": [[11, 284], [7, 288], [7, 298], [0, 306], [0, 308], [12, 308], [12, 303], [13, 301], [15, 301], [16, 303], [16, 308], [29, 308], [29, 306], [21, 298], [21, 288], [17, 284]], "116-165, T:0-1": [[13, 278], [13, 285], [9, 285], [9, 287], [7, 287], [7, 298], [0, 306], [0, 308], [10, 308], [14, 301], [18, 308], [29, 308], [29, 306], [21, 298], [21, 285], [25, 285], [25, 278]]}, "center": {"60-115": [14, 294], "116-165, T:0-1": [14, 292]}},
@@ -1164,7 +1160,6 @@
{"id": "twpy2z", "name": "Fanta & Bob", "description": "TheFantasio974 and Bob Lennon, famous French YouTubers known for making French Discovers Minecraft.", "links": {"website": ["https://www.youtube.com/c/fantabobshow/videos"]}, "path": {"147-166, T:0-1": [[6, 1096], [6, 1113], [15, 1113], [15, 1096]]}, "center": {"147-166, T:0-1": [11, 1105]}},
{"id": "twpxvm", "name": "Quackity", "description": "Minecraft head of Quackity, a YouTuber.", "links": {"website": ["https://youtube.fandom.com/wiki/Quackity"], "subreddit": ["quackity"]}, "path": {"38-165, T:0-1": [[173, 935], [182, 935], [182, 944], [173, 944]]}, "center": {"38-165, T:0-1": [178, 940]}},
{"id": "twpxtz", "name": "Eminem", "description": "Eminem is an American rapper.", "links": {"website": ["https://www.eminem.com", "https://en.wikipedia.org/wiki/Eminem"]}, "path": {"1-165, T:0-1": [[853, 990], [897, 990], [897, 999], [853, 999]]}, "center": {"1-165, T:0-1": [875, 995]}},
-{"id": "twpxqr", "name": "Planetside", "description": "The F2P MMOFPS Planetside 2 community.", "links": {"subreddit": ["planetside"]}, "path": {"56-166, T:0-1": [[1870, 893], [1892, 893], [1891, 915], [1870, 915]]}, "center": {"56-166, T:0-1": [1881, 904]}},
{"id": "twpxl7", "name": "Royal Belgian Football Association", "description": "Belgian football association, #2 on FIFA ranking during r/place 2022. Also the logo of Belgium's national football team, The Belgian Red Devils.", "links": {"website": ["https://www.rbfa.be/en"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-166, T:0-1": [[1295, 1421], [1321, 1421], [1321, 1445], [1319, 1448], [1319, 1449], [1314, 1454], [1312, 1455], [1311, 1456], [1306, 1456], [1305, 1455], [1303, 1455], [1302, 1454], [1301, 1454], [1301, 1453], [1300, 1453], [1300, 1452], [1299, 1452], [1299, 1451], [1298, 1451], [1298, 1450], [1298, 1449], [1297, 1449], [1297, 1448], [1297, 1447], [1296, 1447], [1296, 1446], [1296, 1445], [1295, 1445]]}, "center": {"109-166, T:0-1": [1308, 1437]}},
{"id": "twpxc0", "name": "Berber flag", "description": "The Berber flag symbolizes the entire Amazigh people, living in harmony with their land. Amazigh, Berbers, or Imazighen are an ethnic group indigenous to North Africa, specifically Morocco, Algeria, Tunisia, and Libya, and to a lesser extent Mauritania, northern Mali, and northern Niger. Smaller Berber populations are also found in Burkina Faso and Egypt's Siwa Oasis.", "links": {"website": ["https://en.wikipedia.org/wiki/Berbers", "https://en.wikipedia.org/wiki/Berber_flag"], "subreddit": ["algeria"]}, "path": {"146-156": [[1576, 1609], [1576, 1629], [1614, 1629], [1614, 1609]], "120-145": [[1590, 1609], [1590, 1623], [1614, 1623], [1614, 1609]], "113-119": [[1604, 1609], [1604, 1613], [1608, 1613], [1608, 1609]], "157-166, T:0-1": [[1571, 1609], [1614, 1609], [1614, 1629], [1571, 1629]]}, "center": {"146-156": [1595, 1619], "120-145": [1602, 1616], "113-119": [1606, 1611], "157-166, T:0-1": [1593, 1619]}},
{"id": "twpx5e", "name": "De Zeven Provinciën", "description": "De Zeven Provinciën (The Seven Provinces) was a Dutch ship of the line, originally armed with 80 guns. The name of the ship refers to the seven autonomous provinces that made up the Dutch Republic in the 17th century. The vessel was built in 1664-65 as the flagship of Michiel de Ruyter, The Admiralty of de Maze in Rotterdam, by the master shipbuilder Salomon Jansz van den Tempel. It served in the Anglo-Dutch Wars from 1665-1694.", "links": {"website": ["https://en.wikipedia.org/wiki/Dutch_ship_De_Zeven_Provinciën_(1665)"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[715, 1732], [715, 1850], [549, 1850], [549, 1732]]}, "center": {"109-166, T:0-1": [632, 1791]}},
@@ -1175,7 +1170,6 @@
{"id": "twpwyv", "name": "The Legend Of Zelda", "description": "Pixel art of iconic characters and objects from the Nintendo video game franchise Legend Of Zelda", "links": {"subreddit": ["zelda"]}, "path": {"109-166, T:0-1": [[1366, 1875], [1366, 1859], [1348, 1857], [1348, 1841], [1344, 1834], [1300, 1835], [1299, 1843], [1307, 1847], [1321, 1848], [1322, 1875]]}, "center": {"109-166, T:0-1": [1335, 1855]}},
{"id": "twpwbr", "name": "Flag of Iran", "description": "Iran is a country in Western Asia. This is a simplified, apolitical version of the flag of Iran, omitting the religious emblem in the flag's center.", "links": {"website": ["https://en.wikipedia.org/wiki/Iran", "https://en.wikipedia.org/wiki/Flag_of_Iran"]}, "path": {"85-136": [[0, 276], [110, 276], [110, 304], [104, 304], [97, 311], [89, 311], [88, 310], [81, 310], [78, 312], [0, 312]], "63-84": [[0, 276], [109, 276], [109, 307], [0, 307]], "37-62": [[0, 276], [22, 276], [22, 295], [43, 295], [55, 283], [55, 276], [112, 276], [112, 307], [0, 307]], "2-36": [[58, 276], [110, 276], [110, 307], [50, 307], [50, 295], [45, 295], [45, 293], [58, 281]], "137-165, T:0-1": [[0, 276], [110, 276], [110, 299], [109, 299], [108, 300], [108, 302], [107, 303], [105, 304], [98, 310], [90, 310], [81, 310], [78, 311], [75, 313], [75, 315], [72, 318], [72, 325], [71, 326], [68, 329], [68, 333], [68, 336], [60, 336], [49, 335], [39, 335], [17, 335], [14, 333], [9, 336], [0, 336]]}, "center": {"85-136": [54, 294], "63-84": [55, 292], "37-62": [78, 292], "2-36": [78, 292], "137-165, T:0-1": [30, 305]}},
{"id": "twpwbd", "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": ["place_nordicunion", "sweden"]}, "path": {"47-166, T:0-1": [[586, 42], [594, 44], [601, 51], [601, 63], [599, 67], [599, 72], [595, 77], [595, 91], [574, 91], [574, 80], [577, 80], [577, 76], [573, 72], [571, 67], [569, 60], [568, 53], [577, 43]]}, "center": {"47-166, T:0-1": [585, 58]}},
-{"id": "twpw6y", "name": "Planetside 2", "description": "The logo of the MMOFPS Planetside 2.", "links": {"subreddit": ["planetside"]}, "path": {"56-166, T:0-1": [[1891, 915], [1891, 893], [1870, 893], [1870, 915]]}, "center": {"56-166, T:0-1": [1881, 904]}},
{"id": "twpw13", "name": "San Jose State University", "description": "San Jose State University logo, made by students!", "links": {"subreddit": ["SJSU"]}, "path": {"109-165, T:0-1": [[344, 1551], [368, 1551], [368, 1564], [344, 1564], [344, 1556]]}, "center": {"109-165, T:0-1": [356, 1558]}},
{"id": "twpvxt", "name": "Gate of Europe", "description": "The Gate of Europe (Spanish: Puerta de Europa), also known as the KIO Towers (Spanish: Torres KIO), is a set of twin office buildings near the Plaza de Castilla in Madrid, Spain. The towers were built from 1989 to 1996, and are the first inclined skyscrapers in the world.", "links": {"website": ["https://www.designingbuildings.co.uk/wiki/Gate_of_Europe", "https://en.wikipedia.org/wiki/Gate_of_Europe"], "subreddit": ["esPlace", "spain"]}, "path": {"70-166, T:0-1": [[1344, 293], [1338, 304], [1338, 308], [1344, 308], [1351, 294], [1351, 293], [1353, 293], [1353, 295], [1360, 308], [1367, 308], [1360, 293]]}, "center": {"70-166, T:0-1": [1342, 304]}},
{"id": "twpvr8", "name": "Cookie Cat", "description": "A neapolitan cat shaped ice cream sandwich, That resembles a cookie cat from Steven Universe.", "links": {"website": ["https://steven-universe.fandom.com"], "subreddit": ["StevenUniverse"]}, "path": {"56-166, T:0-1": [[1508, 911], [1525, 911], [1524, 919], [1508, 920]]}, "center": {"56-166, T:0-1": [1516, 915]}},
@@ -1192,10 +1186,10 @@
{"id": "twptyz", "name": "Summit1G", "description": "Summit1G is a variety Twitch streamer. Can we get 1G's in the chat?", "links": {"website": ["https://www.twitch.tv/summit1g"], "subreddit": ["Summit1G"]}, "path": {"21-44": [[234, 251], [234, 262], [270, 262], [270, 251]], "45-59": [[238, 251], [250, 251], [250, 262], [238, 262]], "60-165, T:0-1": [[238, 252], [250, 252], [250, 277], [241, 277], [241, 262], [238, 262]]}, "center": {"21-44": [252, 257], "45-59": [244, 257], "60-165, T:0-1": [245, 258]}},
{"id": "twptye", "name": "r/placeDE's taskbar button", "description": "r/placeDE is the offical German organisation Reddit and Discord for the r/place project. It was started in 2017. After the place events, The community and Discord is a normal community with events.", "links": {"subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE", "de", "germany"]}, "path": {"109-165, T:0-1": [[389, 1975], [390, 1998], [483, 1996], [481, 1974]]}, "center": {"109-165, T:0-1": [435, 1986]}},
{"id": "twptvv", "name": "King Harald V of Norway", "description": "King of Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Harald_V_of_Norway"], "subreddit": ["place_nordicunion", "Norge"]}, "path": {"43-165, T:0-1": [[299, 58], [302, 47], [314, 37], [323, 37], [331, 46], [336, 58], [336, 71], [332, 81], [333, 90], [300, 91], [309, 80], [307, 75], [302, 70], [300, 67], [299, 60], [302, 57]]}, "center": {"43-165, T:0-1": [318, 62]}},
-{"id": "twpttz", "name": "Eurovision Song Contest", "description": "The Eurovision Song Contest is an annual song competition featuring the participation of many European countries and hosted in a different city every year. As of r/place 2022, the contest was most recently held in 2021 in Rotterdam, Netherlands, and was won by Italy.", "links": {"website": ["https://eurovision.tv/", "https://en.wikipedia.org/wiki/Eurovision_Song_Contest"], "subreddit": ["eurovision"]}, "path": {"17-22": [[250, 528], [250, 539], [270, 539], [270, 534], [269, 534], [269, 528]], "57-166, T:0-1": [[1780, 892], [1778, 890], [1774, 890], [1773, 891], [1773, 893], [1772, 893], [1772, 900], [1773, 900], [1774, 901], [1775, 902], [1776, 903], [1777, 904], [1778, 905], [1779, 906], [1780, 906], [1780, 912], [1793, 912], [1793, 895], [1791, 895], [1791, 894], [1790, 893], [1789, 892], [1786, 889], [1783, 889], [1780, 893]]}, "center": {"17-22": [260, 534], "57-166, T:0-1": [1785, 900]}},
+{"id": "twpttz", "name": "Eurovision Song Contest", "description": "The Eurovision Song Contest is an annual song competition featuring the participation of many European countries and hosted in a different city every year. Each participating country sends a fully original song to be performed on live TV and radio and competes in a week-long party, celebrating music diversity, self-identity, and international peace through music. The song is transmitted to national broadcasters via the EBU's Eurovision and Euroradio networks, with competing countries then casting votes for the other countries' songs to determine a winner. The winner receives the acclaimed prize, the Crystal Mic! As of r/place 2022, the contest was most recently held in 2021 in Rotterdam, Netherlands, and was won by Italy, winning the privilege of hosting the 2022 competition. This art contains a musical note, the custom Twitter Eurovision trophy emoji, and the Eurovision heart with Italy's flag. The heart contains the number 12, the maximum points a participant can get per country.", "links": {"website": ["https://eurovision.tv/", "https://en.wikipedia.org/wiki/Eurovision_Song_Contest"], "subreddit": ["eurovision"]}, "path": {"17-22": [[250, 528], [250, 539], [270, 539], [270, 534], [269, 534], [269, 528]], "56-122": [[1771, 888], [1771, 900], [1774, 900], [1780, 906], [1780, 910], [1779, 911], [1779, 912], [1792, 912], [1792, 897], [1806, 897], [1806, 889], [1790, 889], [1788, 887], [1781, 887], [1781, 888]], "125-166, T:0-1": [[1780, 892], [1778, 890], [1774, 890], [1773, 891], [1773, 893], [1772, 893], [1772, 900], [1773, 900], [1774, 901], [1775, 902], [1776, 903], [1777, 904], [1778, 905], [1779, 906], [1780, 906], [1780, 912], [1793, 912], [1793, 895], [1791, 895], [1791, 894], [1790, 893], [1789, 892], [1786, 889], [1783, 889], [1780, 893]]}, "center": {"17-22": [260, 534], "56-122": [1783, 897], "125-166, T:0-1": [1785, 900]}},
{"id": "twptss", "name": "Volodymyr Zelenskyy", "description": "The sixth and current president of Ukraine. Known for his valiant efforts in leading his country against the 2022 invasion of Russia into Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Volodymyr_Zelenskyy"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"104-165, T:0-1": [[160, 224], [158, 224], [158, 222], [157, 220], [156, 219], [156, 218], [157, 217], [157, 216], [156, 215], [156, 209], [155, 208], [155, 204], [156, 203], [156, 202], [158, 200], [158, 199], [159, 198], [159, 197], [162, 194], [163, 194], [164, 193], [165, 193], [166, 192], [179, 192], [180, 193], [182, 193], [186, 197], [187, 198], [187, 203], [188, 204], [188, 207], [189, 208], [189, 209], [190, 210], [190, 211], [191, 212], [191, 218], [190, 219], [190, 229], [189, 230], [189, 232], [188, 233], [188, 234], [184, 238], [186, 240], [186, 242], [187, 243], [187, 244], [192, 249], [192, 252], [163, 252], [163, 249], [162, 248], [162, 243], [161, 242], [161, 236], [162, 235], [162, 233], [161, 232], [161, 229]]}, "center": {"104-165, T:0-1": [173, 214]}},
{"id": "twpt8s", "name": "Spyro", "description": "Spyro is the titular purple dragon character from the game series Spyro, first appearing in the game Spyro the Dragon.", "links": {"website": ["https://en.wikipedia.org/wiki/Spyro_(character)"], "subreddit": ["spyro"]}, "path": {"109-165, T:0-1": [[1072, 1167], [1072, 1143], [1095, 1143], [1095, 1167]]}, "center": {"109-165, T:0-1": [1084, 1155]}},
-{"id": "twpsit", "name": "Iris", "description": "This art was a collaboration between r/Hololive and r/belgium. The iris is the national flower of Belgium, and the VTuber agency Hololive has a talent named IRyS in the English branch.", "links": {"website": ["https://en.wikipedia.org/wiki/Iris_(plant)", "https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "Hololive"]}, "path": {"131-166, T:0-1": [[273, 685], [269, 689], [269, 690], [263, 690], [260, 693], [260, 699], [259, 700], [259, 703], [260, 703], [260, 706], [264, 706], [264, 715], [266, 717], [266, 721], [262, 721], [262, 722], [264, 724], [265, 724], [266, 725], [266, 727], [268, 727], [268, 724], [269, 723], [269, 722], [270, 721], [270, 717], [271, 716], [270, 715], [270, 713], [271, 713], [273, 711], [271, 709], [273, 707], [275, 707], [275, 702], [277, 702], [277, 698], [275, 695], [275, 691], [276, 690], [276, 688]]}, "center": {"131-166, T:0-1": [268, 699]}},
+{"id": "twpsit", "name": "Iris", "description": "This art was a collaboration between r/Hololive and r/belgium. The iris is the national flower of Belgium, and the VTuber agency Hololive has a talent named IRyS in the English branch.", "links": {"website": ["https://en.wikipedia.org/wiki/Iris_(plant)", "https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "Hololive"], "discord": ["holofans"]}, "path": {"131-166, T:0-1": [[273, 685], [269, 689], [269, 690], [263, 690], [260, 693], [260, 699], [259, 700], [259, 703], [260, 703], [260, 706], [264, 706], [264, 715], [266, 717], [266, 721], [262, 721], [262, 722], [264, 724], [265, 724], [266, 725], [266, 727], [268, 727], [268, 724], [269, 723], [269, 722], [270, 721], [270, 717], [271, 716], [270, 715], [270, 713], [271, 713], [273, 711], [271, 709], [273, 707], [275, 707], [275, 702], [277, 702], [277, 698], [275, 695], [275, 691], [276, 690], [276, 688]]}, "center": {"131-166, T:0-1": [268, 699]}},
{"id": "twpshj", "name": "Sea of Thieves", "description": "Sea of Thieves is a pirate game developed by Rare.", "links": {"website": ["https://www.seaofthieves.com/", "https://en.wikipedia.org/wiki/Sea_of_Thieves"], "subreddit": ["Seaofthieves"]}, "path": {"100-103": [[1892, 204], [1885, 209], [1883, 222], [1890, 230], [1890, 234], [1904, 234], [1904, 231], [1906, 227], [1908, 227], [1911, 222], [1911, 215], [1907, 207], [1904, 204]], "75-93": [[1900, 181], [1900, 230], [1942, 230], [1942, 181]], "57-67": [[1900, 228], [1900, 270], [1939, 270], [1939, 228]], "150-166, T:0-1": [[500, 1927], [500, 1949], [520, 1949], [520, 1927]]}, "center": {"100-103": [1897, 217], "75-93": [1921, 206], "57-67": [1920, 249], "150-166, T:0-1": [510, 1938]}},
{"id": "twps5o", "name": "1G Molly", "description": "Here is the fan-created logo of the streamer summit1G. Also includes his favorite Molly", "links": {"website": ["https://www.twitch.tv/summit1g"], "subreddit": ["Summit1G", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[396, 981], [396, 1001], [431, 1001], [430, 980]]}, "center": {"1-166, T:0-1": [413, 991]}},
{"id": "twprzj", "name": "Arknights", "description": "The app icon for Arknights, a free-to-play tower defense gacha game by Hypergryph released in 2019. The app icon features Amiya, one of the main characters.", "links": {"website": ["https://www.arknights.global", "https://en.wikipedia.org/wiki/Arknights"], "subreddit": ["arknights"]}, "path": {"109-166, T:0-1": [[1625, 1712], [1674, 1712], [1674, 1738], [1662, 1738], [1662, 1761], [1639, 1761], [1639, 1760], [1638, 1759], [1637, 1758], [1636, 1758], [1636, 1757], [1635, 1756], [1634, 1755], [1633, 1754], [1632, 1753], [1631, 1752], [1630, 1751], [1625, 1746], [1625, 1741]]}, "center": {"109-166, T:0-1": [1648, 1734]}},
@@ -1211,7 +1205,7 @@
{"id": "twppaz", "name": "Top portion of SKZoo", "description": "Custom art for Stray Kids member, Han. His Quokka SKZoo figure", "links": {"website": ["https://imgur.com/fXVmnKd", "https://cdn.shopify.com/s/files/1/2420/2037/products/hanquokkaplush_900x.jpg?v=1612770560"], "subreddit": ["StrayKids"], "wiki": ["https://en.wikipedia.org/wiki/Stray_Kids"]}, "path": {"109-166, T:0-1": [[1562, 1096], [1562, 1095], [1563, 1095], [1563, 1093], [1564, 1093], [1564, 1092], [1565, 1092], [1565, 1089], [1566, 1089], [1566, 1088], [1567, 1084], [1569, 1084], [1569, 1082], [1570, 1081], [1571, 1081], [1571, 1080], [1572, 1080], [1572, 1081], [1573, 1081], [1573, 1082], [1574, 1082], [1574, 1083], [1575, 1083], [1577, 1083], [1578, 1083], [1578, 1082], [1579, 1082], [1579, 1081], [1580, 1081], [1580, 1080], [1581, 1080], [1581, 1081], [1582, 1081], [1582, 1082], [1583, 1082], [1584, 1083], [1584, 1084], [1585, 1084], [1585, 1088], [1586, 1088], [1586, 1089], [1587, 1089], [1587, 1092], [1588, 1092], [1588, 1093], [1589, 1093], [1589, 1094], [1589, 1095], [1584, 1095], [1579, 1095], [1579, 1096], [1570, 1096], [1562, 1096], [1565, 1091], [1566, 1088], [1567, 1084], [1569, 1084], [1570, 1081], [1572, 1080], [1574, 1082], [1576, 1083], [1578, 1082], [1581, 1080], [1582, 1082], [1585, 1084], [1585, 1088], [1587, 1091], [1589, 1095], [1580, 1096], [1573, 1096]]}, "center": {"109-166, T:0-1": [1586, 1089]}},
{"id": "twpp5k", "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.\n\nThis art depicts the flag of the Netherlands along with an orange stripe representing the popular Dutch song Oranje Boven. Various elements of Dutch culture are drawn throughout, including:\n- Gekoloniseerd meme\n- A typical Dutch train\n- Tulips\n- Ducks (Bottom)\n- Max Verstappen's race car\n- Jip en Jannek, Two book characters from famous Dutch writer Annie M.G. Schmidt\n- A Dutch VOC ship\n- Logo for Belastingdienst, The Dutch tax collection administration\n- Nijntje, famous book characters from writer Dick Bruna\n- The Dutch Caribbean islands with their flags", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"51-54": [[297, 13], [297, 35], [887, 35], [887, 13]], "16-50": [[297, 13], [297, 35], [800, 35], [800, 13]], "1-15": [[232, 13], [232, 35], [933, 35], [933, 13], [298, 13], [298, 33], [247, 33], [247, 13]], "55-58": [[297, 13], [297, 35], [887, 35], [887, 0], [998, 0], [998, 35], [1999, 34], [1999, 13], [998, 13], [998, 0], [887, 0], [887, 13]], "59-166, T:0-1": [[297, 13], [297, 35], [928, 35], [928, 0], [1104, 0], [1104, 35], [1998, 35], [1998, 13], [1104, 13], [1104, 0], [928, 0], [928, 13]]}, "center": {"51-54": [592, 24], "16-50": [549, 24], "1-15": [595, 24], "55-58": [310, 24], "59-166, T:0-1": [1178, 24]}},
{"id": "twpp2z", "name": "Urotsuki", "description": "Urotsuki is the protagonist of Yume 2kki, a collaborative Yume Nikki fan-sequel that was the first recognized fangame and is by far the most expansive one.", "links": {"website": ["https://yume2kki.fandom.com/wiki/Urotsuki"], "subreddit": ["yumenikki"]}, "path": {"65-166, T:0-1": [[1231, 117], [1228, 117], [1228, 115], [1229, 115], [1229, 114], [1230, 114], [1230, 112], [1231, 112], [1231, 110], [1232, 110], [1232, 109], [1233, 109], [1233, 108], [1235, 108], [1235, 107], [1240, 107], [1240, 108], [1242, 108], [1242, 109], [1243, 109], [1243, 110], [1244, 110], [1244, 112], [1245, 112], [1245, 114], [1246, 114], [1246, 115], [1247, 115], [1247, 117], [1244, 117], [1244, 122], [1242, 122], [1242, 123], [1243, 123], [1243, 125], [1244, 125], [1244, 127], [1245, 127], [1245, 130], [1244, 130], [1244, 133], [1243, 133], [1243, 134], [1239, 134], [1239, 133], [1238, 133], [1238, 131], [1237, 131], [1237, 133], [1236, 133], [1236, 134], [1232, 134], [1232, 133], [1231, 133], [1231, 130], [1230, 130], [1230, 127], [1231, 127], [1231, 125], [1232, 125], [1232, 123], [1233, 123], [1233, 122], [1231, 122]]}, "center": {"65-166, T:0-1": [1237, 114]}},
-{"id": "twpp0q", "name": "VTuber taskbar buttons", "description": "An area carved up by a coalition of different virtual YouTuber communities in collaboration with r/placestart. From left to right: r/Hololive, r/Nijisanji, r/VShojo.", "links": {"subreddit": ["Hololive", "Nijisanji", "VShojo", "VirtualYoutubers", "placestart"]}, "path": {"109-166, T:0-1": [[1028, 1974], [1108, 1974], [1108, 1996], [1028, 1996]]}, "center": {"109-166, T:0-1": [1068, 1985]}},
+{"id": "twpp0q", "name": "VTuber taskbar buttons", "description": "An area carved up by a coalition of different virtual YouTuber communities in collaboration with r/placestart. From left to right: r/Hololive, r/Nijisanji, r/VShojo.", "links": {"subreddit": ["Hololive", "Nijisanji", "VShojo", "VirtualYoutubers", "placestart"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1028, 1974], [1108, 1974], [1108, 1996], [1028, 1996]]}, "center": {"109-166, T:0-1": [1068, 1985]}},
{"id": "twpovl", "name": "twitch streamer kingkontent", "description": "a dutch streamer who wanted to leave his mark on r/place nand he survived altho his site got Ddossed by toxic guys from a RPG server", "links": {"website": ["https://www.twitch.tv/kingkontent"]}, "path": {"109-166, T:0-1": [[379, 1918], [379, 1943], [413, 1943], [412, 1918]]}, "center": {"109-166, T:0-1": [396, 1931]}},
{"id": "twposp", "name": "One-One", "description": "One-One is a robotic companion of Tulip in Cartoon Network's Infinity Train. Next to him is the show's logo.", "links": {"website": ["https://infinity-train.fandom.com/wiki/One-One"], "subreddit": ["InfinityTrain", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[482, 905], [479, 908], [479, 912], [482, 915], [486, 915], [489, 912], [489, 908], [486, 905]]}, "center": {"1-166, T:0-1": [484, 910]}},
{"id": "twpooo", "name": "Robocraft 2015", "description": "Robocraft 2015 (RC15) is a fan-made revival of the 2015 version of the game Robocraft, which was widely regarded as the best version by the community.\n\nRobocraft is an online vehicular combat game developed and published by Freejam Games. The game allows players to build various functional vehicles with basic block-based parts, such as cubes and wheels, along with weapons for combat against other players.", "links": {"website": ["https://robocraftgame.com/"], "subreddit": ["RC15", "Robocraft"], "discord": ["rc15"]}, "path": {"104-158": [[1904, 239], [1904, 269], [1940, 269], [1940, 239]], "56-95": [[1868, 243], [1868, 273], [1902, 273], [1902, 243]], "159-167, T:0-1": [[1905, 240], [1936, 240], [1935, 241], [1935, 242], [1936, 243], [1937, 244], [1938, 246], [1938, 264], [1937, 264], [1936, 264], [1936, 268], [1905, 268]]}, "center": {"104-158": [1922, 254], "56-95": [1885, 258], "159-167, T:0-1": [1922, 254]}},
@@ -1226,11 +1220,11 @@
{"id": "twpo29", "name": "reputation", "description": "Part of the font for Taylor Swift's 2017 album 'reputation'. It also features a snake border in homage to the aesthetic of her 6th studio album. It was created in a short space of time after the 'evermore' tribute was destroyed. A huge thank you to the people whose incredible contributions helped to defend 'rep', especially the Lego and PopHeads community. These efforts resulted in it being saved in the final few minutes before r/place ended.", "links": {"website": ["https://en.wikipedia.org/wiki/Reputation_(album)"], "subreddit": ["TaylorSwift"]}, "path": {"109-166, T:0-1": [[828, 1909], [835, 1914], [844, 1915], [845, 1916], [845, 1931], [844, 1932], [817, 1932], [816, 1931], [816, 1916], [817, 1915], [830, 1915], [831, 1916], [832, 1915], [830, 1914], [827, 1910]]}, "center": {"109-166, T:0-1": [831, 1923]}},
{"id": "twpo0c", "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", "thenetherlands"]}, "path": {"59-80": [[368, 0], [368, 8], [297, 8], [297, 14], [886, 14], [886, 0], [1104, 0], [1104, 14], [2000, 14], [2000, 0]], "51-54": [[358, 0], [358, 8], [297, 8], [297, 14], [887, 14], [887, 0]], "24-45": [[358, 0], [358, 8], [297, 8], [297, 14], [800, 13], [800, 0]], "2-23": [[345, 0], [345, 8], [297, 8], [297, 14], [932, 14], [932, 0]], "55-58": [[297, 8], [297, 14], [887, 14], [887, 0], [999, 0], [999, 14], [1858, 14], [1858, 0], [359, 0], [359, 8]], "81-166, T:0-1": [[368, 0], [368, 13], [929, 14], [929, 0], [1104, 0], [1104, 14], [2000, 13], [2000, 0]]}, "center": {"59-80": [1200, 7], "51-54": [612, 7], "24-45": [381, 7], "2-23": [626, 7], "55-58": [1102, 7], "81-166, T:0-1": [921, 7]}},
{"id": "twpnz1", "name": "Starkid", "description": "The logo of Starkid, a theatre company who puts their content on youtube for free!", "links": {"website": ["https://www.teamstarkid.com"], "subreddit": ["starkid"]}, "path": {"109-165, T:0-1": [[347, 1494], [347, 1493], [350, 1499], [352, 1499], [352, 1490], [346, 1490], [345, 1490], [345, 1498], [353, 1499], [352, 1491]]}, "center": {"109-165, T:0-1": [349, 1495]}},
-{"id": "twpnf6", "name": "Horny Matsuri", "description": "A sort of Ahegao face made by Natsuiro Matsuri of Hololive's 1st Gen. An iconic meme image within the Hololive community. She's God, OK?", "links": {"website": ["https://www.youtube.com/channel/UCQ0UDLQCjY0rmuxCDE38FGg"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1423, 1102], [1423, 1073], [1454, 1073], [1454, 1103], [1453, 1103], [1423, 1103]]}, "center": {"109-165, T:0-1": [1439, 1088]}},
-{"id": "twpn9r", "name": "Our Flag Means Death", "description": "One of the biggest hits of 2022, OFMD tells the tale of Stede Bonnet, a pampered aristocrat turned pirate, and Blackbeard, The most fearsome pirate of all time.", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"56-166, T:0-1": [[1900, 892], [1900, 917], [1923, 917], [1923, 892]]}, "center": {"56-166, T:0-1": [1912, 905]}},
+{"id": "twpnf6", "name": "Horny Matsuri", "description": "A sort of Ahegao face made by Natsuiro Matsuri of Hololive's 1st Gen. An iconic meme image within the Hololive community. She's God, OK?", "links": {"website": ["https://www.youtube.com/channel/UCQ0UDLQCjY0rmuxCDE38FGg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1423, 1102], [1423, 1073], [1454, 1073], [1454, 1103], [1453, 1103], [1423, 1103]]}, "center": {"109-165, T:0-1": [1439, 1088]}},
+{"id": "twpn9r", "name": "Our Flag Means Death", "description": "One of the biggest hits of 2022, Our Flag Means Death (OFMD) is a TV series that tells the tale of Stede Bonnet, a pampered aristocrat turned pirate, and Blackbeard, the most fearsome pirate of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Our_Flag_Means_Death"], "subreddit": ["OurFlagMeansDeath"]}, "path": {"144-161": [[1900, 893], [1900, 917], [1920, 917], [1920, 905], [1919, 904], [1919, 901], [1920, 900], [1920, 897], [1921, 896], [1921, 895], [1922, 894], [1920, 892], [1910, 892], [1910, 893]], "129-133": [[1901, 915], [1901, 929], [1925, 929], [1925, 923], [1926, 923], [1926, 918], [1924, 918], [1924, 914], [1912, 914], [1912, 915]], "67": [[1803, 825], [1803, 830], [1813, 830], [1813, 825]], "101-128, 134-143": [[1900, 893], [1900, 917], [1901, 917], [1901, 929], [1925, 929], [1925, 918], [1924, 918], [1924, 914], [1920, 914], [1920, 906], [1918, 903], [1920, 900], [1920, 892], [1915, 892], [1914, 893]], "162-166, T:0-1": [[1900, 893], [1900, 917], [1902, 917], [1902, 934], [1934, 934], [1934, 917], [1920, 917], [1920, 905], [1919, 904], [1920, 903], [1920, 897], [1921, 897], [1921, 894], [1919, 894], [1919, 892], [1910, 892], [1910, 893]]}, "center": {"144-161": [1915, 897], "129-133": [1916, 921], "67": [1808, 828], "101-128, 134-143": [1911, 919], "162-166, T:0-1": [1915, 897]}},
{"id": "twpn68", "name": "Schrödinger equation", "description": "The famous equation that is the basis of quantum physics. This one is time-independent and written in the most compact form.", "links": {"website": ["https://en.wikipedia.org/wiki/Schr%C3%B6dinger_equation"], "subreddit": ["physics", "place_CentralAlliance"]}, "path": {"109-165, T:0-1": [[588, 1090], [588, 1105], [624, 1105], [624, 1093], [592, 1093], [592, 1090]]}, "center": {"109-165, T:0-1": [606, 1099]}},
{"id": "twpmtd", "name": "Jurassic Park", "description": "This is the logo of the 1993 movie 'Jurassic Park', it was created by the subreddit r/JurassicParkPlace to honor this movie's 30th anniversary (2023).", "links": {"website": ["https://www.jurassicworld.com/"], "subreddit": ["JurassicParkPlace"]}, "path": {"109-166, T:0-1": [[936, 1743], [975, 1743], [975, 1764], [937, 1763], [936, 1744], [936, 1763]]}, "center": {"109-166, T:0-1": [956, 1753]}},
-{"id": "twpm5g", "name": "Takanashi Kiara", "description": "Takanashi Kiara (小鳥遊キアラ) is an English virtual YouTuber associated with Hololive, debuting as part of its English (EN) branch First Generation (HoloMyth) of VTubers.", "links": {"website": ["https://en.hololive.tv/"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1333, 1044], [1344, 1044], [1344, 1046], [1343, 1046], [1343, 1049], [1344, 1049], [1343, 1049], [1343, 1050], [1343, 1051], [1344, 1051], [1344, 1052], [1345, 1052], [1345, 1054], [1345, 1058], [1344, 1058], [1344, 1057], [1338, 1057], [1338, 1058], [1336, 1058], [1335, 1058], [1335, 1059], [1333, 1059]]}, "center": {"109-165, T:0-1": [1338, 1051]}},
+{"id": "twpm5g", "name": "Takanashi Kiara", "description": "Takanashi Kiara (小鳥遊キアラ) is an English virtual YouTuber associated with Hololive, debuting as part of its English (EN) branch First Generation (HoloMyth) of VTubers.", "links": {"website": ["https://en.hololive.tv/"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1333, 1044], [1344, 1044], [1344, 1046], [1343, 1046], [1343, 1049], [1344, 1049], [1343, 1049], [1343, 1050], [1343, 1051], [1344, 1051], [1344, 1052], [1345, 1052], [1345, 1054], [1345, 1058], [1344, 1058], [1344, 1057], [1338, 1057], [1338, 1058], [1336, 1058], [1335, 1058], [1335, 1059], [1333, 1059]]}, "center": {"109-165, T:0-1": [1338, 1051]}},
{"id": "twplzm", "name": "Super Mario 64", "description": "Title screen/logo of the 1996 3D platforming game Super Mario 64, published by the Japanese game company Nintendo. The 'O' is replaced with a Yoshi egg from the Yoshi game series, a spin-off series from the Mario franchise.\n\nThis logo was proposed by speedrunner N8rBeans. This is the second iteration of the logo, after a previous attempt at the top of the first expansion was devastated by r/PlaceNL. The charge to establish this was led by Twitch streamer Johnny3Oak, in honor of all the people who sacrificed to the cause of Super Mario 64.", "links": {"website": ["https://en.wikipedia.org/wiki/Super_Mario_64", "https://twitch.tv/johnny3oak"], "subreddit": ["Mario"]}, "path": {"73-90": [[1506, 12], [1506, 35], [1558, 35], [1558, 14], [1552, 14], [1552, 12]], "111-166, T:0-1": [[1930, 1373], [1927, 1378], [1927, 1382], [1925, 1382], [1923, 1389], [1925, 1395], [1968, 1395], [1968, 1383], [1975, 1383], [1975, 1375], [1959, 1375], [1957, 1373]]}, "center": {"73-90": [1532, 24], "111-166, T:0-1": [1949, 1384]}},
{"id": "twplqa", "name": "Berlin TV Tower", "description": "The Berlin TV Tower is a 368m-high tower built in 1969. There is also a restaurant at 207m!", "links": {"website": ["https://tv-turm.de/#"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-165, T:0-1": [[552, 1102], [551, 1102], [551, 1126], [550, 1126], [550, 1130], [548, 1130], [544, 1134], [542, 1137], [544, 1140], [544, 1143], [546, 1143], [548, 1145], [549, 1145], [549, 1146], [548, 1147], [548, 1153], [549, 1153], [549, 1168], [548, 1169], [548, 1172], [549, 1172], [549, 1173], [555, 1173], [556, 1172], [556, 1168], [555, 1168], [555, 1153], [556, 1152], [556, 1146], [555, 1146], [555, 1145], [559, 1142], [560, 1140], [562, 1137], [562, 1136], [558, 1130], [555, 1130], [553, 1126], [553, 1102]]}, "center": {"109-165, T:0-1": [552, 1143]}},
{"id": "twplbp", "name": "Jarate", "description": "A thrown weapon in Team Fortress 2 known as \"jar-based karate\". It looks an awful lot like a jar of piss.", "links": {"website": ["https://youtu.be/x0lcrb_56Is", "https://wiki.teamfortress.com/wiki/Jarate"], "subreddit": ["TF2"]}, "path": {"69-101": [[678, 45], [678, 54], [685, 54], [685, 45]], "41-68": [[678, 45], [678, 53], [685, 53], [685, 45]], "102-166, T:0-1": [[813, 53], [816, 53], [817, 52], [817, 48], [816, 47], [817, 46], [812, 46], [813, 47], [812, 48], [812, 52]]}, "center": {"69-101": [682, 50], "41-68": [682, 49], "102-166, T:0-1": [815, 50]}},
@@ -1241,7 +1235,7 @@
{"id": "twpk8j", "name": "The Magnus Archives", "description": "The Magnus Archives (TMA) is a horror fiction anthology podcast founded by Rusty Quill examining what lurks in the archives of the Magnus Institute, an organisation dedicated to researching the esoteric and the weird. You can listen to it for free on YouTube, Spotify, and more!", "links": {"website": ["https://youtube.com/playlist?list=PLSbuB1AyaJk8zTF3nE2KRxuixG_A5gBKJ", "https://open.spotify.com/show/5pwBAjuJJAOt7cED5Lkjnk"], "subreddit": ["TheMagnusArchives"]}, "path": {"107-166, 56-104, T:0-1": [[1959, 175], [1959, 195], [2000, 195], [2000, 175]]}, "center": {"107-166, 56-104, T:0-1": [1980, 185]}},
{"id": "twpk1e", "name": "Fiets in de gracht", "description": "\"Fiets in de gracht\" is a Dutch phrase that means \"bike in the canal\".\n\nWelcome to the Netherlands. Getting around by bike is often the easiest way of transporting yourself. This also means that getting your bike stolen is extremely common. If you've lost your bike, and it wasn't worth reselling, you can probably find it tossed in the canal.", "links": {"website": ["https://www.reddit.com/r/thenetherlands/comments/a2b698/fiets_in_de_gracht_gegooid_wat_nu/"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"68-79": [[1431, 10], [1431, 14], [1423, 14], [1419, 18], [1419, 20], [1423, 24], [1426, 24], [1428, 22], [1437, 32], [1442, 30], [1444, 28], [1444, 26], [1440, 22], [1440, 18], [1444, 18], [1446, 16], [1443, 13], [1437, 13], [1435, 10]], "135-139, 89-123": [[1431, 10], [1431, 14], [1423, 14], [1419, 18], [1419, 20], [1423, 24], [1426, 24], [1428, 22], [1433, 27], [1433, 28], [1444, 28], [1444, 26], [1440, 22], [1440, 19], [1441, 18], [1444, 18], [1446, 16], [1443, 13], [1436, 13], [1432, 10]], "140-167, T:0-1": [[1593, 17], [1584, 21], [1580, 25], [1580, 27], [1584, 31], [1587, 31], [1589, 29], [1595, 35], [1604, 35], [1604, 32], [1601, 29], [1601, 26], [1602, 25], [1605, 25], [1607, 23], [1604, 20], [1597, 20]]}, "center": {"68-79": [1434, 19], "135-139, 89-123": [1434, 19], "140-167, T:0-1": [1594, 26]}},
{"id": "twpjyu", "name": "F-35-chan", "description": "NonCredibleDefense's emblem and mascot. Originally stems from Anyan's \"Flight Highschool\" manga comic series.", "links": {"website": ["https://flight-highschool.tumblr.com/"], "subreddit": ["NonCredibleDefense"]}, "path": {"2-166, T:0-1": [[869, 126], [871, 126], [871, 125], [873, 125], [873, 126], [875, 126], [875, 127], [877, 127], [877, 126], [877, 125], [882, 125], [882, 123], [880, 123], [880, 122], [881, 121], [882, 120], [884, 120], [885, 119], [885, 117], [884, 116], [883, 115], [882, 114], [881, 113], [880, 112], [879, 111], [879, 108], [878, 107], [878, 102], [877, 101], [876, 102], [876, 104], [875, 105], [875, 106], [870, 106], [869, 108], [869, 107], [868, 108], [868, 111], [869, 112], [869, 113], [870, 114], [869, 115], [868, 117], [868, 119], [870, 119], [870, 121], [869, 121], [869, 120], [869, 125]]}, "center": {"2-166, T:0-1": [876, 117]}},
-{"id": "twpjtb", "name": "Hilda and Alfur", "description": "The characters Hilda and Alfur from Hilda", "links": {"website": ["https://hildatheseries.com/"], "subreddit": ["HildaTheSeries"]}, "path": {"56-166, T:0-1": [[1472, 898], [1472, 911], [1490, 911], [1490, 898]]}, "center": {"56-166, T:0-1": [1481, 905]}},
+{"id": "twpjtb", "name": "Hilda", "description": "Hilda is a Netflix animated series. This art features the character Hilda and Alfur.", "links": {"website": ["https://hildatheseries.com/", "https://en.wikipedia.org/wiki/Hilda_(TV_series)"], "subreddit": ["HildaTheSeries"]}, "path": {"82-166, T:0-1": [[1471, 897], [1471, 912], [1491, 912], [1491, 897]]}, "center": {"82-166, T:0-1": [1481, 900]}},
{"id": "twpjfq", "name": "Game Grumps", "description": "A Youtube let's play and improv comedy channel with Arin Hanson and Dan Avidan.", "links": {"website": ["https://www.youtube.com/user/GameGrumps"], "subreddit": ["gamegrumps"]}, "path": {"109-166, T:0-1": [[923, 1604], [933, 1604], [933, 1609], [923, 1609]]}, "center": {"109-166, T:0-1": [928, 1607]}},
{"id": "twpjfd", "name": "Jake the Brick", "description": "Jake in a form of Nevada, made by a group of adventure time fans.", "links": {"discord": ["F9tX62qe"]}, "path": {"109-166, T:0-1": [[1576, 1376], [1576, 1397], [1559, 1397], [1549, 1386], [1549, 1370], [1555, 1369], [1557, 1373], [1565, 1372], [1565, 1376]]}, "center": {"109-166, T:0-1": [1563, 1384]}},
{"id": "twpjai", "name": "Cyclic vs. Riot", "description": "A depiction of one of the greatest dualities/rivalries in Geometry Dash, between South Korean player Cyclic and American player Riot.", "links": {"subreddit": ["geometrydashplace", "geometrydash"]}, "path": {"109-166, T:0-1": [[551, 1710], [619, 1710], [619, 1691], [614, 1686], [614, 1681], [587, 1681], [587, 1682], [581, 1682], [577, 1687], [573, 1687], [572, 1689], [568, 1689], [566, 1687], [562, 1687], [561, 1689], [559, 1689], [554, 1684], [554, 1683], [551, 1683]]}, "center": {"109-166, T:0-1": [586, 1697]}},
@@ -1268,7 +1262,7 @@
{"id": "tws7mh", "name": "Trash Clan's skull", "description": "This is the skull representing the Trash Clan. The trash clan are the loyal members of Snuffy's community", "links": {"website": ["https://www.twitch.tv/snuffy"]}, "path": {"148-161": [[1942, 1219], [1981, 1219], [1981, 1215], [1988, 1215], [1988, 1214], [1989, 1213], [1990, 1213], [1991, 1214], [1992, 1213], [1993, 1213], [1994, 1214], [1994, 1215], [1999, 1215], [1999, 1172], [1942, 1172]], "114-147": [[1942, 1219], [1999, 1219], [1999, 1172], [1942, 1172]], "162-164, T:0-1": [[1942, 1220], [1948, 1220], [1948, 1219], [1950, 1217], [1951, 1218], [1952, 1217], [1954, 1219], [1954, 1220], [1963, 1220], [1963, 1219], [1981, 1219], [1981, 1215], [1988, 1215], [1988, 1214], [1989, 1213], [1990, 1213], [1991, 1214], [1992, 1213], [1993, 1213], [1994, 1214], [1995, 1214], [1995, 1208], [1999, 1208], [1999, 1172], [1942, 1172]]}, "center": {"148-161": [1966, 1196], "114-147": [1971, 1196], "162-164, T:0-1": [1968, 1195]}},
{"id": "tws788", "name": "The Tree People", "description": "A small Reddit chat that united for a common cause. The Tree People patch shows the story of a tree, a man, his wife and their dog Pickles. Thank you to those communities that supported us during r/place!", "links": {"subreddit": ["place_the_tree_people"]}, "path": {"109-165, T:0-1": [[853, 1254], [861, 1254], [861, 1262], [853, 1262]]}, "center": {"109-165, T:0-1": [857, 1258]}},
{"id": "tws77m", "name": "Leeds United Football Club", "description": "Leeds United Football Club is an English professional association football (soccer) club in the city of Leeds, West Yorkshire, United Kingdom. The Leeds United logo is also the unofficial logo of the city. Leeds, Leeds, Leeds!", "links": {"website": ["https://www.leedsunited.com/", "https://en.wikipedia.org/wiki/Leeds_United_F.C."], "subreddit": ["LeedsUnited"]}, "path": {"59-163, T:0-1": [[1751, 597], [1742, 589], [1739, 582], [1737, 578], [1738, 569], [1746, 561], [1753, 559], [1760, 562], [1767, 570], [1766, 581], [1760, 591], [1753, 597]]}, "center": {"59-163, T:0-1": [1752, 576]}},
-{"id": "tws6gm", "name": "Nakiri Ayame", "description": "A chibi art of virtual YouTuber Nakiri Ayame, a kimono-clad oni who is a talent of Hololive, a VTuber agency.", "links": {"website": ["https://www.youtube.com/channel/UC7fk0CB07ly8oSl0aqKkqFg"], "subreddit": ["NakiriAyame", "Hololive"]}, "path": {"56-165, T:0-1": [[1389, 962], [1389, 963], [1389, 964], [1388, 964], [1388, 968], [1389, 968], [1389, 969], [1395, 969], [1395, 968], [1396, 968], [1396, 965], [1397, 965], [1396, 965], [1396, 964], [1397, 964], [1396, 964], [1396, 963], [1395, 963], [1395, 962], [1395, 963], [1389, 963]]}, "center": {"56-165, T:0-1": [1392, 966]}},
+{"id": "tws6gm", "name": "Nakiri Ayame", "description": "A chibi art of virtual YouTuber Nakiri Ayame, a kimono-clad oni who is a talent of Hololive, a VTuber agency.", "links": {"website": ["https://www.youtube.com/channel/UC7fk0CB07ly8oSl0aqKkqFg"], "subreddit": ["NakiriAyame", "Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1389, 962], [1389, 963], [1389, 964], [1388, 964], [1388, 968], [1389, 968], [1389, 969], [1395, 969], [1395, 968], [1396, 968], [1396, 965], [1397, 965], [1396, 965], [1396, 964], [1397, 964], [1396, 964], [1396, 963], [1395, 963], [1395, 962], [1395, 963], [1389, 963]]}, "center": {"56-165, T:0-1": [1392, 966]}},
{"id": "tws6e3", "name": "404 girl", "description": "Yotsuba Koiwai from Yotsuba&!, 4chan mascot", "links": {"website": ["https://4chan.org"]}, "path": {"56-166, T:0-1": [[1708, 942], [1708, 963], [1729, 963], [1729, 941], [1728, 941], [1727, 942], [1725, 942], [1724, 943], [1719, 943], [1718, 944], [1712, 944], [1710, 942]]}, "center": {"56-166, T:0-1": [1719, 953]}},
{"id": "tws5va", "name": "The Pixel Place", "description": "The Pixel Place (ThePixelPlace.Space) is a site inspired by r/place.", "links": {"website": ["https://thepixelplace.space/"], "subreddit": ["ThePixelPlace", "757575"]}, "path": {"8-79": [[763, 561], [763, 570], [759, 570], [759, 572], [760, 572], [760, 576], [772, 576], [772, 561]], "88-89": [[759, 569], [759, 571], [760, 571], [760, 575], [772, 575], [772, 569]], "80-87, 90-165, T:0-1": [[772, 560], [772, 575], [760, 575], [760, 571], [759, 571], [759, 569], [763, 569], [763, 560]]}, "center": {"8-79": [767, 566], "88-89": [766, 572], "80-87, 90-165, T:0-1": [767, 565]}},
{"id": "tws5nr", "name": "Ballclark", "description": "Ballclark is an emoji from the Discord server for the browser game Blaseball. It is an angry baseball (or blaseball) representing one of the game's developers.", "links": {"website": ["https://www.blaseball.com/", "https://en.wikipedia.org/wiki/Blaseball"], "discord": ["blaseball"]}, "path": {"19-97": [[113, 686], [109, 690], [109, 694], [113, 698], [117, 698], [121, 694], [121, 690], [117, 686]], "150-166, T:0-1": [[112, 686], [118, 686], [122, 681], [122, 676], [118, 672], [112, 672], [108, 677], [108, 679]]}, "center": {"19-97": [115, 692], "150-166, T:0-1": [115, 679]}},
@@ -1290,19 +1284,19 @@
{"id": "tws3ot", "name": "Mjölnir", "description": "Thor's hammer, Mjölnir, from Marvel.", "links": {"subreddit": ["Marvel_place"]}, "path": {"109-166, T:0-1": [[987, 1700], [997, 1700], [998, 1699], [998, 1694], [996, 1694], [996, 1693], [993, 1693], [993, 1680], [991, 1680], [991, 1693], [987, 1693], [986, 1694], [986, 1698], [986, 1699]]}, "center": {"109-166, T:0-1": [992, 1694]}},
{"id": "tws3kh", "name": "Morbius", "description": "Morbius, real name Dr. Michael Morbius, is a character in the Marvel comic books. He is the star of the movie Morbius (2022), played by Jared Leto. The movie was heavily criticized upon release, becoming an internet meme.", "links": {"website": ["https://en.wikipedia.org/wiki/Morbius,_the_Living_Vampire", "https://knowyourmeme.com/memes/morbius-sweep"], "subreddit": ["MarvelStudiosSpoilers"]}, "path": {"3-165, T:0-1": [[108, 345], [115, 345], [115, 344], [118, 341], [118, 338], [116, 336], [117, 335], [116, 334], [117, 333], [114, 330], [109, 330], [106, 333], [107, 334], [106, 335], [107, 336], [105, 338], [105, 341], [108, 344]]}, "center": {"3-165, T:0-1": [111, 340]}},
{"id": "tws39y", "name": "Squirrel Girl", "description": "Squirrel Girl, and her partner Tippy-Toe, from the Marvel comics.", "links": {"subreddit": ["Marvel_place"]}, "path": {"109-166, T:0-1": [[955, 1690], [955, 1693], [956, 1694], [959, 1694], [959, 1692], [961, 1691], [964, 1691], [965, 1690], [959, 1690], [958, 1689], [955, 1690], [955, 1693]]}, "center": {"109-166, T:0-1": [958, 1691]}},
-{"id": "tws340", "name": "Planetside 2", "description": "Coordination by Qaztar. The logo represents the 4 factions which is Terran Republic (red), New Conglomerate (blue), Vanu Sovereignty (purple) and Nanite System Operative (white) surrounding the planetside where unending battle happens.\n\nPlanetside 2 is an MMOFPSRPG where three factions collides and massive battle happens up to 200+ player with plane, Tanks, construction and orbital strike (nuke). Don't run over your teammates ffs.", "links": {"website": ["https://www.planetside2.com/home"], "subreddit": ["planetside"]}, "path": {"56-166, T:0-1": [[1870, 893], [1892, 894], [1892, 914], [1869, 917]]}, "center": {"56-166, T:0-1": [1880, 905]}},
+{"id": "tws340", "name": "PlanetSide 2", "description": "PlanetSide 2 is a free-to-play massively multiplayer online first-person shooter game released in 2012. It is developed by Rogue Planet Games and published by Daybreak Game Company. In the game, three factions collide and massive battles happen with 200+ players. Use planes, tanks, construction, and orbital strike (nukes) to win against your opponents. Don't run over your teammates.\n\nThis art was coordinated by Qaztar. It depicts the four factions Terran Republic (red), New Conglomerate (blue), Vanu Sovereignty (purple), and Nanite System Operative (white) surrounding the PlanetSide where unending battle happens.", "links": {"website": ["https://www.planetside2.com/home", "https://en.wikipedia.org/wiki/PlanetSide_2"], "subreddit": ["Planetside"]}, "path": {"98-166, T:0-1": [[1869, 893], [1869, 916], [1892, 916], [1892, 893]]}, "center": {"98-166, T:0-1": [1881, 905]}},
{"id": "tws2yi", "name": "Daredevil", "description": "Daredevil's logo, from Marvel.", "links": {"subreddit": ["daredevil"]}, "path": {"109-166, T:0-1": [[982, 1683], [985, 1683], [986, 1684], [986, 1685], [987, 1686], [987, 1688], [986, 1689], [983, 1689], [982, 1687]]}, "center": {"109-166, T:0-1": [984, 1686]}},
-{"id": "tws2uu", "name": "Döner kebab man", "description": "A drawing that can be found on most German Döner kebab paper packaging. Döner is a popular dish in Germany where meat, salad and sauce are stuffed into a partially sliced flatbread.", "links": {"website": ["https://en.wikipedia.org/wiki/Doner_kebab"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1371, 864], [1370, 863], [1372, 860], [1372, 855], [1376, 848], [1376, 842], [1362, 847], [1359, 847], [1358, 841], [1362, 836], [1368, 832], [1373, 831], [1377, 831], [1379, 831], [1383, 831], [1388, 831], [1391, 832], [1394, 833], [1398, 836], [1402, 841], [1401, 846], [1401, 847], [1398, 847], [1394, 848], [1395, 851], [1396, 853], [1395, 857], [1394, 858], [1388, 860], [1390, 863], [1388, 866], [1386, 868], [1377, 869], [1376, 865]]}, "center": {"56-166, T:0-1": [1382, 847]}},
+{"id": "tws2uu", "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"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"60-139": [[1371, 829], [1359, 835], [1355, 839], [1354, 842], [1354, 844], [1356, 847], [1359, 847], [1366, 841], [1369, 841], [1374, 837], [1376, 837], [1376, 851], [1371, 856], [1371, 866], [1377, 866], [1377, 867], [1380, 869], [1385, 869], [1388, 866], [1388, 865], [1390, 863], [1390, 860], [1391, 859], [1391, 849], [1388, 846], [1385, 846], [1384, 844], [1384, 837], [1392, 842], [1393, 844], [1396, 844], [1398, 846], [1401, 846], [1403, 844], [1403, 841], [1399, 836], [1390, 829]], "140-166, T:0-1": [[1373, 830], [1361, 835], [1357, 841], [1357, 848], [1361, 848], [1368, 841], [1375, 838], [1375, 847], [1374, 848], [1374, 852], [1371, 856], [1371, 861], [1370, 861], [1370, 865], [1376, 865], [1378, 869], [1387, 869], [1389, 866], [1393, 864], [1393, 861], [1390, 861], [1390, 860], [1393, 858], [1396, 858], [1396, 845], [1398, 847], [1403, 847], [1403, 840], [1396, 835], [1396, 833], [1393, 833], [1391, 831], [1388, 831], [1387, 830]]}, "center": {"60-139": [1381, 858], "140-166, T:0-1": [1385, 850]}},
{"id": "tws2ub", "name": "Paluders", "description": "Community of Italian streamer Enkk. He loves big boobs and cringe contents.", "links": {"website": ["https://www.twitch.tv/enkk"], "subreddit": ["enkk"]}, "path": {"109-166, T:0-1": [[1571, 1787], [1565, 1787], [1564, 1787], [1565, 1802], [1576, 1802], [1576, 1787]]}, "center": {"109-166, T:0-1": [1570, 1794]}},
{"id": "tws2u9", "name": "Your Turn to Die", "description": "YTTD is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "links": {"subreddit": ["YTTD"]}, "path": {"109-166, T:0-1": [[421, 1850], [448, 1850], [448, 1881], [419, 1881], [419, 1856], [421, 1855]]}, "center": {"109-166, T:0-1": [434, 1866]}},
{"id": "tws2rp", "name": "Philadelphia Eagles", "description": "The Philadelphia Eagles, sometimes known as the Birds, are an American football team in the National Football League (NFL). The Eagles play in Philadelphia, Pennsylvania, United States. This art depicts a football helmet in the Eagles' colors. Go Birds!", "links": {"website": ["http://www.philadelphiaeagles.com/", "https://en.wikipedia.org/wiki/Philadelphia_Eagles"], "subreddit": ["eagles"]}, "path": {"3-23": [[937, 732], [930, 736], [926, 740], [926, 780], [970, 780], [970, 773], [958, 773], [958, 759], [956, 757], [953, 757], [953, 750], [956, 748], [956, 746], [951, 738], [947, 734], [944, 732]], "58-165, T:0-1": [[1928, 73], [1954, 73], [1954, 99], [1928, 99]]}, "center": {"3-23": [941, 765], "58-165, T:0-1": [1941, 86]}},
{"id": "tws2k5", "name": "Undertale Handplates AU", "description": "The Skeleton Family of Sans Papyrus and Gaster from the popular undertale AU 'Handplates' Created by Zarla", "links": {"website": ["http://handplates.the-comic.org/"], "subreddit": ["handplates"]}, "path": {"109-166, T:0-1": [[1843, 1735], [1863, 1735], [1862, 1716], [1854, 1717], [1854, 1719], [1852, 1719], [1851, 1723], [1851, 1724], [1850, 1726], [1846, 1725], [1846, 1726], [1846, 1727], [1845, 1727], [1845, 1730], [1845, 1732], [1844, 1733], [1844, 1734]]}, "center": {"109-166, T:0-1": [1855, 1727]}},
{"id": "tws2ao", "name": "Lofi Girl", "description": "Lofi Girl (officially named Jade, formerly ChilledCow) is a French YouTube channel and music label established in 2017. It provides livestreams of lo-fi hip hop music 24/7, accompanied by a Japanese-style animation of a girl studying or relaxing. The girl originates from a looping animation created to accompany the 24/7 music livestream \"lofi hip hop radio - beats to study/relax to\". Her creator is Juan Pablo Machado, a Colombian who was a student in an art school (Émile Cohl) in the city of Lyon, France. Through the window behind the girl is the hill of La Croix-Rousse, located in Lyon.", "links": {"website": ["https://www.youtube.com/watch?v=5qap5aO4i9A"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "LofiGirl"]}, "path": {"109-164, T:0-1": [[221, 1644], [219, 1643], [214, 1641], [213, 1641], [211, 1641], [208, 1644], [205, 1645], [200, 1647], [197, 1648], [196, 1649], [195, 1650], [195, 1652], [194, 1653], [193, 1656], [193, 1661], [194, 1662], [196, 1662], [198, 1663], [197, 1666], [198, 1666], [198, 1668], [196, 1668], [196, 1670], [196, 1671], [197, 1671], [197, 1672], [199, 1673], [200, 1674], [200, 1675], [196, 1675], [196, 1676], [194, 1676], [194, 1672], [193, 1672], [193, 1671], [192, 1671], [192, 1670], [191, 1670], [191, 1669], [189, 1669], [189, 1668], [182, 1668], [182, 1667], [181, 1667], [181, 1666], [179, 1666], [173, 1666], [173, 1667], [172, 1667], [172, 1668], [171, 1668], [171, 1671], [170, 1671], [170, 1682], [170, 1683], [170, 1684], [177, 1687], [181, 1688], [182, 1690], [182, 1692], [183, 1693], [183, 1694], [184, 1695], [192, 1695], [192, 1696], [234, 1696], [234, 1640], [228, 1640], [226, 1641], [222, 1642], [220, 1644], [220, 1643], [220, 1644], [217, 1643], [214, 1641], [220, 1644], [221, 1647]]}, "center": {"109-164, T:0-1": [208, 1672]}},
{"id": "tws2an", "name": "r/Shark_Park", "description": "This shark was made by r/Shark_Park, a shitposting subreddit.", "links": {"subreddit": ["Shark_Park"], "discord": ["pissing"]}, "path": {"77-84": [[243, 667], [241, 669], [241, 670], [243, 672], [247, 672], [249, 674], [250, 674], [250, 672], [251, 672], [254, 670], [256, 672], [261, 672], [261, 707], [263, 707], [263, 705], [264, 705], [264, 700], [265, 700], [265, 653], [261, 653], [261, 672], [258, 672], [258, 671], [256, 668], [258, 665], [258, 664], [256, 664], [253, 667], [251, 667], [251, 664], [250, 664], [247, 667]], "85-166, 9-76, T:0-1": [[243, 667], [241, 669], [241, 670], [243, 672], [247, 672], [249, 674], [250, 674], [250, 672], [251, 672], [254, 670], [256, 672], [258, 672], [258, 671], [256, 669], [256, 668], [258, 665], [258, 664], [253, 667], [251, 667], [251, 664], [250, 664], [247, 667]]}, "center": {"77-84": [249, 669], "85-166, 9-76, T:0-1": [249, 669]}},
-{"id": "tws24f", "name": "moon2Smug", "description": "A depiction of moon2Smug, a popular emote on Twitch from the streamer MOONMOON.", "links": {"website": ["https://www.twitch.tv/moonmoon"], "subreddit": ["MOONMOON_OW"]}, "path": {"56-166, T:0-1": [[1646, 898], [1686, 898], [1687, 956], [1646, 956]]}, "center": {"56-166, T:0-1": [1666, 927]}},
+{"id": "tws24f", "name": "moon2Smug", "description": "moon2Smug is a Twitch emote from the streamer MOONMOON.", "links": {"website": ["https://www.twitch.tv/moonmoon"], "subreddit": ["MOONMOON_OW"]}, "path": {"62-122": [[1647, 898], [1667, 898], [1667, 919], [1657, 919], [1650, 913], [1647, 909]], "124-166, T:0-1": [[1646, 898], [1687, 898], [1687, 939], [1662, 939], [1649, 921], [1647, 921], [1647, 910], [1646, 910]]}, "center": {"62-122": [1658, 908], "124-166, T:0-1": [1669, 917]}},
{"id": "tws1ov", "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": {"109-166, T:0-1": [[708, 1953], [713, 1948], [760, 1948], [760, 1970], [716, 1970], [711, 1966], [707, 1958]]}, "center": {"109-166, T:0-1": [735, 1959]}},
{"id": "tws1hf", "name": "Senko Loaf", "description": "Mafu Mafu", "links": {"website": ["https://knowyourmeme.com/memes/senko-loaf"], "subreddit": ["SewayakiKitsune"]}, "path": {"109-166, T:0-1": [[872, 1520], [875, 1520], [875, 1519], [879, 1519], [875, 1513], [875, 1509], [876, 1506], [879, 1506], [879, 1504], [876, 1503], [874, 1499], [873, 1496], [875, 1495], [875, 1493], [873, 1486], [871, 1486], [866, 1494], [860, 1493], [860, 1489], [857, 1485], [855, 1485], [854, 1486], [853, 1492], [802, 1492], [789, 1494], [780, 1497], [777, 1506], [781, 1515], [795, 1519], [850, 1519], [858, 1521], [859, 1520], [868, 1520], [870, 1519]]}, "center": {"109-166, T:0-1": [830, 1505]}},
-{"id": "tws1e4", "name": "Aqua Cat", "description": "Reference to the VTuber Minato Aqua (Hololive 2nd Gen.) and her Aqua Cat video, a parody of Nyan Cat.", "links": {"website": ["https://www.youtube.com/watch?v=Snn2gWq-3KY"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1332, 999], [1355, 998], [1355, 996], [1357, 995], [1358, 994], [1358, 991], [1357, 989], [1358, 987], [1359, 987], [1356, 985], [1354, 983], [1353, 981], [1353, 975], [1353, 974], [1352, 973], [1351, 972], [1352, 971], [1350, 972], [1348, 972], [1347, 972], [1346, 971], [1341, 971], [1338, 971], [1335, 972], [1332, 975], [1332, 974], [1332, 996], [1332, 998]]}, "center": {"56-165, T:0-1": [1344, 986]}},
+{"id": "tws1e4", "name": "Aqua Cat", "description": "Reference to the VTuber Minato Aqua (Hololive 2nd Gen.) and her Aqua Cat video, a parody of Nyan Cat.", "links": {"website": ["https://www.youtube.com/watch?v=Snn2gWq-3KY"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1332, 999], [1355, 998], [1355, 996], [1357, 995], [1358, 994], [1358, 991], [1357, 989], [1358, 987], [1359, 987], [1356, 985], [1354, 983], [1353, 981], [1353, 975], [1353, 974], [1352, 973], [1351, 972], [1352, 971], [1350, 972], [1348, 972], [1347, 972], [1346, 971], [1341, 971], [1338, 971], [1335, 972], [1332, 975], [1332, 974], [1332, 996], [1332, 998]]}, "center": {"56-165, T:0-1": [1344, 986]}},
{"id": "tws13j", "name": "Makedonium", "description": "Makedonium, also known as Ilinden, is a memorial in North Macedonia commemorating the 1903 Ilinden Uprising. The uprising was a revolt against the Ottoman Empire by the Internal Macedonian Revolutionary Organization (IMRO), an organization fighting for Macedonian independence, that took place in areas that are now North Macedonia.", "links": {"website": ["https://en.wikipedia.org/wiki/Ilinden_(memorial)"], "subreddit": ["mkd"]}, "path": {"158-164, T:0-1": [[1172, 508], [1172, 479], [1197, 479], [1197, 508]]}, "center": {"158-164, T:0-1": [1185, 494]}},
{"id": "tws06u", "name": "Alfred Jodocus Kwak", "description": "Alfred J. Kwak is a cartoon comedy-drama. It was written by Dutch artist Herman van Veen as a theater show, and was turned into an animated TV series in 1989 by Japanese anime artists at Telecable Benelux B.V. in co-production with VARA, ZDF, TVE, TV Tokyo and animation studio Visual '80; the show was known as Little Duck's Big Love Story in Japan. The series introduces children to themes like fascism and apartheid. First aired in 1989, The show was dubbed in 22 languages and is still being rerun.\n\nThis was added to the Japanese flag when r/PlaceNL moved it over a little.", "links": {"website": ["https://en.wikipedia.org/wiki/Alfred_J._Kwak"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[719, 1970], [728, 1970], [728, 1964], [724, 1961], [725, 1955], [722, 1949], [711, 1948], [706, 1955], [710, 1965], [714, 1970]]}, "center": {"109-166, T:0-1": [717, 1959]}},
{"id": "tws036", "name": "Brandenburg Gate", "description": "The Brandenburg Gate (German: Brandenburger Tor) is a famous 18th-century neoclassical triumphal monument in Berlin, Germany, on the west flank of the square Pariser Platz in Berlin's Mitte district. It was built between 1789 and 1793 on the instructions of the Prussian King Friedrich Wilhelm II after the temporary restoration of order during the Batavian Revolution. The gate was based on designs by Carl Gotthard Langhans, and is one of the first classicist buildings in Prussia, marking beginning of classicism as state-supporting architecture in Prussia. In terms of the language of form, it represents the turning from the Roman to the Greek model. The gate is the only surviving one of the last 18 Berlin city gates, and was positioned as the end of the central boulevard of Dorotheenstadt, the boulevard Unter den Linden. It was built on the site of a former city gate that marked the start of the road from Berlin to the town of Brandenburg an der Havel, which used to be the capital of the Margraviate of Brandenburg. The Quadriga sculpture crowning the gate is a work designed by the sculptor Johann Gottfried Schadow. To the west of the Brandenburg Gate are the extensive green areas of the Großer Tiergarten, which are crossed by Straße des 17. Juni in a straight line extension of Unter den Linden. The area immediately to the west of the gate is called 18th March Square.\n\nThe gate is a German national symbol, with which many important historical events of the 19th and 20th centuries are connected. Up to World War II, the end of Napoleon's rule in 1813-1815 was associated with the building. The gate sustained severe war damage during World War II, and was restored by 1958. Until the fall of the Iron Curtain, it stood directly on the border between East and West Berlin and thus symbolized the meeting of the Warsaw Pact and NATO during the Cold War at the most sensitive point in world politics on their common border. Accordingly, since 1990 and Germany reunification, the Brandenburg Gate has also been seen as a symbol of overcoming the division of Germany and Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Brandenburg_Gate"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"51-165, T:0-1": [[676, 866], [732, 866], [732, 851], [733, 850], [733, 846], [737, 843], [731, 835], [711, 835], [711, 832], [709, 830], [705, 827], [703, 827], [697, 831], [697, 835], [676, 835], [676, 846], [677, 846], [677, 861], [676, 861]]}, "center": {"51-165, T:0-1": [704, 850]}},
@@ -1311,7 +1305,7 @@
{"id": "twrz8x", "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. To the right of the TARDIS is the iconic scarf of Tom Baker, the fourth iteration of the Doctor.\n\nThis TARDIS started as \"Tiny TARDIS\", an ally to the nearby Rainbow Dash from My Little Pony back in r/place 2017. It stayed in this location when MLP relocated. It later grew larger, though its simplicity mostly remained at the end.\n\nThis art was allied with the nearby purple heart and Finland. The relationship with Finland started off rocky, and the TARDIS was turned into a Nokia phone by Finland before being reclaimed and establishing peace. On the final day of r/place, the Finnish children's book character Hakkarainen was drawn walking into the TARDIS.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["tinytardis", "placeTARDIS", "doctorwho"]}, "path": {"5-6": [[584, 263], [584, 275], [590, 275], [590, 263]], "1-4": [[584, 257], [584, 268], [590, 268], [590, 257]], "26-61": [[583, 203], [583, 227], [582, 227], [582, 243], [569, 243], [569, 259], [570, 259], [570, 285], [593, 285], [593, 284], [591, 282], [591, 264], [592, 264], [592, 256], [589, 251], [586, 250], [586, 228], [585, 227], [585, 203]], "62-73": [[570, 233], [570, 285], [592, 285], [592, 282], [591, 282], [591, 265], [592, 265], [592, 263], [588, 259], [592, 256], [589, 251], [587, 250], [587, 237], [584, 233]], "74-104": [[570, 237], [570, 285], [592, 285], [592, 282], [591, 282], [591, 264], [592, 264], [592, 262], [586, 259], [588, 254], [588, 252], [584, 249], [580, 254], [582, 259], [576, 262], [575, 262], [575, 237]], "7-25": [[569, 253], [569, 259], [570, 259], [570, 285], [593, 285], [593, 284], [591, 282], [591, 265], [592, 265], [592, 263], [590, 261], [590, 255], [584, 252], [583, 253]], "116-166, T:0-1": [[584, 255], [582, 257], [582, 259], [580, 259], [577, 261], [576, 262], [576, 264], [577, 264], [577, 281], [576, 281], [576, 284], [592, 284], [592, 281], [591, 281], [591, 264], [592, 264], [592, 262], [590, 260], [588, 259], [586, 259], [586, 257]]}, "center": {"5-6": [587, 269], "1-4": [587, 263], "26-61": [581, 260], "62-73": [581, 266], "74-104": [581, 272], "7-25": [580, 269], "116-166, T:0-1": [584, 270]}},
{"id": "twrz5s", "name": "Aternos", "description": "Aternos is a Minecraft server-hosting service that aims to host Minecraft servers without paying for anything.", "links": {"website": ["https://aternos.org/"], "subreddit": ["aternos"]}, "path": {"109-165, T:0-1": [[1961, 1511], [1978, 1511], [1978, 1528], [1961, 1528]]}, "center": {"109-165, T:0-1": [1970, 1520]}},
{"id": "twryox", "name": "Ralsei", "description": "One of the main characters in Deltarune, an indie game created by Toby Fox. He is a fluffy goat prince with magical abilities, and serves as the party healer and resident expert of the Dark World. He can also can lull enemies to sleep by singing lullabies. Everyone likes Ralsei.\n\nThis art shows Ralsei's shadowed appearance from Deltarune Chapter 1. His appearance from Chapter 2 is in the art above.", "links": {"website": ["https://deltarune.fandom.com/wiki/Ralsei"], "subreddit": ["ralsei", "Deltarune"]}, "path": {"77-103": [[1747, 206], [1747, 248], [1768, 248], [1768, 236], [1769, 235], [1772, 235], [1772, 206]], "57-75": [[1747, 206], [1747, 248], [1756, 248], [1752, 251], [1754, 253], [1768, 253], [1766, 249], [1769, 247], [1768, 244], [1768, 236], [1772, 236], [1772, 206]], "104-166, T:0-1": [[1747, 206], [1747, 252], [1752, 252], [1752, 253], [1768, 253], [1768, 252], [1772, 252], [1772, 206]]}, "center": {"77-103": [1760, 219], "57-75": [1760, 219], "104-166, T:0-1": [1760, 230]}},
-{"id": "twry93", "name": "Kinder Surprise Egg (Üei)", "description": "Kinder Surprise is a milk chocolate consisting of a chocolate egg surrounding a yellow plastic capsule with a small toy inside. Manufactured by the Italian company Ferrero since 1974, it was co-created by Michele Ferrero and William Salice, and is one of several candies sold under the Kinder brand. Kinder Surprise was originally created with children in mind, replicating an Italian Easter family tradition in which adults give children large chocolate eggs with toys inside. However, Kinder Surprise toys have become collectible for adults as well. Since 1974, 30 billion Kinder Surprise eggs have been sold worldwide.", "links": {"website": ["https://en.wikipedia.org/wiki/Kinder_Surprise"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1527, 833], [1524, 833], [1520, 835], [1517, 840], [1513, 849], [1512, 856], [1514, 861], [1522, 867], [1530, 866], [1535, 860], [1538, 853], [1538, 843], [1535, 838], [1532, 834], [1528, 832], [1523, 832]]}, "center": {"56-166, T:0-1": [1526, 850]}},
+{"id": "twry93", "name": "Kinder Surprise Egg", "description": "Kinder Surprise Egg (German: Überraschungsei or Ü-Ei) is a milk chocolate consisting of a chocolate egg surrounding a yellow plastic capsule with a small toy inside. Manufactured by the Italian company Ferrero since 1974, it was co-created by Michele Ferrero and William Salice, and is one of several candies sold under the Kinder brand. Kinder Surprise was originally created with children in mind, replicating an Italian Easter family tradition in which adults give children large chocolate eggs with toys inside. However, Kinder Surprise toys have become collectible for adults as well. Since 1974, 30 billion Kinder Surprise eggs have been sold worldwide.", "links": {"website": ["https://www.kinder.com/it/it/kinder-sorpresa", "https://en.wikipedia.org/wiki/Kinder_Surprise"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"98-100": [[1536, 832], [1530, 836], [1526, 841], [1521, 852], [1521, 856], [1524, 861], [1531, 867], [1537, 867], [1543, 863], [1548, 855], [1548, 843], [1543, 835], [1539, 832]], "101-166, T:0-1": [[1526, 832], [1521, 835], [1516, 841], [1514, 843], [1511, 852], [1511, 855], [1514, 861], [1521, 867], [1527, 867], [1532, 864], [1538, 855], [1538, 844], [1535, 840], [1533, 835], [1529, 832]]}, "center": {"98-100": [1535, 852], "101-166, T:0-1": [1525, 851]}},
{"id": "twrxsz", "name": "Hive Minigames", "description": "The Hive is a Minecraft: Bedrock Edition featured server, in existence since 2018. Its Java edition server existed from 2013-2021. /r/place image made with help from volunteer and non-volunteer staff, as well as lovely members of the community!", "links": {"website": ["https://playhive.com/"], "subreddit": ["hivemc"]}, "path": {"109-166, T:0-1": [[470, 1552], [479, 1552], [479, 1542], [485, 1542], [486, 1541], [487, 1540], [490, 1540], [490, 1561], [470, 1561]]}, "center": {"109-166, T:0-1": [482, 1553]}},
{"id": "twrxre", "name": "Tadano Hitohito", "description": "A main character from manga/anime series Komi-san wa, Comyushou desu.", "links": {"website": ["https://komisan.fandom.com/wiki/Tadano_Hitohito"], "subreddit": ["Komi_San_Place", "Komi_san"]}, "path": {"109-165, T:0-1": [[827, 1471], [826, 1472], [826, 1473], [824, 1475], [824, 1477], [822, 1477], [821, 1476], [820, 1477], [820, 1485], [824, 1489], [821, 1489], [818, 1492], [818, 1494], [821, 1497], [824, 1497], [826, 1495], [826, 1492], [828, 1494], [838, 1494], [838, 1496], [841, 1499], [844, 1499], [846, 1497], [846, 1494], [843, 1491], [841, 1491], [843, 1489], [843, 1483], [844, 1482], [845, 1482], [846, 1481], [843, 1479], [846, 1477], [844, 1475], [842, 1475], [840, 1473], [838, 1473], [837, 1472], [835, 1472], [834, 1471]]}, "center": {"109-165, T:0-1": [832, 1485]}},
{"id": "twrxa8", "name": "Utsuho Reiuji", "description": "Also known as Okuu. She is the final boss in Touhou 11: Subterranean Animism. She is a hell raven who lives beneath the ground of Gensokyo and is one of Satori Komeiji's pets. Her job is to maintain the flames of hell through the manipulation of nuclear fusion.", "links": {"website": ["https://en.touhouwiki.net/wiki/Utsuho_Reiuji"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1621, 1517], [1621, 1550], [1654, 1550], [1654, 1517]]}, "center": {"109-166, T:0-1": [1638, 1534]}},
@@ -1335,7 +1329,7 @@
{"id": "twrtqg", "name": "r/MinecraftMemes", "description": "Subreddit icon for r/MinecraftMemes.", "links": {"subreddit": ["MinecraftMemes"]}, "path": {"109-165, T:0-1": [[1132, 1339], [1132, 1351], [1143, 1351], [1143, 1339]]}, "center": {"109-165, T:0-1": [1138, 1345]}},
{"id": "twrto4", "name": "Bicycles", "description": "The Netherlands might be the bicycles country, but Belgium and especially Flemishes are proud of their cycling prowess, as Belgium is by far the country that has won the most cycling world championships", "links": {"website": ["https://en.wikipedia.org/wiki/Cycle_racing_in_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-166, T:0-1": [[1300, 1465], [1333, 1466], [1332, 1566], [1301, 1567]]}, "center": {"109-166, T:0-1": [1316, 1515]}},
{"id": "twrtn7", "name": "LEMMiNO", "description": "LEMMiNO (real name David Wångstedt) is a Swedish YouTuber, animator, and musician. His educational YouTube channel does documentaries and list videos.", "links": {"website": ["https://www.lemmi.no/"], "subreddit": ["LEMMiNO"]}, "path": {"93-166, T:0-1": [[1590, 249], [1603, 249], [1603, 261], [1590, 261]]}, "center": {"93-166, T:0-1": [1597, 255]}},
-{"id": "twrtmq", "name": "猫又おかゆ (Nekomata Okayu)", "description": "猫又おかゆ (Nekomata Okayu) is a Japanese VTuber from Hololive GAMERS. Her representative emoji is an onigiri (rice ball) since she used to live with an old lady in a rice ball store, and her fans are called the Onigirya (the Rice Balls).\n\nThis picture was originally larger, but was downsized due to disagreements and increasing demands from Bolivia.", "links": {"website": ["https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw"], "subreddit": ["okbuddyhololive", "Hololive"]}, "path": {"109-166, T:0-1": [[1332, 1200], [1332, 1173], [1333, 1173], [1333, 1172], [1340, 1172], [1340, 1170], [1344, 1170], [1344, 1171], [1345, 1171], [1345, 1172], [1350, 1172], [1351, 1172], [1351, 1171], [1352, 1171], [1352, 1170], [1352, 1171], [1353, 1171], [1353, 1172], [1358, 1172], [1358, 1171], [1365, 1171], [1365, 1173], [1365, 1172], [1366, 1172], [1372, 1172], [1372, 1200], [1352, 1200], [1333, 1200]]}, "center": {"109-166, T:0-1": [1352, 1186]}},
+{"id": "twrtmq", "name": "猫又おかゆ (Nekomata Okayu)", "description": "猫又おかゆ (Nekomata Okayu) is a Japanese VTuber from Hololive GAMERS. Her representative emoji is an onigiri (rice ball) since she used to live with an old lady in a rice ball store, and her fans are called the Onigirya (the Rice Balls).\n\nThis picture was originally larger, but was downsized due to disagreements and increasing demands from Bolivia.", "links": {"website": ["https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw"], "subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1332, 1200], [1332, 1173], [1333, 1173], [1333, 1172], [1340, 1172], [1340, 1170], [1344, 1170], [1344, 1171], [1345, 1171], [1345, 1172], [1350, 1172], [1351, 1172], [1351, 1171], [1352, 1171], [1352, 1170], [1352, 1171], [1353, 1171], [1353, 1172], [1358, 1172], [1358, 1171], [1365, 1171], [1365, 1173], [1365, 1172], [1366, 1172], [1372, 1172], [1372, 1200], [1352, 1200], [1333, 1200]]}, "center": {"109-166, T:0-1": [1352, 1186]}},
{"id": "twu3qx", "name": "Whitepod Alliance", "description": "Alliance of seven small artworks that fought against the void together.", "links": {}, "path": {"109-165, T:0-1": [[1084, 1178], [1097, 1178], [1099, 1279], [1084, 1278], [1083, 1278], [1083, 1279]]}, "center": {"109-165, T:0-1": [1091, 1230]}},
{"id": "twu3pr", "name": "iJevin", "description": "iJevin is a member of Hermitcraft.", "links": {"website": ["https://www.youtube.com/channel/UCrEtZMErQXaSYy_JDGoU5Qw", "https://hermitcraft.fandom.com/wiki/IJevin"], "subreddit": ["HermitCraft"]}, "path": {"28-165, T:0-1": [[860, 607], [869, 607], [869, 615], [860, 615]]}, "center": {"28-165, T:0-1": [865, 611]}},
{"id": "twu3n6", "name": "Aston Villa Football Club", "description": "Aston Villa Football Club is an English professional football club based in Aston, Birmingham. Founded in 1874, Aston Villa are one of the five English clubs to have won the European Cup, in 1981–1982.", "links": {"subreddit": ["avfc"]}, "path": {"109-166, T:0-1": [[620, 1684], [643, 1685], [643, 1718], [619, 1717], [619, 1715]]}, "center": {"109-166, T:0-1": [631, 1701]}},
@@ -1384,7 +1378,7 @@
{"id": "twtv11", "name": "Twenty One Pilots", "description": "Twenty One Pilots logo with Ned created by the community of TØP. Ned is a fictional character created by lead singer Tyler Joseph. As stated in an interview, Ned represents Tyler's creativity.", "links": {"subreddit": ["twentyonepilots"]}, "path": {"109-164, T:0-1": [[290, 1635], [290, 1678], [324, 1678], [324, 1635], [315, 1635], [314, 1635], [312, 1634], [311, 1631], [310, 1633], [304, 1633], [303, 1631], [302, 1633], [302, 1634], [301, 1634], [300, 1634], [300, 1635]]}, "center": {"109-164, T:0-1": [307, 1656]}},
{"id": "twtuvd", "name": "Asexual heart", "description": "An asexual (ace) pride heart that was added over the Ace Attorney drawing as a pun. Asexual people have no sexual attraction to others.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"], "subreddit": ["plAceAttorney", "AceAttorney"]}, "path": {"66-166, T:0-1": [[1314, 82], [1312, 84], [1312, 85], [1316, 89], [1320, 85], [1320, 84], [1318, 82]]}, "center": {"66-166, T:0-1": [1316, 85]}},
{"id": "twtuv4", "name": "Bluey", "description": "Bluey is the titular character of the Australian children's cartoon Bluey, a wholesome Australian children's show featuring a blue heeler family.\n\nIn this art, Bluey holds an orange heart representing her sister Bingo. Bingo was featured beside Bluey on day 1 of r/place, but the space she occupied was reclaimed by the United Kingdom on day 2. The evolution of Bluey's r/place art is included in the website below.", "links": {"website": ["https://i.imgur.com/7cj1Yl1.jpg", "https://en.wikipedia.org/wiki/Bluey_(2018_TV_series)", "https://blueypedia.fandom.com/wiki/Bluey_Heeler"], "subreddit": ["bluey"], "discord": ["b5NqYKt3xX"]}, "path": {"70-114": [[559, 505], [554, 510], [554, 536], [552, 536], [551, 535], [549, 537], [549, 540], [551, 542], [553, 542], [554, 544], [554, 549], [556, 551], [568, 551], [568, 547], [567, 547], [567, 538], [569, 536], [569, 526], [574, 520], [571, 517], [569, 517], [569, 506], [566, 506], [563, 510], [561, 510], [561, 507]], "23-69": [[559, 503], [553, 509], [553, 542], [555, 544], [555, 549], [557, 551], [569, 551], [571, 549], [571, 542], [573, 540], [573, 526], [576, 523], [576, 519], [573, 519], [571, 517], [571, 513], [570, 512], [570, 506], [567, 502], [566, 502], [562, 507], [561, 507], [561, 505]], "6-20": [[481, 407], [473, 417], [473, 431], [481, 440], [485, 437], [488, 437], [488, 434], [491, 432], [498, 432], [501, 430], [498, 425], [498, 416], [494, 414], [488, 414], [487, 413], [486, 414], [483, 414], [483, 410]], "115-165, T:0-1": [[556, 507], [554, 510], [554, 535], [551, 535], [549, 537], [549, 540], [555, 540], [555, 541], [567, 541], [569, 539], [569, 510], [567, 507], [565, 507], [563, 511], [560, 511], [558, 507]]}, "center": {"70-114": [562, 522], "23-69": [563, 524], "6-20": [484, 425], "115-165, T:0-1": [562, 525]}},
-{"id": "twtusp", "name": "Destination Moon", "description": "This rocket is an iconic image in Belgian culture that appeared in Destination Moon and Explorers on the Moon, two volumes of the comic series The Adventures of Tintin by Belgian author Hergé. The rocket was used by protagonist Tintin along with Snowy, Captain Haddock, Professor Calculus, Thomson and Thompson, and Wolff to mount an expedition on the Moon.", "links": {"website": ["https://en.wikipedia.org/wiki/Destination_Moon_(comics)"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"95-166, T:0-1": [[1307, 775], [1305, 777], [1305, 779], [1304, 780], [1304, 793], [1305, 794], [1305, 795], [1300, 800], [1300, 801], [1299, 802], [1299, 804], [1298, 805], [1298, 810], [1299, 811], [1301, 811], [1304, 808], [1305, 808], [1305, 811], [1304, 812], [1304, 814], [1303, 815], [1303, 822], [1302, 823], [1302, 828], [1301, 829], [1301, 830], [1313, 830], [1313, 827], [1314, 826], [1312, 824], [1312, 820], [1314, 818], [1314, 817], [1315, 816], [1315, 811], [1317, 809], [1317, 805], [1316, 804], [1316, 802], [1315, 801], [1315, 800], [1310, 795], [1310, 794], [1311, 793], [1311, 780], [1310, 779], [1310, 777], [1308, 775]]}, "center": {"95-166, T:0-1": [1308, 802]}},
+{"id": "twtusp", "name": "Destination Moon", "description": "This rocket is an iconic image in Belgian culture that appeared in Destination Moon and Explorers on the Moon, two volumes of the comic series The Adventures of Tintin by Belgian author Hergé. The rocket was used by protagonist Tintin along with Snowy (Milou), Captain Haddock, Professor Calculus (Tournesol), Thomson (Dupond) and Thompson (Dupont), and Wolff to mount an expedition on the Moon.", "links": {"website": ["https://en.wikipedia.org/wiki/Destination_Moon_(comics)"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"95-166, T:0-1": [[1307, 775], [1305, 777], [1305, 779], [1304, 780], [1304, 793], [1305, 794], [1305, 795], [1300, 800], [1300, 801], [1299, 802], [1299, 804], [1298, 805], [1298, 810], [1299, 811], [1301, 811], [1304, 808], [1305, 808], [1305, 811], [1304, 812], [1304, 814], [1303, 815], [1303, 822], [1302, 823], [1302, 828], [1301, 829], [1301, 830], [1313, 830], [1313, 827], [1314, 826], [1312, 824], [1312, 820], [1314, 818], [1314, 817], [1315, 816], [1315, 811], [1317, 809], [1317, 805], [1316, 804], [1316, 802], [1315, 801], [1315, 800], [1310, 795], [1310, 794], [1311, 793], [1311, 780], [1310, 779], [1310, 777], [1308, 775]]}, "center": {"95-166, T:0-1": [1308, 802]}},
{"id": "twtule", "name": "Borussia Dortmund", "description": "Borussia Dortmund (BVB 09) is a German association football club. This art includes their badge, the DFB-Pokal trophy they won last year, and their captain Marco Reus. It survived thanks to our friends Liverpool FC and CraftGalaxy. Echte Liebe.", "links": {"website": ["https://www.bvb.de/", "https://en.wikipedia.org/wiki/Borussia_Dortmund"], "subreddit": ["borussiadortmund"]}, "path": {"150-156": [[1576, 1553], [1576, 1579], [1582, 1579], [1582, 1572], [1594, 1572], [1594, 1553]], "140-146": [[1576, 1553], [1576, 1577], [1594, 1577], [1594, 1553]], "57-70, 95-105": [[1072, 176], [1072, 194], [1101, 194], [1101, 176]], "71-94": [[1065, 176], [1065, 194], [1101, 194], [1101, 176]], "157-166, T:0-1": [[1576, 1553], [1594, 1553], [1594, 1572], [1582, 1572], [1581, 1572], [1581, 1578], [1570, 1578], [1570, 1572], [1565, 1572], [1565, 1571], [1567, 1571], [1567, 1560], [1576, 1560]]}, "center": {"150-156": [1585, 1562], "140-146": [1585, 1565], "57-70, 95-105": [1087, 185], "71-94": [1083, 185], "157-166, T:0-1": [1585, 1563]}},
{"id": "twtued", "name": "JavaScript", "description": "JavaScript is a programming language used extensively on web pages for client-side scripting. It is also used in servers with runtimes like Node.js.", "links": {"website": ["https://en.wikipedia.org/wiki/JavaScript"], "subreddit": ["javascript"]}, "path": {"69-166, T:0-1": [[302, 709], [310, 709], [310, 717], [302, 717]]}, "center": {"69-166, T:0-1": [306, 713]}},
{"id": "twtub0", "name": "Xisumavoid", "description": "Xisumavoid is the current admin of Hermitcraft and one of the few remaining original members. He doesn't restart the episode numbers of his Hermitcraft series each season and has over 1000 episodes.", "links": {"website": ["https://www.youtube.com/c/XisumavoidMC", "https://hermitcraft.fandom.com/wiki/Xisumavoid"], "subreddit": ["HermitCraft"]}, "path": {"19-31": [[887, 615], [887, 623], [896, 623], [896, 615]], "32-165, T:0-1": [[887, 599], [896, 599], [896, 607], [887, 607]]}, "center": {"19-31": [892, 619], "32-165, T:0-1": [892, 603]}},
@@ -1393,13 +1387,13 @@
{"id": "twtt0w", "name": "Kappa and Zuko", "description": "Two cats belonging to a member of the Middle Eastern Alliance, named Kappa and Zuko.", "links": {}, "path": {"56-166, T:0-1": [[1786, 953], [1786, 957], [1796, 957], [1796, 952], [1786, 952]]}, "center": {"56-166, T:0-1": [1791, 955]}},
{"id": "twtswq", "name": "Boowomp", "description": "\"Boowomp\" is onomatopoeia for a sound effect that plays in the cartoon SpongeBob SquarePants when a character is sad. This image depicts the character SpongeBob's sad reaction from the episode \"Christmas Who?\" after Santa Claus fails to deliver presents. The sound and this image became a meme known as Boowomp or SpunchBob.\n\nThis art was lead by maximilian of the Origins of Iconic Images (@image_origins) Twitter account. It lasted through streamer raids from Jack Manifold and xQc, fended off against Pakistanis and the Purple Void, and co-existed along the Among Us crewmates.", "links": {"website": ["https://knowyourmeme.com/memes/boowomp", "https://twitter.com/image_origins/status/1510322432732962816"], "subreddit": ["spongebob", "Spunchbob"]}, "path": {"129-147": [[1402, 326], [1402, 381], [1417, 381], [1417, 420], [1252, 420], [1251, 373], [1247, 373], [1246, 426], [1423, 426], [1423, 382], [1438, 382], [1438, 366], [1437, 365], [1437, 326]], "121-128": [[1423, 381], [1437, 381], [1437, 334], [1438, 333], [1438, 326], [1402, 326], [1402, 381], [1417, 381], [1417, 420], [1246, 420], [1246, 439], [1226, 439], [1207, 443], [1207, 445], [1252, 445], [1252, 426], [1423, 426]], "94-120": [[1423, 381], [1437, 381], [1437, 334], [1438, 333], [1438, 326], [1402, 326], [1402, 381], [1417, 381], [1417, 467], [1368, 467], [1368, 480], [1345, 480], [1345, 495], [1347, 495], [1347, 499], [1356, 507], [1363, 505], [1414, 505], [1414, 540], [1425, 540], [1425, 573], [1422, 573], [1422, 598], [1424, 598], [1424, 575], [1427, 575], [1427, 538], [1417, 538], [1417, 503], [1355, 503], [1350, 498], [1350, 485], [1374, 485], [1374, 473], [1423, 473]], "71-93": [[1423, 381], [1437, 381], [1437, 334], [1438, 333], [1438, 326], [1402, 326], [1402, 381], [1417, 381], [1417, 509], [1418, 509], [1418, 569], [1422, 569], [1422, 505], [1423, 505]], "148-166, T:0-1": [[1402, 326], [1402, 346], [1403, 346], [1403, 369], [1405, 369], [1405, 378], [1417, 378], [1417, 412], [1416, 412], [1416, 426], [1424, 426], [1424, 415], [1423, 415], [1423, 381], [1431, 381], [1431, 378], [1429, 378], [1429, 372], [1431, 370], [1431, 369], [1429, 367], [1437, 367], [1437, 335], [1440, 335], [1440, 326]]}, "center": {"129-147": [1419, 362], "121-128": [1420, 344], "94-120": [1420, 344], "71-93": [1420, 344], "148-166, T:0-1": [1420, 345]}},
{"id": "twtsne", "name": "Arstotzka", "description": "Arstotzka is a country in the game Papers, Please where the player character works at the Grestin border checkpoint. This is the country's emblem, a red screaming eagle with its wings extended. GLORY TO ARSTOTZKA.", "links": {"website": ["https://papersplease.fandom.com/wiki/Arstotzka"], "subreddit": ["PapersPlease"]}, "path": {"112-155": [[1295, 76], [1295, 83], [1307, 83], [1307, 76]], "156-166, T:0-1": [[1295, 75], [1295, 82], [1307, 82], [1307, 75]]}, "center": {"112-155": [1301, 80], "156-166, T:0-1": [1301, 79]}},
-{"id": "twtsl3", "name": "Bisexual pride heart", "description": "A bisexual pride heart that was added under Phoenix Wright and Miles Edgeworth. 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": ["plAceAttorney", "AceAttorney"]}, "path": {"80-135": [[1314, 97], [1312, 99], [1316, 103], [1320, 99], [1318, 97]], "136-165, T:0-1": [[1314, 98], [1312, 100], [1312, 101], [1316, 105], [1320, 101], [1320, 100], [1318, 98]]}, "center": {"80-135": [1316, 99], "136-165, T:0-1": [1316, 101]}},
+{"id": "twtsl3", "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", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["plAceAttorney", "AceAttorney"]}, "path": {"80-135": [[1314, 97], [1312, 99], [1316, 103], [1320, 99], [1318, 97]], "136-165, T:0-1": [[1314, 98], [1312, 100], [1312, 101], [1316, 105], [1320, 101], [1320, 100], [1318, 98]]}, "center": {"80-135": [1316, 99], "136-165, T:0-1": [1316, 101]}},
{"id": "twtshq", "name": "Aurobia flower", "description": "A flower built by the small Discord community of Aurobia.", "links": {"subreddit": ["aurobia"], "discord": ["bKKrUQmbBh"]}, "path": {"158-160": [[1218, 567], [1215, 570], [1218, 573], [1221, 570]]}, "center": {"158-160": [1218, 570]}},
{"id": "twtsgi", "name": "Arc de Triomphe", "description": "The Arc de Triomphe is a famous arch in Paris, France.\n\nThis art was a collaboration between r/placefrance and r/fuckcars.", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"58-166, T:0-1": [[1118, 707], [1116, 709], [1117, 710], [1117, 722], [1120, 724], [1121, 724], [1135, 716], [1135, 705], [1136, 704], [1130, 701]]}, "center": {"58-166, T:0-1": [1127, 711]}},
{"id": "twts9o", "name": "Strip Poker Night at the Inventory", "description": "A browser-based strip poker game against various fictional characters from a wide range of franchises.", "links": {"website": ["https://spnati.net/"], "subreddit": ["spnati"]}, "path": {"61-102": [[1829, 283], [1829, 301], [1853, 301], [1853, 283]], "129-166, T:0-1": [[974, 1743], [974, 1761], [998, 1761], [998, 1743]]}, "center": {"61-102": [1841, 292], "129-166, T:0-1": [986, 1752]}},
{"id": "twts6g", "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": {"17-166, T:0-1": [[889, 281], [871, 281], [871, 275], [870, 274], [869, 273], [868, 272], [867, 271], [866, 270], [867, 269], [867, 268], [868, 267], [869, 266], [870, 265], [871, 264], [873, 264], [874, 263], [876, 263], [877, 262], [884, 262], [885, 263], [887, 263], [888, 264], [889, 264], [890, 265], [891, 266], [892, 267], [893, 268], [893, 269], [892, 270], [892, 273], [891, 274], [890, 275], [890, 281]]}, "center": {"17-166, T:0-1": [880, 272]}},
{"id": "twts4t", "name": "Belarus", "description": "Piece of the map of Belarus, a country that is located to the southeast of Lithuania and Latvia. The white-red-white flag 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/Belarusian_opposition", "https://en.wikipedia.org/wiki/White-red-white_flag"], "subreddit": ["belarus"]}, "path": {"111-125": [[1946, 155], [1943, 159], [1943, 162], [1941, 162], [1939, 164], [1939, 171], [1938, 171], [1931, 177], [1931, 179], [1928, 179], [1926, 181], [1919, 181], [1919, 188], [1921, 191], [1921, 206], [1924, 209], [1933, 207], [1939, 209], [1939, 173], [1947, 173], [1947, 159], [1952, 159], [1952, 155]], "94-110": [[1953, 153], [1946, 157], [1946, 160], [1948, 160], [1948, 165], [1946, 165], [1939, 172], [1942, 175], [1942, 178], [1940, 178], [1940, 177], [1937, 177], [1927, 183], [1918, 184], [1920, 193], [1920, 197], [1916, 201], [1918, 205], [1918, 212], [1920, 215], [1923, 215], [1929, 212], [1931, 212], [1936, 216], [1941, 216], [1941, 182], [1947, 175], [1948, 172], [1948, 160], [1954, 160], [1954, 153]], "150-165, T:0-1": [[1954, 151], [1950, 155], [1946, 155], [1944, 157], [1944, 159], [1943, 160], [1943, 161], [1944, 162], [1944, 164], [1942, 164], [1937, 168], [1937, 171], [1939, 171], [1939, 174], [1949, 174], [1949, 161], [1955, 161], [1955, 151]]}, "center": {"111-125": [1930, 189], "94-110": [1930, 201], "150-165, T:0-1": [1944, 169]}},
-{"id": "twtrjr", "name": "Tom und das Erdbeermarmeladebrot mit Honig", "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. It centers around Tom making his favorite dish, The slice of bread with strawberry jam and honey.", "links": {"website": ["https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1339, 855], [1339, 863], [1340, 863], [1340, 864], [1341, 864], [1341, 865], [1343, 865], [1344, 865], [1344, 866], [1353, 866], [1353, 865], [1354, 865], [1354, 864], [1358, 864], [1358, 863], [1359, 863], [1359, 859], [1358, 859], [1358, 854], [1357, 854], [1357, 853], [1356, 853], [1356, 852], [1354, 852], [1354, 851], [1353, 851], [1353, 850], [1352, 850], [1352, 849], [1351, 849], [1350, 849], [1350, 848], [1348, 848], [1348, 849], [1346, 849], [1346, 850], [1345, 850], [1345, 851], [1344, 851], [1344, 852], [1343, 852], [1343, 853], [1342, 852], [1343, 853], [1341, 853], [1341, 854], [1341, 855], [1340, 854], [1340, 855]]}, "center": {"56-166, T:0-1": [1349, 858]}},
+{"id": "twtrjr", "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: Tom und das Erdbeermarmeladebrot mit Honig) is a German animated television series for children ages 3–8 years, created by Andreas Hykade. Each episode centers around the titular character Tom attempting to acquire his favorite dish, a slice of bread with strawberry jam and honey. He has to overcome several obstacles on his way.", "links": {"website": ["https://www.kika.de/tom-und-das-erdbeermarmeladebrot-mit-honig/index.html", "https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"94-166, T:0-1": [[1348, 847], [1342, 852], [1341, 852], [1338, 855], [1338, 863], [1341, 867], [1344, 868], [1352, 868], [1355, 866], [1358, 865], [1362, 865], [1362, 864], [1361, 863], [1361, 859], [1359, 857], [1359, 854], [1350, 847]]}, "center": {"94-166, T:0-1": [1349, 858]}},
{"id": "twtrjn", "name": "Volt Europa", "description": "Volt is a pro-European and European federalist political movement that also serves as the pan-European structure for subsidiary parties in several European Union member states.", "links": {"website": ["https://www.volteuropa.org/", "https://en.wikipedia.org/wiki/Volt_Europa"], "subreddit": ["VoltEuropa"]}, "path": {"121-138": [[1894, 54], [1894, 73], [1946, 73], [1946, 54]], "12-30": [[556, 890], [556, 900], [566, 900], [566, 890]], "155-165, T:0-1": [[1396, 1338], [1396, 1353], [1436, 1353], [1436, 1338]]}, "center": {"121-138": [1920, 64], "12-30": [561, 895], "155-165, T:0-1": [1416, 1346]}},
{"id": "twtriv", "name": "Bisexual flag", "description": "A small bisexual pride flag was added under Maya Fewy from Ace Attorney, since many Ace Attorney fans think Maya is bisexual. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"], "subreddit": ["AceAttorney", "plAceAttorney", "bisexual"]}, "path": {"91-166, T:0-1": [[1412, 109], [1412, 113], [1417, 113], [1417, 109]]}, "center": {"91-166, T:0-1": [1415, 111]}},
{"id": "twtri9", "name": "USS Ente", "description": "A space duck (Ente) from in the web series Star Star Space, a science fiction series featuring a crew taking on silly adventures. The ship is similar in size to the USS Enterprise from Star Trek. Created by Coldmirror, a German radio and TV moderator, parody producer, and dubber on YouTube.", "links": {"website": ["https://www.youtube.com/user/coldmirror"], "subreddit": ["Coldmirror", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-166, T:0-1": [[359, 1142], [376, 1142], [380, 1138], [380, 1133], [381, 1129], [379, 1124], [373, 1121], [366, 1122], [365, 1124], [365, 1131], [359, 1131], [358, 1130], [354, 1130], [354, 1132], [355, 1133]]}, "center": {"109-166, T:0-1": [369, 1133]}},
@@ -1423,7 +1417,7 @@
{"id": "twtp6s", "name": "Haas F1", "description": "Haas F1 is a Formula 1 team.", "links": {"website": ["https://www.haasf1team.com/", "https://en.wikipedia.org/wiki/Haas_F1_Team"], "subreddit": ["formula1"]}, "path": {"3-9": [[506, 762], [506, 795], [569, 795], [569, 762]], "10-166, T:0-1": [[466, 795], [486, 795], [486, 825], [466, 825]]}, "center": {"3-9": [538, 779], "10-166, T:0-1": [476, 810]}},
{"id": "twtp45", "name": "Final Fantasy XIV", "description": "Final Fantasy XIV is a critically acclaimed massively multiplayer online role-playing game (MMORPG) developed and published by Square Enix. The game has an expanded free trial where players can play through the entirety of A Realm Reborn and the award-winning Heavensward expansion up to level 60 for free with no restrictions on playtime.\n\nThis art depicts the game's meteor logo and some iconic creatures. The section at the bottom of the mural represents a \"Full Party\" of heroes ready for battle. The icons represent two Tanks, two Healers, and four DPS. Rumor has it that the purple DPS is a dead Dragoon. The three yellow bars indicate that the party is ready to unleash a Limit Break 3 in defense of the mural.", "links": {"website": ["https://na.finalfantasyxiv.com/lodestone/", "https://en.wikipedia.org/wiki/Final_Fantasy_XIV"], "subreddit": ["ffxiv", "FinalFantasy"]}, "path": {"66-87": [[1263, 487], [1263, 511], [1260, 511], [1260, 547], [1266, 547], [1269, 550], [1279, 550], [1290, 538], [1290, 534], [1297, 534], [1297, 523], [1290, 523], [1290, 511], [1287, 511], [1287, 487]], "88-165, T:0-1": [[1259, 487], [1259, 507], [1250, 507], [1250, 565], [1298, 566], [1295, 563], [1275, 563], [1275, 557], [1288, 544], [1291, 544], [1291, 534], [1297, 534], [1297, 519], [1290, 519], [1290, 511], [1287, 511], [1287, 487]]}, "center": {"66-87": [1275, 528], "88-165, T:0-1": [1275, 538]}},
{"id": "twtp3f", "name": "Marquise de Cat", "description": "Marquise de Cat is a faction in the board game Root. This art depicts a meeple of Marquise de Cat.", "links": {"website": ["https://root.seiyria.com/#6.-marquise-de-cat"], "subreddit": ["rootgame"]}, "path": {"59-155": [[0, 596], [0, 621], [10, 621], [10, 616], [16, 616], [18, 613], [18, 604], [16, 601], [14, 599], [12, 599], [8, 603], [4, 599], [2, 599], [2, 596]], "16-58": [[3, 598], [0, 602], [0, 621], [10, 621], [10, 616], [16, 616], [18, 613], [18, 604], [17, 602], [13, 598], [9, 602], [7, 602]], "1-15": [[18, 614], [16, 616], [16, 621], [13, 621], [11, 624], [11, 639], [20, 639], [20, 641], [28, 641], [28, 643], [31, 643], [33, 640], [33, 638], [35, 638], [35, 625], [33, 622], [33, 614], [30, 614], [26, 618], [22, 618]], "156-166, T:0-1": [[0, 595], [0, 621], [10, 621], [10, 616], [16, 616], [18, 613], [18, 604], [14, 599], [12, 599], [8, 603], [4, 599], [2, 599], [2, 595]]}, "center": {"59-155": [7, 610], "16-58": [10, 609], "1-15": [23, 629], "156-166, T:0-1": [7, 610]}},
-{"id": "twtoqz", "name": "NoPixel 3.0", "description": "NoPixel is a Grand Theft Auto role-play server, and is currently the most popular GTA role-play server in the world.", "links": {"website": ["https://www.nopixel.net"], "subreddit": ["NoPixel"]}, "path": {"56-165, T:0-1": [[1021, 898], [1021, 887], [1072, 887], [1072, 898], [1042, 898], [1035, 898]]}, "center": {"56-165, T:0-1": [1047, 893]}},
+{"id": "twtoqz", "name": "NoPixel 3.0", "description": "NoPixel is a role-play server for the game Grand Theft Auto V, and is currently the most popular GTA role-play server in the world. This banner commemorates the recent launch of the server's 3.0 version.", "links": {"website": ["https://www.nopixel.net"], "subreddit": ["NoPixel"]}, "path": {"107-165, T:0-1": [[1019, 886], [1019, 898], [1074, 898], [1074, 886]]}, "center": {"107-165, T:0-1": [1047, 892]}},
{"id": "twtoni", "name": "Team Throwback", "description": "Team Throwback is a hangout server that started as a server for the game Geometry Dash. It is also home to a small section for the game osu!.", "links": {"discord": ["t85yJZ4jrG"]}, "path": {"26-50": [[748, 668], [745, 671], [745, 674], [748, 677], [751, 677], [754, 674], [754, 671], [751, 668]], "20-22": [[750, 673], [747, 676], [747, 679], [750, 682], [753, 682], [756, 679], [756, 676], [753, 673]], "51-164, T:0-1": [[749, 668], [746, 671], [746, 675], [749, 678], [752, 678], [755, 675], [755, 671], [752, 668]]}, "center": {"26-50": [750, 673], "20-22": [752, 678], "51-164, T:0-1": [751, 673]}},
{"id": "twtoji", "name": "Nagito Komaeda", "description": "Nagito Komaeda is a character from the game Danganronpa 2: Goodbye Despair, made by Spike Chunsoft. He is a lucky high school student who's survived murder, meteors, and the apocalypse.\n\nNagito is holding hands with a bright green Among Us crewmate. They have survived since the beginning of r/place, comforting each other and fending off together any colony of pixels that came their way.", "links": {"website": ["https://danganronpa.fandom.com/wiki/Nagito_Komaeda"], "subreddit": ["danganronpa"]}, "path": {"11-166, T:0-1": [[754, 807], [759, 802], [763, 799], [768, 802], [770, 802], [771, 826], [768, 830], [759, 830], [758, 829], [758, 819], [755, 819], [752, 816], [752, 814], [754, 814]]}, "center": {"11-166, T:0-1": [762, 811]}},
{"id": "twtoge", "name": "HPI Logo", "description": "Logo of the Hasso Plattner Institute, a faculty of the University of Potsdam.", "links": {"website": ["https://hpi.de"]}, "path": {"109-165, T:0-1": [[1224, 1191], [1240, 1191], [1240, 1197], [1233, 1197], [1233, 1196], [1224, 1196]]}, "center": {"109-165, T:0-1": [1232, 1194]}},
@@ -1484,19 +1478,19 @@
{"id": "twth2c", "name": "Flag of Senegal", "description": "", "links": {"subreddit": ["senegal"]}, "path": {"109-166, T:0-1": [[190, 1246], [190, 1264], [226, 1265], [225, 1246], [190, 1246], [191, 1247]]}, "center": {"109-166, T:0-1": [208, 1255]}},
{"id": "twtgzo", "name": "Mira Calix", "description": "Mira Calix was a South African musician who created electronic and classical music. She recently died on March 28, 2022 of undisclosed causes.", "links": {"website": ["https://en.wikipedia.org/wiki/Mira_Calix"]}, "path": {"95-166, T:0-1": [[1287, 487], [1287, 496], [1303, 496], [1303, 490], [1304, 489], [1302, 487]]}, "center": {"95-166, T:0-1": [1296, 492]}},
{"id": "twtgtg", "name": "Yuru Camp△ (anime)", "description": "Yuru Camp (aka Laid-Back Camp/ゆるキャン△) is an anime about teenage girls that take camping trips in the Japanese countryside. They enjoy delicious meals and beautiful sceneries together.", "links": {"website": ["https://anilist.co/anime/98444/Yuru-Camp/"], "subreddit": ["yurucamp"]}, "path": {"109-167, T:0-1": [[1328, 1971], [1334, 1958], [1361, 1958], [1365, 1963], [1375, 1963], [1375, 1971]]}, "center": {"109-167, T:0-1": [1351, 1965]}},
-{"id": "twtgsq", "name": "Hoshimachi Suisei", "description": "A pixel art of Hoshimachi Suisei, a member of Hololive (Gen. 0).", "links": {"website": ["https://hololive.hololivepro.com/en/talents/hoshimachi-suisei/"], "subreddit": ["HoshimachiSuisei", "Hololive"]}, "path": {"109-165, T:0-1": [[1451, 1125], [1451, 1118], [1452, 1118], [1452, 1110], [1454, 1107], [1452, 1104], [1455, 1104], [1458, 1104], [1460, 1103], [1463, 1103], [1466, 1103], [1468, 1103], [1468, 1096], [1466, 1094], [1465, 1091], [1472, 1083], [1474, 1083], [1477, 1078], [1480, 1077], [1488, 1077], [1488, 1075], [1494, 1075], [1499, 1082], [1496, 1086], [1496, 1092], [1500, 1097], [1500, 1106], [1500, 1125]]}, "center": {"109-165, T:0-1": [1479, 1104]}},
+{"id": "twtgsq", "name": "Hoshimachi Suisei", "description": "A pixel art of Hoshimachi Suisei, a member of Hololive (Gen. 0).", "links": {"website": ["https://hololive.hololivepro.com/en/talents/hoshimachi-suisei/"], "subreddit": ["HoshimachiSuisei", "Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1451, 1125], [1451, 1118], [1452, 1118], [1452, 1110], [1454, 1107], [1452, 1104], [1455, 1104], [1458, 1104], [1460, 1103], [1463, 1103], [1466, 1103], [1468, 1103], [1468, 1096], [1466, 1094], [1465, 1091], [1472, 1083], [1474, 1083], [1477, 1078], [1480, 1077], [1488, 1077], [1488, 1075], [1494, 1075], [1499, 1082], [1496, 1086], [1496, 1092], [1500, 1097], [1500, 1106], [1500, 1125]]}, "center": {"109-165, T:0-1": [1479, 1104]}},
{"id": "twtgq8", "name": "Game Theory", "description": "A logo of the Youtube Channel Game Theory, including the colors of related channels Film Theory, Food Theory (and Theory Theory, an inside joke). The channels are created by Matthew Patrick, a.k.a. MatPat", "links": {"website": ["https://www.youtube.com/channel/UCo_IB5145EVNcf8hw1Kku7w"], "subreddit": ["GameTheorists"]}, "path": {"109-166, T:0-1": [[874, 1799], [891, 1799], [891, 1816], [874, 1816]]}, "center": {"109-166, T:0-1": [883, 1808]}},
{"id": "twtgnj", "name": "Astronaut", "description": "An astronaut on the Moon drinking Heineken, a beer produced in the Netherlands. This piece was a collaboration between r/Superstonk and r/PlaceNL.", "links": {"website": ["https://en.wikipedia.org/wiki/Astronaut", "https://en.wikipedia.org/wiki/Heineken"], "subreddit": ["Superstonk", "PlaceNL", "thenetherlands"]}, "path": {"147-165, T:0-1": [[1991, 8], [1989, 10], [1989, 14], [1988, 14], [1987, 13], [1987, 10], [1985, 10], [1985, 13], [1984, 13], [1984, 17], [1987, 17], [1989, 19], [1989, 24], [1987, 24], [1987, 27], [1997, 27], [1997, 23], [2000, 23], [2000, 14], [1999, 13], [1999, 10], [1997, 8]]}, "center": {"147-165, T:0-1": [1994, 17]}},
{"id": "twtgek", "name": "Fish Cult Crab Tank", "description": "A group of people trying to build little fish on r/place", "links": {"subreddit": ["PlaceFishCult"]}, "path": {"56-166, T:0-1": [[1419, 949], [1419, 951], [1420, 951], [1420, 952], [1421, 952], [1421, 953], [1422, 953], [1422, 955], [1421, 955], [1421, 958], [1422, 958], [1422, 959], [1451, 959], [1451, 949]]}, "center": {"56-166, T:0-1": [1436, 954]}},
{"id": "twtgat", "name": "Psy Fly", "description": "A tier 4 passive item that was added in The Binding of Isaac from the Repentance DLC.", "links": {"website": ["https://bindingofisaacrebirth.fandom.com/wiki/Psy_Fly"]}, "path": {"109-166, T:0-1": [[763, 1958], [762, 1959], [762, 1962], [763, 1963], [765, 1963], [765, 1964], [766, 1965], [766, 1966], [767, 1967], [768, 1967], [769, 1968], [772, 1968], [773, 1967], [774, 1967], [775, 1966], [775, 1965], [776, 1964], [777, 1964], [778, 1963], [779, 1963], [780, 1962], [780, 1959], [779, 1958], [778, 1957], [775, 1957], [774, 1958], [773, 1957], [773, 1956], [772, 1955], [771, 1954], [771, 1953], [771, 1952], [772, 1951], [772, 1950], [771, 1949], [772, 1950], [772, 1951], [771, 1952], [770, 1953], [770, 1954], [769, 1954], [769, 1955], [770, 1955], [770, 1956], [769, 1957], [768, 1958], [767, 1958], [766, 1958], [766, 1957], [765, 1957], [764, 1957]]}, "center": {"109-166, T:0-1": [771, 1961]}},
{"id": "twtg7l", "name": "Alex Eggleston", "description": "Alex Eggleston from the video game YIIK: A Postmodern RPG, built by viewers at twitch.tv/Altrive. Alex spends much of the game asserting his dominance to not only his friends but the player themselves.\n\nYIIK released on January 17, 2019 for the Nintendo Switch, PlayStation 4, PlayStation Vita, and Steam. Set in the 1990s, The story follows Alex Eggleston and seven strangers who came to know each other on the web and became the closest of friends. They lived their lives carefree until the fateful day of April 4th, 1999, when a woman named Sammy Pak suddenly went missing. The night following her disappearance, a video of her last known moments was uploaded online. All of the friends excitedly watched as she was pulled from an elevator by something otherworldly, and decide to investigate the truth for themselves. As he gathers companions seeking to resolve the truth behind her disappearance, Alex's search for the woman spirals into an epic quest with stakes higher than he could have ever imagined.", "links": {"website": ["https://www.twitch.tv/altrive"], "subreddit": ["Altrive"]}, "path": {"127-129": [[41, 1096], [61, 1096], [61, 1128], [41, 1128]], "130-166, T:0-1": [[41, 1096], [61, 1096], [61, 1121], [41, 1121]]}, "center": {"127-129": [51, 1112], "130-166, T:0-1": [51, 1109]}},
-{"id": "twtg72", "name": "DankPods", "description": "Australian YouTuber covering iPods, headphones & other things related to audio.", "links": {"website": ["https://www.youtube.com/c/DankPods"], "subreddit": ["dankpods"]}, "path": {"56-166, T:0-1": [[1406, 840], [1406, 839], [1404, 838], [1403, 833], [1408, 831], [1448, 831], [1450, 832], [1450, 834], [1445, 840]]}, "center": {"56-166, T:0-1": [1426, 835]}},
+{"id": "twtg72", "name": "Frank", "description": "Frank is the pet snake of DankPods, an Australian YouTuber covering iPods, headphones, and other things related to audio.", "links": {"website": ["https://www.youtube.com/c/DankPods", "https://youtube.fandom.com/wiki/DankPods"], "subreddit": ["DankPods"]}, "path": {"60-141": [[1411, 824], [1411, 830], [1456, 830], [1461, 827], [1461, 824]], "142-166, T:0-1": [[1407, 830], [1404, 833], [1404, 838], [1407, 841], [1436, 841], [1442, 838], [1442, 836], [1448, 836], [1461, 829], [1461, 824], [1459, 824], [1459, 829], [1457, 829], [1455, 831], [1448, 831], [1447, 830]]}, "center": {"60-141": [1456, 827], "142-166, T:0-1": [1445, 833]}},
{"id": "twtg2q", "name": "Genos", "description": "Genos, an S-rank hero and cyborg as well as a student of Saitama (right). From the anime One Punch Man.", "links": {"subreddit": ["OnePunchMan_place"]}, "path": {"109-166, T:0-1": [[1923, 1562], [1938, 1556], [1940, 1556], [1945, 1559], [1951, 1559], [1954, 1556], [1959, 1562], [1959, 1567], [1963, 1567], [1964, 1568], [1964, 1570], [1963, 1574], [1922, 1574], [1922, 1562]]}, "center": {"109-166, T:0-1": [1942, 1566]}},
{"id": "twtftt", "name": "Flag of the Sámi people", "description": "The Sámi people are a Finno-Ugric-speaking people inhabiting the region of Sápmi (formerly known as Lapland), which today encompasses large northern parts of Norway, Sweden, Finland, and of the Murmansk Oblast, Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/S%C3%A1mi", "https://en.wikipedia.org/wiki/S%C3%A1mi_flag"], "subreddit": ["place_nordicunion", "SaamiPeople"]}, "path": {"6-166, T:0-1": [[473, 35], [473, 92], [527, 92], [527, 35]]}, "center": {"6-166, T:0-1": [500, 64]}},
{"id": "twtfpm", "name": "Aar's Blue Cat", "description": "The blue cat character of a content creator called Aar. Organised and defended by his Discord server.", "links": {"website": ["https://aarmastah.xyz"], "subreddit": ["aarmastah"]}, "path": {"141-162, T:0-1": [[57, 992], [64, 992], [64, 999], [57, 999]]}, "center": {"141-162, T:0-1": [61, 996]}},
{"id": "twtfmn", "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.\n\nA group of people from r/tinytardis gained permission from the My Little Pony faction at r/mylittlepony to create a small version of the TARDIS (Time And Relative Dimension In Space), a time machine from the British sci-fi show Doctor Who, next to one of their spots. This is a continuity from the original 2017 r/place where the MLP community had helped to create and protect a small TARDIS next to their sleeping Rainbow Dash artwork as well.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS"], "subreddit": ["tinytardis", "placeTARDIS", "doctorwho"]}, "path": {"81-88, 91-164, T:0-1": [[1611, 248], [1609, 250], [1609, 260], [1615, 260], [1615, 250], [1613, 248]]}, "center": {"81-88, 91-164, T:0-1": [1612, 254]}},
{"id": "twtfa1", "name": "Tribute to Zafinho", "description": "A tribute to the late French twitter influencer @Zafinho. Contribution made by his friend Pierre Lapin and its viewers.", "links": {"website": ["https://twitter.com/Zafinho"]}, "path": {"109-165, T:0-1": [[916, 1495], [945, 1495], [946, 1495], [947, 1495], [947, 1506], [916, 1506], [916, 1505], [916, 1503]]}, "center": {"109-165, T:0-1": [932, 1501]}},
-{"id": "twtf87", "name": "Kotori", "description": "This small bird is a mascot for Hololive English VTuber Takanashi Kiara.", "links": {"website": ["https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1393, 948], [1393, 936], [1403, 936], [1403, 948]]}, "center": {"56-166, T:0-1": [1398, 942]}},
+{"id": "twtf87", "name": "Kotori", "description": "This small bird is a mascot for Hololive English VTuber Takanashi Kiara.", "links": {"website": ["https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1393, 948], [1393, 936], [1403, 936], [1403, 948]]}, "center": {"56-166, T:0-1": [1398, 942]}},
{"id": "twtf05", "name": "Estradiol", "description": "Estradiol is a popular method of MTF (male-to-female) hormone therapy. Dissolve under tongue for best results.", "links": {"website": ["https://en.wikipedia.org/wiki/Estradiol"], "subreddit": ["transplace"]}, "path": {"80-165, T:0-1": [[521, 442], [518, 444], [516, 446], [516, 447], [518, 449], [521, 451], [526, 451], [529, 449], [531, 447], [531, 446], [529, 444], [526, 442]]}, "center": {"80-165, T:0-1": [524, 447]}},
{"id": "twtez1", "name": "Poké Balls", "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 art includes a row of different Poké Balls along with a (Shiny) Voltorb, a Pokémon that disguises itself as a Poké Ball.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball"], "subreddit": ["pokemon"]}, "path": {"2-55": [[909, 702], [906, 703], [905, 706], [905, 710], [906, 713], [909, 714], [997, 714], [1000, 713], [1001, 710], [1001, 706], [997, 702]], "56-165, T:0-1": [[909, 702], [906, 703], [905, 706], [905, 710], [906, 713], [909, 714], [1118, 714], [1118, 708], [1121, 707], [1121, 706], [1120, 703], [1117, 702]]}, "center": {"2-55": [953, 708], "56-165, T:0-1": [1013, 708]}},
{"id": "twteuv", "name": "Snakeroom", "description": "The logo and website of the Snakeroom group, a group dedicated to solving and discussing Reddit's yearly April Fools events and official Reddit-run ARGs — both before and while they happen.", "links": {"website": ["https://snakeroom.org"], "subreddit": ["snakeroomalliance"]}, "path": {"109-166, T:0-1": [[1764, 1208], [1764, 1191], [1772, 1191], [1772, 1189], [1771, 1188], [1771, 1184], [1773, 1182], [1774, 1182], [1775, 1181], [1775, 1179], [1776, 1178], [1777, 1177], [1778, 1176], [1779, 1175], [1796, 1175], [1797, 1176], [1798, 1176], [1803, 1181], [1803, 1182], [1804, 1183], [1804, 1190], [1803, 1191], [1803, 1192], [1800, 1195], [1799, 1197], [1798, 1198], [1797, 1199], [1796, 1201], [1796, 1202], [1795, 1203], [1795, 1208]]}, "center": {"109-166, T:0-1": [1784, 1192]}},
@@ -1504,17 +1498,17 @@
{"id": "twteqz", "name": "Jobless", "description": "Jobless is a group of streamers including JL Tomy, JL Amaru, and JL Nateos.", "links": {"website": ["https://www.twitch.tv/jltomy", "https://www.twitch.tv/jlamaru", "https://www.twitch.tv/nateos"]}, "path": {"148-160": [[1849, 64], [1849, 93], [1877, 93], [1877, 64]]}, "center": {"148-160": [1863, 79]}},
{"id": "twtegl", "name": "Corpse Husband", "description": "Mural of Corpse Husband, a YouTuber, streamer and musician. Artwork is based off the animation of Corpse in his song Agoraphobic.", "links": {"website": ["https://www.youtube.com/c/CorpseHusband"], "subreddit": ["CorpseHusband"]}, "path": {"109-165, T:0-1": [[1269, 1004], [1285, 1004], [1285, 1071], [1261, 1072], [1257, 1075], [1255, 1081], [1243, 1081], [1238, 1075], [1234, 1071], [1229, 1070], [1225, 1069], [1225, 1057], [1234, 1039], [1235, 1031], [1244, 1024], [1246, 1013], [1247, 1005], [1257, 1002], [1267, 1004], [1279, 1004]]}, "center": {"109-165, T:0-1": [1259, 1042]}},
{"id": "twte9r", "name": "Flag of Hungary", "description": "Hungary is a country in Central Europe.\n\nThis is the second flag built by the Hungarian community on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"]}, "path": {"56-88": [[1171, 251], [1171, 279], [1391, 279], [1391, 250]], "89-166, T:0-1": [[1171, 251], [1171, 279], [1496, 278], [1496, 250]]}, "center": {"56-88": [1345, 265], "89-166, T:0-1": [1334, 265]}},
-{"id": "twte6v", "name": "Art Deco", "description": "A tribute to Art Deco architecture in Belgium. There were plans to change it to an art nouveau background since that's more of a Belgian thing, but there was not enough time.", "links": {"website": ["https://en.wikipedia.org/wiki/Art_Deco"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"104-166, T:0-1": [[1282, 773], [1282, 830], [1332, 830], [1332, 773]]}, "center": {"104-166, T:0-1": [1307, 802]}},
+{"id": "twte6v", "name": "Art Deco", "description": "Art Deco is an architectural style that spread across Europe in the 1920s.\n\nThere were plans to change this to an art nouveau background since that's more of a Belgian thing, but there was not enough time.", "links": {"website": ["https://en.wikipedia.org/wiki/Art_Deco"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"104-166, T:0-1": [[1282, 773], [1282, 830], [1332, 830], [1332, 773]]}, "center": {"104-166, T:0-1": [1296, 786]}},
{"id": "twte4k", "name": "Paimon", "description": "Paimon is the mascot character of Genshin Impact. 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\nThe blue stars around Paimon are called Primogems and are the premium currency of the game.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Paimon", "https://genshin.hoyoverse.com/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["GenshinPlace", "Genshin_Impact"]}, "path": {"58-166, T:0-1": [[1836, 725], [1836, 738], [1833, 741], [1836, 744], [1833, 747], [1833, 748], [1835, 750], [1835, 753], [1838, 756], [1838, 757], [1837, 758], [1837, 760], [1847, 760], [1849, 762], [1859, 762], [1862, 760], [1865, 760], [1866, 761], [1869, 761], [1869, 760], [1873, 760], [1873, 725]]}, "center": {"58-166, T:0-1": [1855, 743]}},
{"id": "twte2s", "name": "Peepo the dog", "description": "Dog of the streamer Leon from the collective bonjwa. Peepo is a very good boy and likes to sniff Mike.", "links": {"website": ["https://www.twitch.tv/bonjwa"], "subreddit": ["bonjwade"]}, "path": {"109-166, T:0-1": [[1517, 1250], [1542, 1250], [1542, 1273], [1522, 1273], [1522, 1271], [1519, 1271], [1519, 1257], [1517, 1257]]}, "center": {"109-166, T:0-1": [1530, 1261]}},
-{"id": "twte0y", "name": "Chibi Holostars", "description": "Chibi figures of 3 members of Holostars, which is a male branch of Hololive. From top to bottom: Hanasaki Miyabi, Astel Leda and Kageyama Shien.", "links": {"website": ["https://holostars.hololivepro.com/en/"], "subreddit": ["holostars", "Hololive"]}, "path": {"56-166, T:0-1": [[1395, 903], [1401, 903], [1402, 904], [1402, 926], [1394, 926], [1393, 924], [1392, 924], [1392, 911], [1393, 904]]}, "center": {"56-166, T:0-1": [1397, 915]}},
+{"id": "twte0y", "name": "Chibi Holostars", "description": "Chibi figures of 3 members of Holostars, which is a male branch of Hololive. From top to bottom: Hanasaki Miyabi, Astel Leda and Kageyama Shien.", "links": {"website": ["https://holostars.hololivepro.com/en/"], "subreddit": ["holostars", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1395, 903], [1401, 903], [1402, 904], [1402, 926], [1394, 926], [1393, 924], [1392, 924], [1392, 911], [1393, 904]]}, "center": {"56-166, T:0-1": [1397, 915]}},
{"id": "twtdul", "name": "Quackity", "description": "Toontown avatar of Minecraft YouTuber and streamer Quackity. Built by /r/quackity, /r/Toontown, Quacktwt, and Patitotwt.", "links": {"website": ["https://youtube.fandom.com/wiki/Quackity"], "subreddit": ["quackity", "Toontown"]}, "path": {"109-165, T:0-1": [[786, 1225], [786, 1300], [852, 1300], [852, 1225]]}, "center": {"109-165, T:0-1": [819, 1263]}},
{"id": "twtdk5", "name": "HHUT", "description": "HHUT, AKA Hip-Hop Ultimate Team. The small French community found their little heaven to place the logo.\n\nHip-Hop Ultimate Team is for all people who like rap and hip-hop. They are making real cards playable based on artists (Drake, Kanye West, Eminem...).", "links": {"website": ["https://hhut.fr"]}, "path": {"109-166, T:0-1": [[1120, 1881], [1135, 1882], [1135, 1863], [1120, 1863], [1119, 1863], [1120, 1864], [1119, 1875], [1120, 1880]]}, "center": {"109-166, T:0-1": [1127, 1872]}},
{"id": "twtdep", "name": "Kasane Teto", "description": "Kasane Teto is a character and voicebank for the singing synthesizer program UTAU, often used in music. Like r/place, Teto was originally an April Fools' joke.", "links": {"website": ["https://kasaneteto.jp/en-voicebank.html", "https://utau.fandom.com/wiki/Teto_Kasane"], "subreddit": ["utau"]}, "path": {"107-166, T:0-1": [[1806, 638], [1806, 642], [1805, 642], [1805, 646], [1808, 649], [1810, 649], [1810, 654], [1812, 654], [1812, 657], [1818, 657], [1818, 654], [1820, 654], [1820, 649], [1823, 649], [1824, 650], [1825, 650], [1825, 643], [1824, 642], [1824, 638]]}, "center": {"107-166, T:0-1": [1815, 645]}},
{"id": "twtde8", "name": "Fattypillow", "description": "Popular czech YouTuber and streamer!", "links": {"subreddit": ["Fattypillow"]}, "path": {"109-165, T:0-1": [[1536, 1233], [1599, 1233], [1599, 1249], [1536, 1249]]}, "center": {"109-165, T:0-1": [1568, 1241]}},
{"id": "twtday", "name": "Mizutsune", "description": "This is the icon of Mizutsune, a popular monster from the Monster Hunter series. It has appeared in several Monster Hunter games and is beloved by its fans for its colourful apperance and the ability to produce bubbles, which led to the nickname \"bubble fox\". In the top-right corner, The initials of the game can be seen. They are written in the color scheme of the France flag, in memoriam of the small neighboring France flag, which was destroyed towards the end. This artwork was allied with the Destiny artwork above, The vegan banner to the left and with the BazzaGazza logo on the right. The whole story can be read here: https://www.reddit.com/r/monster_hunter_place/comments/twx9yq/looking_back_on_rplace_2022_the_full_timeline/", "links": {"website": ["https://monsterhunter.fandom.com/wiki/Mizutsune"], "subreddit": ["MonsterHunter"]}, "path": {"109-166, T:0-1": [[1908, 1562], [1908, 1600], [1874, 1600], [1875, 1562]]}, "center": {"109-166, T:0-1": [1891, 1581]}},
{"id": "twtd6i", "name": "Star Academy (reste du logo)", "description": "Les restes du logo Star Academy (rip petitanj) créé le 04/04/2022 par les doux dingues sur la chaîne Flonflon_musique", "links": {"website": ["https://twitch.tv/flonflon_musique"]}, "path": {"109-165, T:0-1": [[1040, 1315], [1038, 1331], [1053, 1332], [1055, 1302]]}, "center": {"109-165, T:0-1": [1047, 1320]}},
-{"id": "twtd4j", "name": "Shiny Chatot", "description": "Chatot is a Normal/Flying-type parrot Pokémon from the Generation 4 Pokémon games (Pokémon Diamond/Pearl). This Chatot has a rare Shiny color, with pink wings instead of the usual blue.\n\nThis art was drawn by Chatot Dungeon, a spinoff group from the Twitch channel Twitch Plays Pokémon that formed in 2014 after getting timed out in chat for saying \"I like Chatot\". The Chatot was later turned Shiny by French Pokémon YouTuber (PokéTuber) Sneaze, whose mascot is a Shiny Chatot named Mastouffe. ", "links": {"website": ["https://www.youtube.com/channel/UCQjurXV2DUU1LU2FiSWamIg", "https://bulbapedia.bulbagarden.net/wiki/Chatot_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"3-15": [[80, 742], [76, 744], [74, 746], [73, 749], [73, 752], [75, 754], [78, 754], [78, 755], [80, 757], [87, 758], [87, 755], [90, 752], [90, 749], [92, 749], [92, 744], [89, 744], [89, 742]], "16-166, T:0-1": [[82, 743], [80, 745], [80, 748], [76, 750], [74, 752], [74, 754], [73, 755], [73, 758], [75, 760], [78, 760], [78, 761], [80, 763], [85, 764], [87, 762], [87, 761], [90, 758], [90, 755], [92, 755], [92, 750], [89, 750], [89, 748], [86, 745]]}, "center": {"3-15": [83, 749], "16-166, T:0-1": [83, 755]}},
+{"id": "twtd4j", "name": "Shiny Chatot", "description": "Chatot is a Normal/Flying-type parrot Pokémon from the Generation 4 Pokémon games (Pokémon Diamond/Pearl). This Chatot has a rare Shiny color, with pink wings instead of the usual blue.\n\nThis art was drawn by Chatot Dungeon, a spinoff group from the Twitch channel Twitch Plays Pokémon that formed in 2014 after getting timed out in chat for saying \"I like Chatot\". The Chatot was later turned Shiny by French Pokémon YouTuber (PokéTuber) Sneaze, whose mascot is a Shiny Chatot named Mastouffe.", "links": {"website": ["https://www.youtube.com/channel/UCQjurXV2DUU1LU2FiSWamIg", "https://bulbapedia.bulbagarden.net/wiki/Chatot_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"3-15": [[80, 742], [76, 744], [74, 746], [73, 749], [73, 752], [75, 754], [78, 754], [78, 755], [80, 757], [87, 758], [87, 755], [90, 752], [90, 749], [92, 749], [92, 744], [89, 744], [89, 742]], "16-166, T:0-1": [[82, 743], [80, 745], [80, 748], [76, 750], [74, 752], [74, 754], [73, 755], [73, 758], [75, 760], [78, 760], [78, 761], [80, 763], [85, 764], [87, 762], [87, 761], [90, 758], [90, 755], [92, 755], [92, 750], [89, 750], [89, 748], [86, 745]]}, "center": {"3-15": [83, 749], "16-166, T:0-1": [83, 755]}},
{"id": "twtd3k", "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. The logo is the acronym of the game with a silhouette of the game's protagonist, M4A1. To the lower right of the logo is a pixelated version of HK416, one of the game's main characters and a member of Squad 404.", "links": {"website": ["https://gf.sunborngame.com/", "https://en.wikipedia.org/wiki/Girls%27_Frontline"], "subreddit": ["girlsfrontline"]}, "path": {"8-20": [[300, 935], [300, 942], [310, 942], [310, 935]], "62-166, T:0-1": [[1765, 725], [1769, 725], [1771, 722], [1768, 720], [1768, 717], [1769, 717], [1769, 715], [1768, 715], [1768, 711], [1769, 711], [1770, 710], [1771, 710], [1772, 707], [1772, 708], [1775, 705], [1776, 705], [1780, 709], [1780, 711], [1779, 711], [1779, 713], [1781, 716], [1783, 717], [1784, 720], [1785, 723], [1787, 726], [1790, 725], [1790, 737], [1790, 742], [1790, 747], [1788, 747], [1787, 748], [1783, 747], [1782, 746], [1780, 745], [1776, 745], [1774, 744], [1772, 743], [1764, 743], [1762, 740], [1762, 739], [1764, 737], [1765, 737]]}, "center": {"8-20": [305, 939], "62-166, T:0-1": [1778, 733]}},
{"id": "twtd2d", "name": "Together Through Time", "description": "The logo for the 2018 album Together Through Time, The first full-length studio album and sixth record by Canadian 80's future space band TWRP. This art was drawn by fan communities across Reddit and Discord.", "links": {"website": ["https://twrp.fandom.com/wiki/Together_Through_Time"], "subreddit": ["TWRP"]}, "path": {"109-166, T:0-1": [[1035, 1774], [1033, 1770], [1032, 1765], [1034, 1761], [1036, 1757], [1040, 1754], [1042, 1753], [1052, 1753], [1055, 1755], [1059, 1760], [1061, 1764], [1061, 1772], [1058, 1776], [1053, 1779], [1039, 1779], [1036, 1777], [1035, 1775]]}, "center": {"109-166, T:0-1": [1047, 1766]}},
{"id": "twtcu7", "name": "The Kenyan flag", "description": "The Kenyan flag - with its signature shield", "links": {"subreddit": ["kenya"]}, "path": {"1-165, T:0-1": [[781, 982], [795, 982], [795, 1016], [781, 1016]]}, "center": {"1-165, T:0-1": [788, 999]}},
@@ -1540,7 +1534,7 @@
{"id": "twt94s", "name": "Mothalisa", "description": "One of the things made by r/Skyplace This one is the character Mothalisa", "links": {"subreddit": ["Skyplace"], "discord": ["EVZaHb4HsW"]}, "path": {"109-166, T:0-1": [[1658, 1073], [1647, 1073], [1648, 1072], [1648, 1071], [1651, 1068], [1648, 1065], [1649, 1064], [1650, 1064], [1651, 1063], [1652, 1063], [1654, 1063], [1656, 1065], [1656, 1067], [1655, 1068], [1655, 1069], [1656, 1070], [1657, 1071], [1657, 1072]]}, "center": {"109-166, T:0-1": [1652, 1069]}},
{"id": "twt8ut", "name": "underscores", "description": "underscores, real name Devon Karpf, is an American EDM/hyperpop music producer, born in California and based in New York. He is also a member of the group Six Impala.", "links": {"website": ["https://twitter.com/underscoresplus", "https://open.spotify.com/artist/7HfUJxeVTgrvhk0eWHFzV7"], "subreddit": ["underscores"], "discord": ["UeWkrt7XTD"]}, "path": {"21-166, T:0-1": [[463, 729], [497, 729], [497, 738], [463, 738]]}, "center": {"21-166, T:0-1": [480, 734]}},
{"id": "twt8q8", "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": {"56-166, T:0-1": [[1679, 539], [1683, 539], [1683, 540], [1686, 540], [1686, 541], [1692, 541], [1693, 541], [1693, 540], [1694, 540], [1695, 540], [1695, 539], [1695, 538], [1695, 537], [1695, 536], [1695, 535], [1694, 535], [1694, 534], [1693, 534], [1693, 533], [1692, 533], [1692, 532], [1691, 532], [1690, 532], [1690, 531], [1689, 531], [1689, 530], [1688, 530], [1687, 530], [1686, 530], [1685, 530], [1683, 530], [1682, 530], [1681, 530], [1680, 530], [1679, 530], [1678, 530], [1678, 534], [1678, 537], [1678, 539]]}, "center": {"56-166, T:0-1": [1686, 535]}},
-{"id": "twt8pb", "name": "ALO", "description": "An inside joke from the Marisad Discord server that originated from a video that has been spammed by members. It is included here because members thought it'll be funny", "links": {"subreddit": ["Marisad"]}, "path": {"56-166, T:0-1": [[1786, 874], [1792, 874], [1792, 887], [1785, 887]]}, "center": {"56-166, T:0-1": [1789, 881]}},
+{"id": "twt8pb", "name": "ALO", "description": "ALO is an inside joke from the Marisad Discord server that originated from a video that has been spammed by members. It is included here because members thought it'd be funny.", "links": {"subreddit": ["Marisad", "touhou"], "discord": ["UVkWNdhQ"]}, "path": {"126-166, T:0-1": [[1789, 874], [1787, 876], [1787, 878], [1786, 878], [1786, 883], [1787, 883], [1787, 887], [1791, 887], [1791, 882], [1790, 882], [1790, 879], [1791, 879], [1791, 876]]}, "center": {"126-166, T:0-1": [1789, 884]}},
{"id": "twt8h7", "name": "Gebühren Info Service", "description": "The GIS (Gebühren Info Service GmbH) is an Austrian agency responsible for collecting television and radio license fees. It is widely loathed in Austria due to its often underhanded tactics and dubious legality. The placement of the logo is more ironic than not.", "links": {"website": ["https://www.gis.at/", "https://de.wikipedia.org/wiki/Geb%C3%BChren_Info_Service"], "subreddit": ["Austria"]}, "path": {"50-114": [[865, 255], [865, 263], [879, 263], [879, 255]], "12-49": [[983, 253], [983, 261], [996, 261], [996, 253]], "115-166, T:0-1": [[865, 249], [879, 249], [879, 257], [865, 257]]}, "center": {"50-114": [872, 259], "12-49": [990, 257], "115-166, T:0-1": [872, 253]}},
{"id": "twt8dp", "name": "Rayman", "description": "A small simplified pixel art of Rayman, the titular character from the Rayman video game franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Rayman"], "subreddit": ["rayman"]}, "path": {"140-166, T:0-1": [[1698, 181], [1698, 182], [1699, 183], [1699, 184], [1698, 185], [1698, 188], [1704, 188], [1704, 185], [1703, 184], [1703, 183], [1704, 182], [1704, 181]]}, "center": {"140-166, T:0-1": [1701, 186]}},
{"id": "twt8ag", "name": "Dragon Stone", "description": "This is a Dragon Stone from the gacha game Dragon Ball Z Dokkan Battle", "links": {"subreddit": ["DBZDokkanBattle"]}, "path": {"109-166, T:0-1": [[1965, 1464], [1970, 1459], [1970, 1453], [1964, 1447], [1960, 1451], [1960, 1460]]}, "center": {"109-166, T:0-1": [1965, 1456]}},
@@ -1557,14 +1551,14 @@
{"id": "twt65q", "name": "Rain World: Downpour", "description": "Rain World: Downpour is a DLC expansion of the indie video game Rain World, a game by Videocult. This art depicts the five new playable characters (Slugcats) Downpour. In order, they are the Spearmaster, the Saint, the Rivulet, the Gourmand, and the Artificer. Alongside, there are three items from the game: a silver pearl, a gold pearl, and a king vulture mask.\n\nThis is the second Rain World location on the canvas.", "links": {"website": ["https://rainworld.miraheze.org/wiki/Downpour"], "subreddit": ["rainworld"]}, "path": {"57-126": [[1017, 552], [1017, 562], [1016, 562], [1013, 564], [1011, 566], [1011, 567], [1094, 567], [1094, 566], [1092, 564], [1092, 556], [1091, 555], [1091, 553], [1090, 552]], "128-165, T:0-1": [[1017, 552], [1017, 562], [1016, 563], [1013, 563], [1011, 565], [1011, 567], [1129, 567], [1129, 566], [1127, 564], [1127, 556], [1126, 555], [1126, 553], [1124, 551], [1107, 550], [1106, 549], [1102, 549], [1099, 552], [1098, 553], [1098, 557], [1104, 564], [1104, 567], [1070, 567], [1070, 564], [1067, 561], [1061, 561], [1061, 555], [1058, 555], [1058, 553], [1056, 551], [1017, 551]]}, "center": {"57-126": [1053, 560], "128-165, T:0-1": [1029, 554]}},
{"id": "twt618", "name": "Hatsune Miku: Colorful Stage!", "description": "An idol gacha/rhythm mobile game developed by CraftEgg in collaboration with SEGA, prominently featuring Hatsune Miku and other vocaloids (virtual singers) alongside the game's idols. Also known as Project SEKAI: COLORFUL STAGE! ft. Hatsune Miku.", "links": {"website": ["https://www.colorfulstage.com/"], "subreddit": ["colorfulstage", "ProjectSekai"]}, "path": {"109-166, T:0-1": [[1527, 1712], [1527, 1761], [1566, 1761], [1566, 1747], [1576, 1740], [1576, 1712]]}, "center": {"109-166, T:0-1": [1550, 1735]}},
{"id": "twt5wk", "name": "France vs Spain", "description": "Spanish people and Deepwoken taking over a French flag created by Twitch streamer JOYCA.\n\nBefore being bombarded with flags this area was originally controlled by the Drawception community in a displacement attempt by the Deepwoken community.", "links": {}, "path": {"109-165, T:0-1": [[375, 1339], [399, 1339], [399, 1350], [375, 1350]]}, "center": {"109-165, T:0-1": [387, 1345]}},
-{"id": "twt5sp", "name": "Clint Stevens", "description": "Clint Stevens is a YouTuber and streamer.", "links": {"website": ["https://www.youtube.com/channel/UCYsGgfAcQ91Fpda3_O-h0LA", "https://www.twitch.tv/clintstevens"], "subreddit": ["ClintStevens"]}, "path": {"126-166, T:0-1": [[1776, 275], [1795, 275], [1795, 272], [1796, 271], [1797, 269], [1798, 267], [1798, 258], [1804, 253], [1804, 252], [1776, 252]]}, "center": {"126-166, T:0-1": [1787, 263]}},
+{"id": "twt5sp", "name": "Clint Stevens", "description": "Clint Stevens is a YouTuber and streamer.", "links": {"website": ["https://www.youtube.com/channel/UCYsGgfAcQ91Fpda3_O-h0LA", "https://www.twitch.tv/clintstevens"], "subreddit": ["ClintStevens"]}, "path": {"97-122": [[1711, 890], [1711, 909], [1736, 909], [1736, 890]], "91-96": [[1717, 890], [1717, 909], [1736, 909], [1736, 890]], "61-90": [[1717, 889], [1717, 909], [1736, 909], [1736, 889]], "126-166, T:0-1": [[1776, 275], [1795, 275], [1795, 272], [1796, 271], [1797, 269], [1798, 267], [1798, 258], [1804, 253], [1804, 252], [1776, 252]]}, "center": {"97-122": [1724, 900], "91-96": [1727, 900], "61-90": [1727, 899], "126-166, T:0-1": [1787, 263]}},
{"id": "twt5nd", "name": "John Egbert", "description": "The protagonist of the webcomic Homestuck. The 413 represents Russian group Legion 413, named after a key number in the webcomic, who designed the pixel art.\n\nThis art was contested by a portion of the Homestuck fandom who attempted to change the picture to June Egbert, a transfeminine identity of John Egbert with ambiguous canonicity.", "links": {"website": ["https://mspaintadventures.fandom.com/wiki/John_Egbert"], "subreddit": ["homestuck"]}, "path": {"104-153": [[207, 100], [207, 121], [224, 121], [224, 100]], "60-91": [[242, 101], [242, 121], [258, 121], [258, 101]], "11-43": [[273, 116], [273, 134], [291, 134], [291, 116]], "154-165, T:0-1": [[212, 125], [223, 125], [223, 100], [207, 100], [207, 121], [212, 121], [212, 125], [223, 125], [212, 125], [212, 119]]}, "center": {"104-153": [216, 111], "60-91": [250, 111], "11-43": [282, 125], "154-165, T:0-1": [215, 108]}},
{"id": "twt5p7", "name": "Kat", "description": "Kat, the protagonist of Gravity Rush and Gravity Rush 2, showcasing her gravity-defying powers by standing sideways.", "links": {"website": ["https://en.wikipedia.org/wiki/Kat_(Gravity_Rush)"], "subreddit": ["gravityrush"]}, "path": {"75-166, T:0-1": [[1273, 72], [1273, 82], [1277, 82], [1277, 83], [1289, 83], [1292, 78], [1292, 75], [1289, 72], [1280, 72], [1280, 71], [1277, 71], [1277, 72]]}, "center": {"75-166, T:0-1": [1282, 78]}},
{"id": "twt5k8", "name": "Quaver", "description": "Quaver is an open-source competitive rhythm game available on Steam. It is a VSRG (vertically scrolling rhythm game) with both 4-key and 7-key playstyles.", "links": {"website": ["https://quavergame.com/"], "subreddit": ["Quavergame"]}, "path": {"63-81": [[694, 767], [691, 770], [691, 773], [694, 776], [697, 776], [698, 777], [699, 776], [699, 774], [700, 773], [700, 770], [697, 767]], "57-62": [[695, 767], [692, 770], [692, 773], [695, 776], [698, 776], [699, 777], [700, 776], [700, 774], [701, 773], [701, 770], [697, 767]], "82-165, T:0-1": [[694, 768], [691, 771], [691, 774], [694, 777], [697, 777], [698, 778], [699, 778], [699, 775], [700, 774], [700, 771], [697, 768]]}, "center": {"63-81": [696, 772], "57-62": [697, 772], "82-165, T:0-1": [696, 773]}},
{"id": "twt5is", "name": "Defqon.1 Hardstyle logo", "description": "Welcome home warriors! Defqon.1 is the biggest hard dance festival, loved by many hardstyle and hardcore enthousiasts around the world. This logo was made by both catjammers from the subreddit discord and the subreddit itself. On the atlas photo it is not quite complete, but in reality it was finished just in time for the final moments!", "links": {"subreddit": ["hardstyle"], "discord": ["hardstyle"]}, "path": {"109-165, T:0-1": [[1009, 1632], [1009, 1649], [1025, 1649], [1025, 1632]]}, "center": {"109-165, T:0-1": [1017, 1641]}},
{"id": "twt57g", "name": "JetPunk", "description": "JetPunk is a popular quiz website.", "links": {"website": ["https://jetpunk.com"], "subreddit": ["JetPunk"]}, "path": {"54-70": [[756, 273], [756, 280], [781, 280], [781, 273]], "71-93": [[746, 273], [748, 276], [752, 276], [756, 280], [781, 280], [781, 273]], "94-166, T:0-1": [[753, 269], [750, 272], [752, 274], [752, 275], [751, 276], [755, 280], [781, 280], [781, 269]]}, "center": {"54-70": [769, 277], "71-93": [764, 277], "94-166, T:0-1": [767, 275]}},
{"id": "twt53l", "name": "KEKW", "description": "KEKW is a viral Twitch emote from the FrankerFaceZ Twitch extension. It features the late Spanish actor and comedian El Risitas (real name Juan Joya Borja), who recently passed away in 2021.\n\nEl Risitas gained popularity in El Vagamundo, a TV show made by Jesús Quintero. On the show, El Risitas's distinct humor and laughter quickly earned him his nickname, which is Spanish for \"The Giggles\".\n\nThe KEKW image comes from a later TV show, Ratones Coloraos (\"Red Mice\"), also produced by Quintero and starring El Risitas. During a segment on the show, El Risitas tells a story and reacts with his signature laugh; a still image of this was clipped and originally used as a subtitled meme. The image gained further popularity when a streamer added KEKW, a zoomed-in version of the image, to the FrankerFaceZ extension in 2019.", "links": {"website": ["https://www.youtube.com/watch?v=cDphUib5iG4", "https://knowyourmeme.com/memes/kekw", "https://en.wikipedia.org/wiki/El_Risitas"], "subreddit": ["esPlace", "spain"]}, "path": {"65-140": [[1239, 281], [1239, 308], [1265, 308], [1265, 306], [1301, 306], [1304, 303], [1304, 286], [1300, 282], [1269, 282], [1266, 285], [1265, 284], [1265, 281]], "141-166, 59-64, T:0-1": [[1239, 281], [1239, 308], [1265, 308], [1265, 281]]}, "center": {"65-140": [1253, 295], "141-166, 59-64, T:0-1": [1252, 295]}},
-{"id": "twt52l", "name": "Project Inkunzi", "description": "Project Inkunzi is a nation role-play where you role-play as nations in an fantasy world.", "links": {"website": ["https://project-inkunzi.fandom.com/wiki/Project_Inkunzi_Wiki"], "subreddit": ["Inkunzi"]}, "path": {"143-166, T:0-1": [[1768, 408], [1768, 415], [1795, 415], [1795, 414], [1794, 413], [1792, 413], [1791, 412], [1791, 411], [1790, 410], [1789, 409], [1789, 408]]}, "center": {"143-166, T:0-1": [1779, 412]}},
+{"id": "twt52l", "name": "Project Inkunzi", "description": "Project Inkunzi is a geopolitical nation role-play where you role-play as nations on a fantasy planet. It was made by YouTuber CalmDownLevelUp.", "links": {"website": ["https://project-inkunzi.fandom.com/wiki/Project_Inkunzi_Wiki"], "subreddit": ["Inkunzi", "CalmDownLevelUp"]}, "path": {"143-166, T:0-1": [[1768, 408], [1768, 415], [1795, 415], [1795, 414], [1794, 413], [1792, 413], [1791, 412], [1791, 411], [1790, 410], [1789, 409], [1789, 408]]}, "center": {"143-166, T:0-1": [1779, 412]}},
{"id": "twt4wm", "name": "Timor (flag of Portugal)", "description": "Timor was the jokingly given name to a small Portuguese flag that was covered.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal"], "subreddit": ["portugal"]}, "path": {"109-165, T:0-1": [[404, 1499], [424, 1499], [423, 1511], [404, 1511]]}, "center": {"109-165, T:0-1": [414, 1505]}},
{"id": "twt4pe", "name": "Blue Archive", "description": "Blue Archive is a mobile gacha game. This art depicts two characters from the game, Arona and Shiroko.\n\nThis art was made by the Blue Archive Community.", "links": {"website": ["https://bluearchive.nexon.com/home", "https://en.wikipedia.org/wiki/Blue_Archive"], "subreddit": ["BlueArchive"], "discord": ["BlueArchive"]}, "path": {"70-166, T:0-1": [[1621, 441], [1650, 441], [1650, 486], [1621, 486]]}, "center": {"70-166, T:0-1": [1636, 464]}},
{"id": "twt4p9", "name": "42", "description": "42 is a network of digital training centers, teaching programming and other computing topics. It is entirely free and available to any students 18 years or older, with or without a degree. Its teaching methods are based upon peer-to-peer learning; classless, teacherless, and participatory, 42 allows students to free their creativity through project learning. The network is based in Paris, France, with several locations across the world.", "links": {"website": ["https://www.42network.org/", "https://42.fr/"]}, "path": {"95-166, T:0-1": [[1459, 224], [1468, 215], [1483, 215], [1483, 221], [1497, 221], [1497, 242], [1458, 243]]}, "center": {"95-166, T:0-1": [1473, 229]}},
@@ -1572,7 +1566,7 @@
{"id": "twt4jw", "name": "Ludwig van Beethoven", "description": "A famous German composer and pianist. Commonly known for his 5th Symphony.", "links": {"website": ["https://en.wikipedia.org/wiki/Ludwig_van_Beethoven"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-167, T:0-1": [[1929, 867], [1936, 861], [1943, 860], [1947, 857], [1942, 848], [1942, 842], [1939, 839], [1939, 836], [1934, 831], [1919, 830], [1916, 833], [1914, 837], [1913, 842], [1909, 846], [1908, 851], [1916, 857], [1924, 867], [1927, 867]]}, "center": {"56-167, T:0-1": [1927, 848]}},
{"id": "twt4b3", "name": "Rest in Peace Zaf", "description": "French streamer Pierre Lapin and his community wanted to pay homage to Pierre's friend and French Twitter Legend Zafinho who passed away in 2017.", "links": {"website": ["https://twitter.com/pierrelapin/status/1511019730638979079?s=20&t=K-cMCRtyEaMF1qAQqmg2Xg"]}, "path": {"109-165, T:0-1": [[923, 1487], [923, 1494], [915, 1494], [915, 1506], [950, 1506], [948, 1488], [924, 1487]]}, "center": {"109-165, T:0-1": [933, 1497]}},
{"id": "twt46s", "name": "The Wheel of Time", "description": "The Wheel of Time is a fantasy novel series by American authors Robert Jordan and Brandon Sanderson. This art depicts the ancient symbol of Aes Sedai, comprised of the Flame of Tar Valon and the Dragon's Fang. The seven Ajah colors are in the background.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Wheel_of_Time"], "subreddit": ["WoT"]}, "path": {"73-96": [[1726, 2], [1726, 22], [1728, 22], [1728, 25], [1727, 25], [1727, 31], [1749, 31], [1749, 2]], "59-72": [[1727, 0], [1727, 27], [1749, 27], [1749, 0]], "99-166, T:0-1": [[1888, 869], [1888, 893], [1911, 893], [1911, 869]]}, "center": {"73-96": [1738, 14], "59-72": [1738, 14], "99-166, T:0-1": [1900, 881]}},
-{"id": "twt3zm", "name": "Pineapple", "description": "QuiltMC's dear mascot: pineapple. Do not dare call them a pumpkin!", "links": {"website": ["https://quiltmc.org/"]}, "path": {"56-165, T:0-1": [[1085, 894], [1085, 886], [1081, 886], [1081, 884], [1081, 883], [1079, 883], [1079, 886], [1074, 886], [1074, 894]]}, "center": {"56-165, T:0-1": [1080, 890]}},
+{"id": "twt3zm", "name": "QuiltMC", "description": "This pineapple is the dear mascot of QuiltMC, a modding toolchain for the game Minecraft. Do not dare call them a pumpkin!", "links": {"website": ["https://quiltmc.org/"]}, "path": {"56-62": [[1092, 888], [1092, 898], [1105, 898], [1105, 888], [1101, 888], [1101, 885], [1097, 885], [1097, 888]], "65-165, T:0-1": [[1085, 894], [1085, 886], [1081, 886], [1081, 884], [1081, 883], [1079, 883], [1079, 886], [1074, 886], [1074, 894]]}, "center": {"56-62": [1099, 893], "65-165, T:0-1": [1079, 890]}},
{"id": "twt3zj", "name": "Vibri", "description": "Vibri is a vector-shaped angular female rabbit and the player character in the 1999 PlayStation 1 rhythm game, Vib-Ribbon.", "links": {"website": ["https://en.wikipedia.org/wiki/Vib-Ribbon"], "subreddit": ["vib_ribbon", "vibribbon"]}, "path": {"58-166, T:0-1": [[1705, 212], [1705, 180], [1707, 180], [1708, 170], [1724, 170], [1724, 212]]}, "center": {"58-166, T:0-1": [1715, 191]}},
{"id": "twt3pb", "name": "Flag of Austria", "description": "Austria is a country in Central Europe. This Austrian flag contains many Austrian cultural depictions like the Austrian coat of arms, Leberkässemmel, Tom Turbo, and the Alps.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["Austria"]}, "path": {"1-54": [[865, 252], [865, 281], [999, 281], [999, 252]], "55-166, T:0-1": [[865, 249], [865, 280], [1171, 279], [1171, 250]]}, "center": {"1-54": [932, 267], "55-166, T:0-1": [881, 265]}},
{"id": "twt29j", "name": "Toki Pona + r/Parahumans combo symbol", "description": "A combination of the r/Parahumans logo (a scarab representing Worm) and the Toki Pona smile symbols.", "links": {"website": ["https://parahumans.wordpress.com/", "https://tokipona.org/", "https://en.wikipedia.org/wiki/Toki_Pona"], "subreddit": ["Parahumans", "tokipona"]}, "path": {"88-165, T:0-1": [[1681, 212], [1681, 223], [1680, 223], [1680, 227], [1682, 227], [1682, 228], [1684, 228], [1684, 227], [1687, 227], [1687, 228], [1689, 228], [1689, 227], [1691, 227], [1691, 223], [1690, 223], [1690, 212]]}, "center": {"88-165, T:0-1": [1686, 220]}},
@@ -1581,8 +1575,8 @@
{"id": "twt1ch", "name": "Bayraktar TB-2", "description": "An autonomous combat drone manufactured in Turkey and used by Ukraine during the Russian invasion of Ukraine.\n\nWhile seen as a symbol of the 2022 invasion, the text \"Bayraktar\" and \"TB-2\" were added to the Ukraine mural forcefully by Turkish Twitch streamer Haskologlu. The streamer agreed to remove the text if a pixel art version of the drone was added, but broke their promise and did not remove the text \"Bayraktar\".", "links": {"website": ["https://en.wikipedia.org/wiki/Baykar_Bayraktar_TB2"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"120-150": [[393, 187], [393, 195], [421, 195], [422, 196], [422, 198], [425, 198], [425, 197], [428, 197], [428, 194], [432, 194], [430, 188], [427, 185], [413, 185], [413, 187], [393, 187], [393, 212], [433, 212], [433, 220], [395, 220], [395, 212], [393, 212]], "100-119": [[395, 212], [395, 220], [431, 220], [431, 212]], "T:0-1": [[414, 185], [414, 188], [413, 188], [409, 192], [409, 193], [414, 193], [416, 195], [419, 195], [423, 197], [428, 197], [428, 194], [432, 194], [432, 192], [427, 185], [424, 185], [421, 188], [420, 188], [417, 185]], "151-165": [[385, 172], [385, 181], [422, 181], [422, 187], [421, 188], [420, 188], [417, 185], [414, 185], [414, 188], [413, 188], [411, 190], [410, 190], [410, 187], [394, 187], [394, 195], [410, 195], [410, 193], [414, 193], [416, 195], [418, 193], [420, 193], [420, 196], [423, 196], [424, 197], [427, 197], [427, 194], [432, 194], [432, 192], [431, 191], [431, 190], [430, 189], [430, 188], [427, 185], [422, 185], [422, 172]]}, "center": {"120-150": [424, 190], "100-119": [413, 216], "T:0-1": [424, 192], "151-165": [408, 176]}},
{"id": "twt17r", "name": "École supérieure d'électronique de l'Ouest", "description": "École supérieure d'électronique de l'Ouest (ESEO) is a French engineering school with locations in Angers, Dijon, and Paris.", "links": {"website": ["https://eseo.fr/", "https://en.wikipedia.org/wiki/%C3%89cole_sup%C3%A9rieure_d'%C3%A9lectronique_de_l'Ouest"]}, "path": {"144-164, T:0-1": [[1395, 377], [1395, 399], [1418, 399], [1418, 397], [1419, 397], [1421, 395], [1421, 393], [1419, 391], [1418, 391], [1418, 377]]}, "center": {"144-164, T:0-1": [1406, 388]}},
{"id": "twt0zu", "name": "Clown69 Sheep", "description": "A sheep commenly used by the streamer Quin69. Its traits represnt his clownish behaviour and his tendancy to cry about everything.", "links": {"website": ["https://www.twitch.tv/quin69"], "subreddit": ["quin69"]}, "path": {"109-166, T:0-1": [[420, 1881], [448, 1881], [448, 1911], [420, 1911], [420, 1905]]}, "center": {"109-166, T:0-1": [434, 1896]}},
-{"id": "twt0yw", "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in the indie role-playing game OMORI.\n\nThis site originally held the character KEL, but it was relocated.", "links": {"website": ["https://omori.fandom.com/wiki/AUBREY"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"159-166, T:0-1": [[1424, 823], [1424, 819], [1422, 819], [1421, 819], [1421, 810], [1420, 809], [1419, 809], [1419, 806], [1419, 805], [1420, 805], [1420, 801], [1421, 800], [1421, 799], [1422, 798], [1424, 797], [1425, 796], [1429, 796], [1430, 795], [1431, 796], [1432, 797], [1433, 797], [1435, 797], [1436, 798], [1436, 800], [1437, 805], [1438, 808], [1437, 809], [1436, 810], [1436, 818], [1433, 819], [1433, 823], [1430, 823], [1430, 821], [1427, 821]]}, "center": {"159-166, T:0-1": [1429, 806]}},
-{"id": "twt0yo", "name": "German oak", "description": "Collaboration between r/placetrees and r/placeDE to build the German national tree. Initiated by u/GladOSkar. Went through many modifications", "links": {"website": ["https://en.wikipedia.org/wiki/Oak"], "subreddit": ["placetrees", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1247, 868], [1249, 864], [1249, 859], [1247, 858], [1247, 860], [1248, 860], [1248, 864], [1244, 864], [1244, 860], [1245, 860], [1245, 858], [1240, 856], [1237, 852], [1235, 848], [1236, 844], [1239, 842], [1238, 841], [1240, 839], [1241, 840], [1247, 835], [1250, 835], [1253, 832], [1256, 832], [1258, 834], [1264, 837], [1267, 840], [1273, 844], [1273, 847], [1270, 852], [1270, 854], [1267, 857], [1264, 858], [1261, 859], [1259, 859], [1258, 859], [1258, 863], [1260, 867], [1262, 868], [1244, 868]]}, "center": {"56-166, T:0-1": [1254, 849]}},
+{"id": "twt0yw", "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in the indie role-playing game OMORI.\n\nThis site originally held the character KEL, but he was relocated and replaced with AUBREY.", "links": {"website": ["https://omori.fandom.com/wiki/AUBREY"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"159-166, T:0-1": [[1425, 796], [1422, 798], [1420, 801], [1420, 804], [1419, 805], [1419, 807], [1421, 809], [1421, 818], [1424, 818], [1424, 824], [1433, 824], [1433, 818], [1436, 818], [1436, 809], [1438, 807], [1438, 805], [1437, 804], [1437, 801], [1435, 799], [1435, 796], [1431, 796], [1430, 795], [1429, 796]]}, "center": {"159-166, T:0-1": [1429, 805]}},
+{"id": "twt0yo", "name": "German oak", "description": "The German oak is the national tree of Germany.\n\nThis art was a collaboration between r/placetrees and r/placeDE, originally initiated by u/GladOSkar. The tree went through many modifications throughout r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Oak"], "subreddit": ["placetrees", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"63-166, T:0-1": [[1247, 868], [1249, 864], [1249, 859], [1247, 858], [1247, 860], [1248, 860], [1248, 864], [1244, 864], [1244, 860], [1245, 860], [1245, 858], [1240, 856], [1237, 852], [1235, 848], [1236, 844], [1239, 842], [1238, 841], [1240, 839], [1241, 840], [1247, 835], [1250, 835], [1253, 832], [1256, 832], [1258, 834], [1264, 837], [1267, 840], [1273, 844], [1273, 847], [1270, 852], [1270, 854], [1267, 857], [1264, 858], [1261, 859], [1259, 859], [1258, 859], [1258, 863], [1260, 867], [1262, 868], [1244, 868]]}, "center": {"63-166, T:0-1": [1254, 847]}},
{"id": "twt0sr", "name": "alt:V Multiplayer for GTA V", "description": "A free alternative multiplayer client for Grand Theft Auto V. The client provides perfect synchronization on custom dedicated servers. Play with your friends and make your own gamemodes with JavaScript, C#, and much more.", "links": {"website": ["https://altv.mp"], "subreddit": ["altv"]}, "path": {"109-166, T:0-1": [[469, 1395], [576, 1395], [576, 1407], [543, 1409], [544, 1415], [531, 1415], [531, 1419], [531, 1424], [498, 1424], [498, 1416], [476, 1415], [476, 1410], [473, 1409], [472, 1403], [469, 1399], [468, 1395]]}, "center": {"109-166, T:0-1": [519, 1406]}},
{"id": "twt0qe", "name": "Team Vanadium", "description": "Team Vanadium is a group of French friends and a former competitive team for the game Counter-Strike: Global Offensive. They battled over a small area on the last day to be part of the history of Reddit for the next five years.", "links": {}, "path": {"138-166, T:0-1": [[1460, 796], [1460, 804], [1486, 804], [1486, 796]]}, "center": {"138-166, T:0-1": [1473, 800]}},
{"id": "twt0l3", "name": "Overwatch League", "description": "The Overwatch League (OWL) is a professional esports league for the video game Overwatch.\n\nThis art was created by r/CompetitiveOverwatch, the de facto official subreddit for the Overwatch competitive scene.", "links": {"website": ["https://overwatchleague.com/en-us/"], "subreddit": ["CompetitiveOverwatch"]}, "path": {"57-85": [[1803, 140], [1803, 130], [1789, 130], [1789, 140]], "3-7": [[210, 585], [227, 585], [227, 573], [210, 573]], "89-166, T:0-1": [[1802, 140], [1818, 140], [1818, 130], [1802, 130]]}, "center": {"57-85": [1796, 135], "3-7": [219, 579], "89-166, T:0-1": [1810, 135]}},
@@ -1620,7 +1614,7 @@
{"id": "twsu4c", "name": "Golden Egg", "description": "A golden egg from Salmon Run, a game mode in Splatoon 2.", "links": {"website": ["https://splatoonwiki.org/wiki/Golden_Egg"], "subreddit": ["splatoon"]}, "path": {"109-166, T:0-1": [[1110, 1882], [1110, 1899], [1127, 1900], [1127, 1882]]}, "center": {"109-166, T:0-1": [1119, 1891]}},
{"id": "twsu1s", "name": "Kurzgesagt bird", "description": "Kurzgesagt (English: In a Nutshell) is a German YouTuber who creates educational science videos with the help of animations. These videos often focus on space and frequently feature cartoon birds.", "links": {"website": ["https://kurzgesagt.org", "https://www.youtube.com/c/inanutshell", "https://en.wikipedia.org/wiki/Kurzgesagt"], "subreddit": ["Kurzgesagt_Place", "kurzgesagt", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"57-166, T:0-1": [[670, 849], [668, 851], [666, 851], [666, 858], [664, 861], [665, 862], [665, 865], [676, 865], [680, 862], [680, 859], [678, 857], [676, 856], [676, 852], [673, 849]]}, "center": {"57-166, T:0-1": [671, 859]}},
{"id": "twstl9", "name": "Lara Croft (Tomb Raider)", "description": "A pixel art depicting Lara Croft, The main protagonist and mascot of the Tomb Raider franchise.\n\nTomb Raider has had many games starting from the series' debut in 1996, spanning multiple continuities, with several iterations of Lara Croft.\n\nWhile Lara Croft would gain the title of Tomb Raider due to her skills as an archaeologist, it would be her intelligent, strong, fearless, and independent personality that would take the world by storm and cement her as a true pop culture icon.", "links": {"website": ["https://tombraider.square-enix-games.com/en-us"], "subreddit": ["tombraider"]}, "path": {"109-166, T:0-1": [[1875, 1554], [1875, 1538], [1852, 1538], [1852, 1555], [1875, 1555]]}, "center": {"109-166, T:0-1": [1864, 1547]}},
-{"id": "twstfl", "name": "Cherry Bullet", "description": "Logo of K-pop girl group Cherry Bullet.", "links": {"website": ["https://www.fncent.com/CherryBullet/"], "subreddit": ["CherryBullet"]}, "path": {"56-166, T:0-1": [[1706, 869], [1706, 880], [1718, 880], [1718, 870], [1718, 869]]}, "center": {"56-166, T:0-1": [1712, 875]}},
+{"id": "twstfl", "name": "Cherry Bullet", "description": "Cherry Bullet (Korean: 체리블렛; RR: cheri beullet) is a South Korean girl group formed by FNC Entertainment and managed under their sub-label FNC W. They debuted on January 21, 2019 with their single album Let's Play Cherry Bullet. The group currently consists of seven members: Haeyoon, Yuju, Bora, Jiwon, Remi, Chaerin, and May.", "links": {"website": ["https://www.fncent.com/CherryBullet/", "https://en.wikipedia.org/wiki/Cherry_Bullet"], "subreddit": ["CherryBullet", "kpop"]}, "path": {"74-122": [[1716, 869], [1716, 879], [1726, 879], [1726, 869]], "126-166, T:0-1": [[1706, 869], [1706, 880], [1718, 880], [1718, 870], [1718, 869]]}, "center": {"74-122": [1721, 874], "126-166, T:0-1": [1712, 875]}},
{"id": "twst8u", "name": "Silithur", "description": "Silithur is a hispanic Twitch streamer.\n\nThe Silithur channel helped a large part of the hispanic community when it needed it most.", "links": {"website": ["https://www.twitch.tv/silithur"]}, "path": {"111-165, 96-104, T:0-1": [[1782, 431], [1782, 475], [1824, 475], [1824, 431]]}, "center": {"111-165, 96-104, T:0-1": [1803, 453]}},
{"id": "twsswm", "name": "Teardown", "description": "The logo of the Swedish sandbox, puzzle, and action game Teardown created by Dennis Gustafson and Emil Bengtsonn under their game studio Tuxedo Labs. Its gameplay revolves around physics-based destructible voxels.\n\nThis logo was drawn by over 50 participants, a part of the Discord community for Teardown.", "links": {"website": ["https://teardowngame.com/", "https://en.wikipedia.org/wiki/Teardown_(video_game)"], "subreddit": ["TeardownGame"]}, "path": {"68-166, T:0-1": [[1334, 131], [1334, 141], [1342, 145], [1349, 141], [1348, 130], [1341, 127]]}, "center": {"68-166, T:0-1": [1341, 136]}},
{"id": "twssnx", "name": "The Wings Of Freedom", "description": "The Wings Of Freedom is a symbol from the anime and manga Attack on Titan (Shingeki no Kyojin).\n\nIn this art, the right wing is yellow instead of its usual white to match the flag of Ukraine's colors.", "links": {"website": ["https://attackontitan.fandom.com/wiki/The_Wings_Of_Freedom"], "subreddit": ["titanfolk", "placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"7-20": [[504, 401], [504, 419], [533, 419], [533, 401]], "28-165, T:0-1": [[298, 204], [298, 173], [300, 173], [300, 170], [303, 170], [305, 173], [321, 173], [324, 170], [327, 170], [327, 173], [329, 173], [329, 205], [328, 205], [326, 207], [325, 207], [325, 209], [327, 211], [327, 213], [324, 213], [323, 212], [321, 212], [320, 211], [317, 211], [316, 212], [315, 212], [314, 213], [313, 213], [312, 212], [311, 212], [310, 211], [309, 211], [307, 213], [304, 213], [304, 211], [305, 210], [305, 209], [304, 208], [303, 208]]}, "center": {"7-20": [519, 410], "28-165, T:0-1": [314, 192]}},
@@ -1648,7 +1642,7 @@
{"id": "twsp68", "name": "Terz and Malte", "description": "An inscription honoring two of the most influential members of the German Discord.", "links": {"subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE", "de", "germany"]}, "path": {"109-166, T:0-1": [[1839, 1140], [1836, 1121], [1932, 1122], [1929, 1139]]}, "center": {"109-166, T:0-1": [1883, 1130]}},
{"id": "twsp4w", "name": "Dimitar Berbatov", "description": "Dimitar Ivanov Berbatov (Bulgarian: Димитър Иванов Бербатов; born 30 January 1981) is a Bulgarian former professional footballer. He played for Manchester United from 2008 to 2012.", "links": {"website": ["https://en.wikipedia.org/wiki/Dimitar_Berbatov"], "subreddit": ["bulgaria", "reddevils"]}, "path": {"144-166, T:0-1": [[1637, 689], [1634, 691], [1633, 693], [1633, 699], [1636, 702], [1636, 710], [1633, 710], [1633, 712], [1638, 712], [1638, 713], [1644, 713], [1644, 712], [1649, 712], [1649, 710], [1645, 710], [1645, 702], [1648, 699], [1648, 693], [1646, 690], [1644, 689]]}, "center": {"144-166, T:0-1": [1641, 696]}},
{"id": "twsp0m", "name": "Scotland", "description": "Scotland is a country in the United Kingdom.\n\nThis is the second tile created by r/scotland. This tile has a strip of tartan, a dram of whisky, a bottle of Buckfast Tonic Wine, a can of Tennent's Lager, and a can of Irn-Bru. There is also a Lemming who has found his way onto the can of Irn-Bru. The game Lemmings was created by Scottish-based company DMA Design, who later became Rockstar North.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland"], "subreddit": ["Scotland"]}, "path": {"136-166, 57-131, T:0-1": [[1522, 170], [1522, 193], [1558, 193], [1558, 170]]}, "center": {"136-166, 57-131, T:0-1": [1540, 182]}},
-{"id": "twsozt", "name": "Lisa: The Painful", "description": "Lisa: The Painful RPG is a post-apocalyptic role-playing video game developed and published by American indie studio Dingaling Productions. This art features the main character, Brad Armstrong, and a Joy pill.", "links": {"website": ["http://www.lisatherpg.com/"], "subreddit": ["lisathepainfulrpg"]}, "path": {"56-165, T:0-1": [[1075, 803], [1075, 804], [1074, 804], [1074, 806], [1074, 807], [1073, 807], [1073, 812], [1074, 812], [1074, 813], [1074, 814], [1073, 814], [1073, 815], [1072, 815], [1072, 825], [1073, 824], [1073, 826], [1076, 826], [1076, 828], [1077, 828], [1077, 829], [1078, 829], [1078, 828], [1079, 828], [1079, 827], [1082, 827], [1082, 828], [1083, 828], [1083, 829], [1084, 829], [1084, 828], [1085, 828], [1085, 827], [1085, 826], [1088, 826], [1088, 825], [1089, 825], [1089, 824], [1094, 824], [1094, 810], [1093, 810], [1093, 809], [1088, 809], [1088, 804], [1087, 804], [1087, 803], [1076, 803]]}, "center": {"56-165, T:0-1": [1082, 816]}},
+{"id": "twsozt", "name": "Lisa: The Painful", "description": "Lisa: The Painful is a post-apocalyptic role-playing video game developed and published by American indie studio Dingaling Productions. This art features the main character, Brad Armstrong, and a Joy pill.", "links": {"website": ["http://www.lisatherpg.com/", "https://en.wikipedia.org/wiki/Lisa:_The_Painful"], "subreddit": ["lisathepainfulrpg"]}, "path": {"66-165, T:0-1": [[1090, 813], [1090, 825], [1095, 825], [1095, 813]]}, "center": {"66-165, T:0-1": [1093, 819]}},
{"id": "twsozr", "name": "Oregairu SNAFU", "description": "やはり俺の青春ラブコメは間違っている or My Teen Romantic Comedy is Wrong as Expected. SNAFU is a lightnovel written by Watari Wataru, which then got adapted to a three-season anime by Studio Deen and Studio FEEL.", "links": {"website": ["https://en.wikipedia.org/wiki/My_Youth_Romantic_Comedy_Is_Wrong,_As_I_Expected"], "subreddit": ["oregairuSNAFU"]}, "path": {"109-165, T:0-1": [[396, 1642], [396, 1636], [397, 1634], [396, 1632], [395, 1631], [394, 1630], [393, 1629], [392, 1629], [392, 1628], [389, 1628], [388, 1627], [379, 1627], [378, 1628], [375, 1628], [375, 1629], [373, 1629], [373, 1630], [372, 1630], [372, 1631], [371, 1631], [371, 1632], [370, 1632], [370, 1636], [371, 1636], [372, 1637], [373, 1638], [374, 1639], [375, 1639], [375, 1640], [378, 1640], [378, 1641], [390, 1641], [390, 1640], [391, 1641], [392, 1642], [393, 1643], [394, 1643], [395, 1643]]}, "center": {"109-165, T:0-1": [384, 1634]}},
{"id": "twso9k", "name": "Temple University", "description": "Temple University is a university \n in Philadelphia, Pennsylvania, United States.\n\nThe art helped the Dwarf Fortress community above fight off the encroachment of r/nba's LeMao James.", "links": {"website": ["https://www.temple.edu", "https://en.wikipedia.org/wiki/Temple_University"]}, "path": {"10-166, T:0-1": [[0, 515], [0, 529], [53, 529], [53, 515]]}, "center": {"10-166, T:0-1": [27, 522]}},
{"id": "twso73", "name": "IIIT Pune", "description": "Indian Institute of Information Technology, Pune (abbreviated IIITP), is one of the Indian Institutes of Information Technology, a group of institutes of Higher education in India focused on Information Technology.", "links": {}, "path": {"109-166, T:0-1": [[1097, 1900], [1097, 1908], [1127, 1908], [1127, 1900]]}, "center": {"109-166, T:0-1": [1112, 1904]}},
@@ -1675,7 +1669,7 @@
{"id": "twsjha", "name": "The Boyfriend", "description": "The character depicted is The Boyfriend, hero of the game Friday Night Funkin', a rhythm game on Newgrounds by Ninjamuffin99, PhantomArcade, Kawai Sprite, and evilsk8r.", "links": {"website": ["https://fridaynightfunkin.fandom.com/wiki/Boyfriend", "https://www.newgrounds.com/portal/view/770371"], "subreddit": ["FridayNightFunkin"]}, "path": {"109-166, T:0-1": [[931, 1899], [931, 1948], [980, 1948], [980, 1899]]}, "center": {"109-166, T:0-1": [956, 1924]}},
{"id": "twsjdf", "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.", "links": {"website": ["https://www.facebook.com/groups/2038441566425103/"], "subreddit": ["HurdyGurdy"]}, "path": {"109-166, T:0-1": [[592, 1545], [613, 1545], [612, 1552], [604, 1551], [607, 1567], [603, 1574], [597, 1574], [596, 1571], [594, 1568], [596, 1560], [598, 1551], [592, 1551]]}, "center": {"109-166, T:0-1": [601, 1557]}},
{"id": "twsix6", "name": "Deltarune", "description": "Formerly was the logo of a video game called Deltarune, created by indie game creator Toby Fox.", "links": {"website": ["https://en.wikipedia.org/wiki/Deltarune"], "subreddit": ["Deltarune", "placestart"]}, "path": {"109-166, T:0-1": [[596, 1974], [619, 1974], [620, 1996], [595, 1996]]}, "center": {"109-166, T:0-1": [608, 1985]}},
-{"id": "twsilc", "name": "Eye of X.A.N.A.", "description": "An eye of X.A.N.A. symbol from the French television series Code Lyoko. Created by a group of individuals from the r/CodeLyoko subreddit.", "links": {"website": ["https://codelyoko.fandom.com/wiki/Eye_of_X.A.N.A."], "subreddit": ["CodeLyoko"]}, "path": {"56-165, T:0-1": [[1190, 870], [1198, 870], [1198, 883], [1190, 883]]}, "center": {"56-165, T:0-1": [1194, 877]}},
+{"id": "twsilc", "name": "Eye of X.A.N.A.", "description": "The eye of X.A.N.A. is a symbol from the French television series Code Lyoko that represents X.A.N.A., the antagonist of the series.\n\nThis art was created by a group of individuals from the r/CodeLyoko subreddit.", "links": {"website": ["https://codelyoko.fandom.com/wiki/Eye_of_X.A.N.A."], "subreddit": ["CodeLyoko"]}, "path": {"106-165, T:0-1": [[1189, 869], [1189, 884], [1199, 884], [1199, 869]]}, "center": {"106-165, T:0-1": [1194, 877]}},
{"id": "twsiei", "name": "M3 Logo", "description": "An unfinished logo of the Mandate of Modern Mapping, a cartography-based Discord server.", "links": {}, "path": {"56-166, T:0-1": [[1792, 970], [1792, 975], [1798, 975], [1798, 970]]}, "center": {"56-166, T:0-1": [1795, 973]}},
{"id": "twshfn", "name": "TELECOM Nancy logo", "description": "TELECOM Nancy is a french engineering school in computing and digital science. Its logo is merged with a duck, The unofficial emblem of the school.", "links": {"website": ["https://telecomnancy.univ-lorraine.fr/?lang=en"]}, "path": {"109-166, T:0-1": [[1704, 1601], [1713, 1601], [1713, 1613], [1704, 1613]]}, "center": {"109-166, T:0-1": [1709, 1607]}},
{"id": "twsh69", "name": "David Bowie", "description": "A small homage to David Bowie, with the first 2 initials of his name.", "links": {"subreddit": ["DavidBowie"]}, "path": {"109-165, T:0-1": [[864, 1268], [864, 1272], [875, 1272], [875, 1268], [872, 1268]]}, "center": {"109-165, T:0-1": [870, 1270]}},
@@ -1708,7 +1702,7 @@
{"id": "twsbwj", "name": "Blebs", "description": "Blebs are emotes of YouTuber and Twitch streamer Harry Marshall (Hrry), a member of The Yogscast. His community is also known as the Blebs.", "links": {"website": ["http://www.youtube.com/user/VeteranHarry", "https://www.twitch.tv/hrry", "https://yogscast.fandom.com/wiki/Harry_Marshall"], "subreddit": ["hrry"]}, "path": {"2-166, T:0-1": [[378, 549], [412, 549], [412, 583], [378, 583]]}, "center": {"2-166, T:0-1": [395, 566]}},
{"id": "twsbt2", "name": "Lucky Luke", "description": "Lucky Luke, The man who shoots faster than his shadow, a famous Belgian bande dessinée character created by Morris. Lucky Luke is always chasing the brother Dalton among other adventures in the midwest, with his faithful steed Jolly Jumper.", "links": {"website": ["https://en.wikipedia.org/wiki/Lucky_Luke"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-165, T:0-1": [[1297, 1013], [1308, 1008], [1316, 1013], [1320, 1002], [1326, 1001], [1330, 1004], [1330, 1008], [1318, 1023], [1309, 1023], [1313, 1027], [1317, 1041], [1312, 1042], [1313, 1053], [1303, 1053], [1302, 1038], [1296, 1038]]}, "center": {"109-165, T:0-1": [1310, 1025]}},
{"id": "twsbqf", "name": "Marvel", "description": "A section full of logos of popular Marvel teams and superheroes.", "links": {"website": ["https://marvel.com"], "subreddit": ["Marvel_Place"]}, "path": {"109-166, T:0-1": [[954, 1722], [977, 1722], [977, 1721], [978, 1720], [979, 1719], [982, 1719], [984, 1721], [986, 1719], [1007, 1719], [1008, 1715], [1008, 1707], [1001, 1701], [1001, 1697], [999, 1693], [996, 1691], [996, 1678], [990, 1678], [989, 1681], [981, 1682], [981, 1689], [955, 1688], [954, 1690], [954, 1695]]}, "center": {"109-166, T:0-1": [979, 1704]}},
-{"id": "twsb2h", "name": "MF DOOM", "description": "Daniel Dumile, most known by his stage name MF DOOM. Legendary underground rapper. Your favourite rapper's favourite rapper. He died on October 31, 2020, but it wasn't until December 31, 2020 when his death was publicly announced. Always remember, all caps when you spell the man's name!", "links": {"website": ["https://www.youtube.com/watch?v=zQ0yXh_ADlQ&list=PL9dk_xtWpAkKs1-EKcvq-nKwdaaS-3czd"], "subreddit": ["mfdoom"]}, "path": {"56-166, T:0-1": [[1589, 880], [1605, 880], [1606, 907], [1588, 907]]}, "center": {"56-166, T:0-1": [1597, 894]}},
+{"id": "twsb2h", "name": "MF DOOM", "description": "Daniel Dumile, most known by his stage name MF DOOM, is a legendary underground rapper and your favourite rapper's favourite rapper. He died on October 31, 2020, but it wasn't until December 31, 2020 when his death was publicly announced via an Instagram post. DOOM was always an enigmatic figure, so this felt fully in-character for the villain. Always remember, all caps when you spell the man's name!", "links": {"website": ["https://www.gasdrawls.com/", "https://www.youtube.com/watch?v=zQ0yXh_ADlQ&list=PL9dk_xtWpAkKs1-EKcvq-nKwdaaS-3czd", "https://en.wikipedia.org/wiki/MF_Doom"], "subreddit": ["mfdoom"]}, "path": {"56-166, T:0-1": [[1588, 879], [1606, 879], [1606, 907], [1588, 907]]}, "center": {"56-166, T:0-1": [1597, 900]}},
{"id": "twsazy", "name": "Lil' guy", "description": "Look at the little guy.", "links": {}, "path": {"91-166, T:0-1": [[302, 722], [302, 717], [310, 717], [310, 722]]}, "center": {"91-166, T:0-1": [306, 720]}},
{"id": "twsafs", "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.\n\nThe Fourth Doctor, Tom Baker, stands in the doorway of this TARDIS, holding his iconic sonic screwdriver.", "links": {"website": ["https://en.wikipedia.org/wiki/TARDIS", "https://www.doctorwho.tv/", "https://en.wikipedia.org/wiki/Doctor_Who"], "subreddit": ["doctorwho", "ukplace", "unitedkingdom"]}, "path": {"113-121": [[657, 477], [649, 485], [649, 486], [650, 487], [650, 500], [649, 500], [649, 504], [665, 504], [665, 500], [664, 500], [664, 487], [665, 486], [665, 485]], "144-165, T:0-1": [[650, 476], [647, 479], [647, 480], [645, 480], [641, 483], [641, 484], [642, 485], [642, 503], [641, 504], [641, 506], [659, 506], [659, 505], [662, 505], [664, 503], [664, 485], [662, 483], [659, 483], [655, 480], [653, 480], [653, 479]]}, "center": {"113-121": [657, 492], "144-165, T:0-1": [653, 493]}},
{"id": "twsact", "name": "Dusolulu", "description": "Dusolulu is a conpidgin, a simplified constructed language. It is inspired by the conpidgin Viossa.", "links": {"subreddit": ["dusolulu"]}, "path": {"56-166, T:0-1": [[763, 288], [760, 291], [760, 294], [763, 297], [766, 297], [769, 294], [769, 291], [766, 288]]}, "center": {"56-166, T:0-1": [765, 293]}},
@@ -1722,8 +1716,8 @@
{"id": "twurgh", "name": "No mana's logo", "description": "Old logo of no mana.\n\nNo mana is a Californian electronic music producer, DJ, and musician. He mainly produces progressive house music and other genres of electronic music.", "links": {"website": ["https://ihavenomanas.com/"], "subreddit": ["nomana"]}, "path": {"109-166, T:0-1": [[716, 1735], [735, 1735], [735, 1751], [716, 1751]]}, "center": {"109-166, T:0-1": [726, 1743]}},
{"id": "twur7u", "name": "Gorgc Okayeg", "description": "A Hoboeg emote made for the dota community's favourite hobo : Gorgc n", "links": {"website": ["https://www.twitch.tv/gorgc"], "subreddit": ["gorgc"]}, "path": {"109-166, T:0-1": [[1591, 1000], [1645, 1000], [1645, 1043], [1591, 1043]]}, "center": {"109-166, T:0-1": [1618, 1022]}},
{"id": "twuqxa", "name": "Dance Dance Revolution", "description": "Dance Dance Revolution is a rhythm game series created by Konami in 1998. It spawned clones and simulators such as Pump It Up, StepMania, In The Groove, StepManiaX, Friday Night Funkin', and more.", "links": {"website": ["https://p.eagate.573.jp/game/ddr/", "https://en.wikipedia.org/wiki/Dance_Dance_Revolution"], "subreddit": ["DanceDanceRevolution"]}, "path": {"8-76, 82-165, T:0-1": [[776, 688], [768, 696], [776, 704], [784, 696]]}, "center": {"8-76, 82-165, T:0-1": [776, 696]}},
-{"id": "twuqvr", "name": "Golden axe", "description": "A golden axe is a representation of Hoshimachi Suisei, a Japanese VTuber under the 0th generation of Hololive. The golden axe originates from a meme that she acted as a psychopath while killing her fellow Hololive members with a golden axe in the game Project Winter, hence also granted a nickname, 'Suicopath'. Be careful as the golden axe can be right behind you at any time!", "links": {"website": ["https://en.hololive.tv/portfolio/items/hoshimachi-suisei"], "subreddit": ["HoshimachiSuisei", "Hololive"]}, "path": {"56-166, T:0-1": [[1337, 912], [1335, 914], [1333, 919], [1332, 920], [1332, 923], [1333, 923], [1335, 921], [1335, 920], [1336, 919], [1338, 919], [1341, 916], [1341, 915], [1338, 912]]}, "center": {"56-166, T:0-1": [1336, 917]}},
-{"id": "twuqvi", "name": "Watamelon", "description": "The pun meme version of Hololive Japan 4th Generation VTuber Tsunomaki Watame where her entire sheep body is inside a watermelon. She is a crafty sheep.", "links": {"website": ["https://www.youtube.com/channel/UCqm3BQLlJfvkTsX_hvm0UmA"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1400, 1095], [1401, 1095], [1411, 1099], [1416, 1101], [1416, 1120], [1399, 1120], [1399, 1117], [1397, 1115], [1401, 1113], [1401, 1111], [1397, 1108], [1397, 1105], [1398, 1104], [1398, 1101], [1397, 1099], [1397, 1095]]}, "center": {"109-165, T:0-1": [1407, 1108]}},
+{"id": "twuqvr", "name": "Golden axe", "description": "A golden axe is a representation of Hoshimachi Suisei, a Japanese VTuber under the 0th generation of Hololive. The golden axe originates from a meme that she acted as a psychopath while killing her fellow Hololive members with a golden axe in the game Project Winter, hence also granted a nickname, 'Suicopath'. Be careful as the golden axe can be right behind you at any time!", "links": {"website": ["https://en.hololive.tv/portfolio/items/hoshimachi-suisei"], "subreddit": ["HoshimachiSuisei", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1337, 912], [1335, 914], [1333, 919], [1332, 920], [1332, 923], [1333, 923], [1335, 921], [1335, 920], [1336, 919], [1338, 919], [1341, 916], [1341, 915], [1338, 912]]}, "center": {"56-166, T:0-1": [1336, 917]}},
+{"id": "twuqvi", "name": "Watamelon", "description": "The pun meme version of Hololive Japan 4th Generation VTuber Tsunomaki Watame where her entire sheep body is inside a watermelon. She is a crafty sheep.", "links": {"website": ["https://www.youtube.com/channel/UCqm3BQLlJfvkTsX_hvm0UmA"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1400, 1095], [1401, 1095], [1411, 1099], [1416, 1101], [1416, 1120], [1399, 1120], [1399, 1117], [1397, 1115], [1401, 1113], [1401, 1111], [1397, 1108], [1397, 1105], [1398, 1104], [1398, 1101], [1397, 1099], [1397, 1095]]}, "center": {"109-165, T:0-1": [1407, 1108]}},
{"id": "twuqf8", "name": "drakeoffc", "description": "drakeoffc is a Russian streamer. This art includes drakeoffc's avatar along with some other local Russian memes.", "links": {"website": ["https://twitch.tv/drakeoffc"], "subreddit": ["89SQUAD89"]}, "path": {"56-166, T:0-1": [[1891, 588], [1999, 588], [1999, 696], [1891, 696]]}, "center": {"56-166, T:0-1": [1945, 642]}},
{"id": "twupzc", "name": "Our World of Pixels", "description": "A link to the game \"Our World of Pixels\". This is a web-based sandbox game in which players (or cursors) are presented with a set of tools which anyone can draw and/or explore with other people.", "links": {"website": ["http://owop.me"], "subreddit": ["OurWorldOfPixels"]}, "path": {"109-166, T:0-1": [[646, 1375], [682, 1376], [683, 1384], [646, 1384]]}, "center": {"109-166, T:0-1": [664, 1380]}},
{"id": "twupuc", "name": "H cult", "description": "A few notable members from a private Discord server called \"H cult\".", "links": {}, "path": {"109-166, T:0-1": [[545, 1788], [545, 1796], [544, 1796], [544, 1800], [543, 1801], [543, 1803], [541, 1803], [539, 1805], [539, 1808], [540, 1808], [540, 1809], [539, 1810], [539, 1811], [538, 1812], [538, 1821], [533, 1821], [532, 1822], [530, 1822], [530, 1823], [528, 1823], [528, 1822], [526, 1822], [526, 1828], [536, 1828], [536, 1825], [537, 1825], [537, 1822], [536, 1822], [536, 1821], [538, 1821], [538, 1816], [549, 1816], [549, 1788]]}, "center": {"109-166, T:0-1": [542, 1810]}},
@@ -1744,7 +1738,7 @@
{"id": "twunmj", "name": "Karhu", "description": "Karhu is a Finnish beer brand. The name Karhu directly translates to \"bear\" in English.\n\nAlcohol is a big part of the Finnish culture, and Karhu is one of the best known alcohol/beer brands in Finland.", "links": {"website": ["https://www.karhu.fi/", "https://en.wikipedia.org/wiki/Karhu_(beer)"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"99-166, T:0-1": [[564, 203], [564, 218], [565, 230], [560, 234], [540, 235], [537, 233], [537, 203], [540, 202], [544, 205], [557, 205], [563, 202]]}, "center": {"99-166, T:0-1": [551, 221]}},
{"id": "twunm3", "name": "Cacabox", "description": "Cacabox is a French community of streamers, YouTubers, and Twitter users.", "links": {"website": ["https://www.youtube.com/channel/UC6izVPg2AiK83K-rqS6AgmA", "https://twitter.com/cacaboxtv"]}, "path": {"109-166, T:0-1": [[1387, 1261], [1387, 1279], [1445, 1279], [1445, 1261]]}, "center": {"109-166, T:0-1": [1416, 1270]}},
{"id": "twunc3", "name": "Rainbow Road", "description": "Rainbow Road is the final race track in all Mario Kart games.\n\nRainbow Road, returning from the first r/place and drawn by r/ainbowroad, was an initiative to draw a rainbow trail/road on the canvas and extend it as long as possible. Rainbow Road managed to span large swaths of the canvas in the earlier hours of r/place, though it was later confined to a more controlled area as other artworks defined their boundaries and filled the canvas.", "links": {"website": ["https://www.mariowiki.com/Rainbow_Road"], "subreddit": ["ainbowroad"]}, "path": {"94-124": [[1553, 274], [1553, 288], [1550, 290], [1550, 293], [1551, 294], [1551, 301], [1550, 302], [1537, 302], [1536, 301], [1511, 324], [1511, 330], [1509, 332], [1509, 335], [1506, 338], [1492, 354], [1496, 354], [1497, 353], [1503, 353], [1509, 358], [1509, 364], [1516, 364], [1517, 365], [1517, 376], [1525, 376], [1525, 352], [1552, 352], [1552, 337], [1608, 280], [1667, 280], [1670, 277], [1679, 277], [1685, 272], [1685, 260], [1689, 252], [1689, 228], [1677, 226], [1677, 212], [1660, 212], [1660, 215], [1646, 215], [1646, 210], [1634, 210], [1632, 212], [1628, 217], [1626, 217], [1626, 222], [1627, 222], [1627, 224], [1622, 224], [1617, 230], [1617, 235], [1615, 236], [1613, 236], [1613, 239], [1607, 246], [1607, 250], [1603, 250], [1603, 261], [1590, 261], [1583, 267], [1579, 267], [1579, 274]], "72-93": [[1554, 274], [1554, 292], [1551, 297], [1467, 382], [1467, 385], [1471, 388], [1472, 388], [1476, 379], [1480, 383], [1480, 388], [1476, 392], [1481, 401], [1485, 401], [1496, 390], [1496, 376], [1526, 376], [1526, 353], [1544, 353], [1552, 345], [1552, 336], [1558, 336], [1565, 329], [1565, 325], [1567, 323], [1572, 323], [1572, 319], [1586, 319], [1586, 308], [1600, 308], [1600, 295], [1603, 295], [1603, 280], [1616, 280], [1620, 278], [1637, 276], [1642, 282], [1666, 282], [1672, 276], [1680, 276], [1684, 273], [1689, 249], [1689, 228], [1674, 228], [1674, 212], [1713, 212], [1696, 195], [1681, 212], [1660, 212], [1660, 215], [1646, 215], [1638, 213], [1633, 213], [1629, 217], [1629, 224], [1623, 224], [1621, 228], [1615, 228], [1615, 236], [1607, 251], [1598, 251], [1572, 274]], "56-71": [[1661, 192], [1282, 572], [1226, 516], [1223, 522], [1272, 570], [1279, 570], [1286, 576], [1485, 393], [1522, 362], [1545, 348], [1562, 332], [1562, 330], [1572, 330], [1572, 319], [1586, 319], [1586, 309], [1597, 309], [1596, 300], [1603, 293], [1603, 280], [1612, 280], [1631, 256], [1659, 217], [1660, 199], [1675, 212], [1685, 212], [1689, 208], [1703, 208], [1707, 212], [1712, 212], [1712, 211], [1696, 195], [1680, 211]], "125-165, T:0-1": [[1515, 375], [1515, 376], [1526, 376], [1526, 354], [1551, 352], [1553, 336], [1570, 336], [1572, 320], [1574, 319], [1574, 298], [1582, 299], [1583, 308], [1595, 307], [1595, 281], [1638, 279], [1683, 279], [1684, 260], [1689, 257], [1689, 228], [1679, 227], [1679, 222], [1676, 219], [1677, 213], [1647, 213], [1642, 215], [1637, 213], [1632, 215], [1630, 216], [1628, 219], [1630, 225], [1629, 229], [1627, 228], [1626, 224], [1617, 229], [1615, 237], [1614, 240], [1615, 247], [1616, 248], [1611, 249], [1608, 249], [1608, 253], [1604, 254], [1604, 258], [1603, 261], [1607, 262], [1606, 268], [1597, 268], [1597, 274], [1553, 274], [1553, 279], [1513, 279], [1515, 283], [1513, 288], [1513, 293], [1516, 296], [1518, 296], [1526, 288], [1528, 288], [1528, 290], [1526, 293], [1526, 295], [1529, 295], [1529, 297], [1532, 300], [1532, 302], [1531, 303], [1528, 303], [1528, 306], [1511, 323], [1505, 323], [1498, 325], [1498, 326], [1516, 326], [1516, 359], [1515, 360]]}, "center": {"94-124": [1651, 247], "72-93": [1649, 248], "56-71": [1581, 294], "125-165, T:0-1": [1654, 248]}},
-{"id": "twunbl", "name": "Uber Sheep", "description": "A poster distributed by Hololive Japan 4th Generation VTuber Tsunomaki Watame on the Hololive Minecraft server. It depicts Watame wearing a watermelon helmet and riding a moped to deliver food, likely the dish Jingisukan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/tsunomaki-watame"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1299, 1124], [1320, 1124], [1322, 1122], [1322, 1120], [1329, 1113], [1328, 1112], [1327, 1113], [1326, 1113], [1325, 1114], [1324, 1115], [1323, 1115], [1322, 1116], [1321, 1116], [1320, 1117], [1318, 1117], [1317, 1118], [1316, 1118], [1316, 1116], [1317, 1115], [1318, 1115], [1319, 1114], [1319, 1102], [1320, 1101], [1320, 1097], [1321, 1096], [1321, 1094], [1320, 1093], [1322, 1093], [1324, 1091], [1325, 1091], [1326, 1090], [1327, 1089], [1327, 1088], [1325, 1086], [1321, 1086], [1322, 1086], [1323, 1085], [1325, 1083], [1323, 1081], [1321, 1081], [1322, 1080], [1322, 1077], [1321, 1076], [1321, 1068], [1320, 1067], [1320, 1066], [1319, 1065], [1318, 1064], [1317, 1064], [1316, 1063], [1315, 1063], [1314, 1062], [1302, 1062], [1301, 1063], [1300, 1063], [1299, 1064], [1298, 1065], [1297, 1066], [1296, 1068], [1295, 1069], [1295, 1076], [1294, 1077], [1294, 1080], [1295, 1081], [1293, 1081], [1292, 1082], [1291, 1083], [1292, 1084], [1294, 1086], [1295, 1086], [1291, 1086], [1289, 1088], [1289, 1089], [1291, 1091], [1292, 1091], [1294, 1093], [1297, 1093], [1296, 1093], [1296, 1102], [1297, 1102], [1297, 1114], [1298, 1115], [1299, 1115], [1300, 1116], [1300, 1118], [1299, 1117], [1295, 1117], [1290, 1113], [1289, 1114], [1289, 1115], [1290, 1116], [1290, 1118], [1291, 1118], [1291, 1119], [1292, 1120], [1293, 1120], [1294, 1121], [1295, 1121], [1296, 1123], [1298, 1123]]}, "center": {"109-165, T:0-1": [1308, 1093]}},
+{"id": "twunbl", "name": "Uber Sheep", "description": "A poster distributed by Hololive Japan 4th Generation VTuber Tsunomaki Watame on the Hololive Minecraft server. It depicts Watame wearing a watermelon helmet and riding a moped to deliver food, likely the dish Jingisukan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/tsunomaki-watame"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1299, 1124], [1320, 1124], [1322, 1122], [1322, 1120], [1329, 1113], [1328, 1112], [1327, 1113], [1326, 1113], [1325, 1114], [1324, 1115], [1323, 1115], [1322, 1116], [1321, 1116], [1320, 1117], [1318, 1117], [1317, 1118], [1316, 1118], [1316, 1116], [1317, 1115], [1318, 1115], [1319, 1114], [1319, 1102], [1320, 1101], [1320, 1097], [1321, 1096], [1321, 1094], [1320, 1093], [1322, 1093], [1324, 1091], [1325, 1091], [1326, 1090], [1327, 1089], [1327, 1088], [1325, 1086], [1321, 1086], [1322, 1086], [1323, 1085], [1325, 1083], [1323, 1081], [1321, 1081], [1322, 1080], [1322, 1077], [1321, 1076], [1321, 1068], [1320, 1067], [1320, 1066], [1319, 1065], [1318, 1064], [1317, 1064], [1316, 1063], [1315, 1063], [1314, 1062], [1302, 1062], [1301, 1063], [1300, 1063], [1299, 1064], [1298, 1065], [1297, 1066], [1296, 1068], [1295, 1069], [1295, 1076], [1294, 1077], [1294, 1080], [1295, 1081], [1293, 1081], [1292, 1082], [1291, 1083], [1292, 1084], [1294, 1086], [1295, 1086], [1291, 1086], [1289, 1088], [1289, 1089], [1291, 1091], [1292, 1091], [1294, 1093], [1297, 1093], [1296, 1093], [1296, 1102], [1297, 1102], [1297, 1114], [1298, 1115], [1299, 1115], [1300, 1116], [1300, 1118], [1299, 1117], [1295, 1117], [1290, 1113], [1289, 1114], [1289, 1115], [1290, 1116], [1290, 1118], [1291, 1118], [1291, 1119], [1292, 1120], [1293, 1120], [1294, 1121], [1295, 1121], [1296, 1123], [1298, 1123]]}, "center": {"109-165, T:0-1": [1308, 1093]}},
{"id": "twuna6", "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": {"44-54": [[554, 242], [554, 254], [568, 254], [568, 242]], "63-132": [[1512, 413], [1531, 413], [1531, 427], [1512, 427]], "133-163": [[1512, 407], [1512, 427], [1531, 427], [1531, 414], [1525, 414], [1525, 407]], "164, T:0-1": [[1512, 414], [1512, 427], [1531, 427], [1531, 414]]}, "center": {"44-54": [561, 248], "63-132": [1522, 420], "133-163": [1519, 419], "164, T:0-1": [1522, 421]}},
{"id": "twun9j", "name": "Ween", "description": "A reference to the band Ween. The logo depicted is the trademark logo of the band, first used on their debut mainstream project God Ween Satan: The Oneness", "links": {"subreddit": ["ween"]}, "path": {"109-165, T:0-1": [[1219, 1278], [1220, 1266], [1227, 1271], [1235, 1274], [1245, 1270], [1269, 1261], [1271, 1259], [1272, 1278]]}, "center": {"109-165, T:0-1": [1250, 1272]}},
{"id": "twumiq", "name": "Philippines Base Charlie", "description": "Mindanao base, named 'Base Charlie', a place for the people of r/Philippines to express their artwork after being invaded multiple times by streamers.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"], "subreddit": ["Philippines"]}, "path": {"109-165, T:0-1": [[352, 1600], [460, 1601], [461, 1675], [352, 1675], [352, 1601]]}, "center": {"109-165, T:0-1": [406, 1638]}},
@@ -1797,7 +1791,7 @@
{"id": "twuemn", "name": "Kienlabadao's Logo", "description": "This is Kienlabadao's original logo that was made for a long time ago and it's still being used nowadays. Without help from u/ccc3593, Their friends, and MapINK community (both are beside the logo), This wouldn't exist on r/place.", "links": {"website": ["https://www.youtube.com/watch?v=LFTPEBLAYi0"]}, "path": {"109-166, T:0-1": [[54, 1258], [62, 1258], [62, 1266], [54, 1266]]}, "center": {"109-166, T:0-1": [58, 1262]}},
{"id": "twuehw", "name": "Surprised Pikachu", "description": "Surprised Pikachu is a meme from the Pokémon anime depicting main character Pikachu with an open mouth as if in surprise. It is used to express ironic surprise at foreseeable outcomes.", "links": {"website": ["https://knowyourmeme.com/memes/surprised-pikachu"], "subreddit": ["placepikachu", "Pikachuplace"]}, "path": {"148-165, T:0-1": [[492, 503], [492, 507], [494, 509], [494, 513], [496, 513], [496, 514], [501, 514], [501, 513], [507, 513], [507, 511], [509, 509], [509, 508], [507, 508], [505, 507], [505, 503]]}, "center": {"148-165, T:0-1": [499, 508]}},
{"id": "twudej", "name": "Vukovar water tower", "description": "The Vukovar water tower is a historic water tower in Vukovar, Croatia. It is a symbol of the Croatian War of Independence, where it was heavily damaged along with the rest of Vukovar.\n\nThe background of this art features Croatia's signature red-and-white checkerboard pattern.", "links": {"website": ["https://en.wikipedia.org/wiki/Vukovar_water_tower"], "subreddit": ["croatia"]}, "path": {"108-128": [[432, 910], [432, 984], [448, 984], [448, 910]], "96-104": [[432, 909], [432, 1000], [448, 1000], [448, 909]], "45-47": [[425, 888], [419, 891], [422, 896], [422, 902], [423, 903], [423, 910], [431, 910], [431, 903], [432, 902], [432, 897], [434, 891], [433, 890], [428, 888]], "137-166, T:0-1": [[432, 910], [432, 961], [448, 961], [448, 910]]}, "center": {"108-128": [440, 947], "96-104": [440, 955], "45-47": [427, 894], "137-166, T:0-1": [440, 936]}},
-{"id": "twuddv", "name": "Uruha Rushia", "description": "A former talent for Hololive's 3rd generation (FANTASY) who debuted on July 18, 2019 and remained active until her termination on February 24, 2022. In tribute to her legacy, she is placed here as commemoration. Remember, she is not pettan as she is boing boing.", "links": {"website": ["https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1425, 1066], [1401, 1066], [1400, 1067], [1399, 1068], [1399, 1070], [1400, 1071], [1399, 1072], [1398, 1073], [1401, 1074], [1400, 1075], [1399, 1078], [1400, 1079], [1401, 1080], [1400, 1081], [1399, 1083], [1397, 1085], [1397, 1087], [1400, 1088], [1405, 1088], [1405, 1089], [1416, 1089], [1417, 1089], [1417, 1090], [1422, 1090], [1422, 1095], [1422, 1083], [1422, 1072], [1426, 1072], [1425, 1071], [1426, 1069], [1426, 1067], [1425, 1067]]}, "center": {"109-165, T:0-1": [1411, 1077]}},
+{"id": "twuddv", "name": "Uruha Rushia", "description": "A former talent for Hololive's 3rd generation (FANTASY) who debuted on July 18, 2019 and remained active until her termination on February 24, 2022. In tribute to her legacy, she is placed here as commemoration. Remember, she is not pettan as she is boing boing.", "links": {"website": ["https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1425, 1066], [1401, 1066], [1400, 1067], [1399, 1068], [1399, 1070], [1400, 1071], [1399, 1072], [1398, 1073], [1401, 1074], [1400, 1075], [1399, 1078], [1400, 1079], [1401, 1080], [1400, 1081], [1399, 1083], [1397, 1085], [1397, 1087], [1400, 1088], [1405, 1088], [1405, 1089], [1416, 1089], [1417, 1089], [1417, 1090], [1422, 1090], [1422, 1095], [1422, 1083], [1422, 1072], [1426, 1072], [1425, 1071], [1426, 1069], [1426, 1067], [1425, 1067]]}, "center": {"109-165, T:0-1": [1411, 1077]}},
{"id": "twud5d", "name": "Ezekiel_III", "description": "Zeke, as he's known to his fans, is a well known Twitch streamer and stage host, and one of the hosts of the Dropped Frames Podcast.", "links": {"website": ["https://www.twitch.tv/ezekiel_iii"], "subreddit": ["zekeonia"]}, "path": {"109-166, T:0-1": [[1089, 1930], [1089, 1909], [1070, 1909], [1070, 1930]]}, "center": {"109-166, T:0-1": [1080, 1920]}},
{"id": "twucmk", "name": "Skis and ski poles", "description": "Skis are particularly iconic for northeners and especially Norwegians. It is said that all Norwegians are born with skis on their feet.", "links": {"website": ["https://en.wikipedia.org/wiki/Ski"], "subreddit": ["place_nordicunion", "Norge"]}, "path": {"113-165, T:0-1": [[419, 46], [419, 48], [417, 50], [415, 50], [415, 52], [408, 59], [404, 59], [404, 63], [403, 63], [403, 66], [406, 66], [406, 67], [409, 70], [415, 70], [416, 71], [417, 71], [418, 70], [424, 70], [424, 69], [428, 69], [428, 65], [435, 58], [437, 58], [437, 56], [439, 54], [441, 54], [441, 50], [436, 50], [436, 48], [429, 48], [429, 47], [423, 47], [423, 46]]}, "center": {"113-165, T:0-1": [422, 58]}},
{"id": "twucgo", "name": "National Basketball Association", "description": "The National Basketball Association (NBA) is an American professional basketball league. The character in the middle is a reference to the NBA logo, the 75 on the top-right part is a reference to the 75th anniversary of the NBA in 2022, and the little jersey with number 24 on the bottom right of the picture is the jersey of Kobe Bryant, a famous Lakers player who died in 2020.", "links": {"website": ["http://www.nba.com/", "https://en.wikipedia.org/wiki/National_Basketball_Association"], "subreddit": ["nba"]}, "path": {"81-96": [[1792, 236], [1782, 246], [1782, 249], [1787, 254], [1787, 257], [1783, 257], [1781, 259], [1781, 274], [1783, 276], [1786, 276], [1788, 274], [1788, 256], [1793, 262], [1794, 262], [1794, 255], [1792, 255], [1792, 251], [1793, 247], [1797, 243], [1800, 242], [1814, 242], [1818, 245], [1815, 255], [1815, 261], [1816, 261], [1827, 249], [1827, 246], [1817, 236]], "113-165, T:0-1": [[745, 1483], [781, 1483], [781, 1512], [745, 1512]]}, "center": {"81-96": [1788, 248], "113-165, T:0-1": [763, 1498]}},
@@ -1807,7 +1801,7 @@
{"id": "twuber", "name": "Shark3ozero", "description": "Shark3ozero is a lefty political streamer.", "links": {"website": ["https://www.sharky.cc"]}, "path": {"114-138": [[708, 238], [708, 250], [731, 250], [731, 238]], "77-91": [[751, 262], [751, 270], [786, 270], [786, 262]], "139-154, 158-166, T:0-1": [[707, 238], [752, 238], [752, 250], [707, 250]]}, "center": {"114-138": [720, 244], "77-91": [769, 266], "139-154, 158-166, T:0-1": [730, 244]}},
{"id": "twub6g", "name": "Vitality", "description": "The Vitality Bee Logo", "links": {"website": ["https://vitality.gg/"]}, "path": {"109-164, T:0-1": [[309, 1608], [309, 1595], [316, 1595], [316, 1594], [320, 1594], [320, 1595], [322, 1595], [322, 1596], [323, 1596], [323, 1608]]}, "center": {"109-164, T:0-1": [316, 1601]}},
{"id": "twub44", "name": "FL Studio logo", "description": "Unfinished version of the digital audio Workstation software FL Studio. Due to pressure from the flag above and the Zzz Software advert, The icon could not be finished in time.", "links": {"website": ["https://www.image-line.com/fl-studio/"], "subreddit": ["flstudio"]}, "path": {"109-166, T:0-1": [[1515, 1986], [1510, 1994], [1506, 1993], [1504, 1991], [1503, 1986]]}, "center": {"109-166, T:0-1": [1508, 1989]}},
-{"id": "twuaw3", "name": "Watamate", "description": "Watamate (sheep) is the mascot and fanbase name of Hololive VTuber Tsunomaki Watame. May or may not be used as emergency food.", "links": {"website": ["https://www.youtube.com/channel/UCqm3BQLlJfvkTsX_hvm0UmA", "https://virtualyoutuber.fandom.com/wiki/Tsunomaki_Watame"], "subreddit": ["Hololive"]}, "path": {"26-34": [[257, 816], [253, 820], [253, 824], [259, 830], [264, 830], [264, 828], [266, 828], [269, 824], [269, 820], [267, 818], [263, 816]], "42-166, T:0-1": [[252, 814], [249, 817], [249, 827], [252, 830], [257, 830], [257, 825], [258, 824], [258, 818], [255, 814]]}, "center": {"26-34": [261, 822], "42-166, T:0-1": [254, 822]}},
+{"id": "twuaw3", "name": "Watamate", "description": "Watamate (sheep) is the mascot and fanbase name of Hololive VTuber Tsunomaki Watame. May or may not be used as emergency food.", "links": {"website": ["https://www.youtube.com/channel/UCqm3BQLlJfvkTsX_hvm0UmA", "https://virtualyoutuber.fandom.com/wiki/Tsunomaki_Watame"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"26-34": [[257, 816], [253, 820], [253, 824], [259, 830], [264, 830], [264, 828], [266, 828], [269, 824], [269, 820], [267, 818], [263, 816]], "42-166, T:0-1": [[252, 814], [249, 817], [249, 827], [252, 830], [257, 830], [257, 825], [258, 824], [258, 818], [255, 814]]}, "center": {"26-34": [261, 822], "42-166, T:0-1": [254, 822]}},
{"id": "twuaqj", "name": "Scroom", "description": "A mushroom-like fictional race that appears in Monad Studio's old work, Rogue Lineage. They're also scattered around as a regular harvestable in said game.", "links": {"website": ["https://rogue-lineage.fandom.com/wiki/Scroom"], "subreddit": ["RogueLineage"]}, "path": {"109-165, T:0-1": [[406, 1389], [406, 1385], [401, 1385], [401, 1381], [402, 1381], [402, 1379], [404, 1379], [404, 1377], [406, 1377], [406, 1375], [412, 1375], [412, 1377], [414, 1377], [414, 1379], [416, 1379], [416, 1381], [417, 1381], [417, 1385], [412, 1385], [412, 1389]]}, "center": {"109-165, T:0-1": [409, 1382]}},
{"id": "twuali", "name": "r/placehearts", "description": "A group of people dedicated to placing hearts on the r/place canvas, dedicated to sharing a little bit of love for the weary traveller. This community returns from the 2017 r/place event.", "links": {"subreddit": ["placehearts"]}, "path": {"1-8": [[448, 738], [497, 738], [497, 746], [570, 746], [570, 762], [497, 762], [497, 767], [491, 773], [467, 773], [461, 767], [461, 762], [448, 762]], "9-166, T:0-1": [[448, 738], [497, 738], [497, 746], [570, 746], [570, 762], [448, 762]]}, "center": {"1-8": [481, 755], "9-166, T:0-1": [484, 750]}},
{"id": "twualf", "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"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"5-11": [[837, 312], [837, 360], [865, 360], [865, 312]], "20-164, T:0-1": [[872, 405], [875, 405], [877, 404], [880, 404], [882, 402], [886, 399], [891, 395], [892, 390], [895, 385], [893, 379], [891, 376], [887, 376], [882, 374], [877, 372], [871, 374], [869, 379], [869, 383], [870, 383], [870, 395], [871, 397], [871, 398], [869, 400], [869, 405]]}, "center": {"5-11": [851, 336], "20-164, T:0-1": [881, 386]}},
@@ -1833,7 +1827,7 @@
{"id": "twu7wt", "name": "Flag of Tunisia", "description": "Tunisia is a country in north Africa. This art depicts the Tunisian flag with Tunisian symbols.", "links": {"website": ["https://en.wikipedia.org/wiki/Tunisia", "https://en.wikipedia.org/wiki/Flag_of_Tunisia"], "subreddit": ["Tunisia"]}, "path": {"137-150": [[1867, 820], [1867, 830], [1920, 830], [1920, 796], [1917, 793], [1913, 793], [1910, 796], [1910, 799], [1898, 799], [1898, 820]], "96-136": [[1898, 799], [1898, 820], [1920, 820], [1920, 796], [1917, 793], [1913, 793], [1910, 796], [1910, 799]], "63-95": [[1898, 799], [1898, 820], [1920, 820], [1920, 799]], "56-62": [[1927, 817], [1927, 830], [1949, 830], [1949, 817]], "151-166, T:0-1": [[1898, 799], [1898, 820], [1867, 820], [1867, 832], [1916, 832], [1917, 831], [1918, 831], [1920, 829], [1920, 792], [1909, 792], [1909, 799]]}, "center": {"137-150": [1909, 817], "96-136": [1909, 809], "63-95": [1909, 810], "56-62": [1938, 824], "151-166, T:0-1": [1909, 810]}},
{"id": "twu7sh", "name": "Spyken", "description": "Spyken is a Swedish gymnasium (upper secondary/high school) in Lund, Sweden.", "links": {"website": ["https://lund.se/gymnasiewebbar/spyken", "https://en.wikipedia.org/wiki/Spyken"], "subreddit": ["Spyken"]}, "path": {"149-164, T:0-1": [[1101, 465], [1115, 465], [1115, 473], [1101, 473]]}, "center": {"149-164, T:0-1": [1108, 469]}},
{"id": "twu7ge", "name": "tanashar's worm", "description": "A cute worm designed by tanashar, a mod of the streamer hrry who works for Yogscast.", "links": {"subreddit": ["Yogscast", "hrry"]}, "path": {"109-166, T:0-1": [[1553, 1790], [1564, 1790], [1564, 1799], [1553, 1799]]}, "center": {"109-166, T:0-1": [1559, 1795]}},
-{"id": "twu753", "name": "Fachwerkshaus", "description": "Fachwerkshäuser (half-timbered house) depict a relatively old way of building houses, using wooden skeletal construction in the building process. Many of them were destroyed during World War II, but some are still preserved or have been reconstructed.", "links": {"website": ["https://en.wiktionary.org/wiki/Fachwerkhaus"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1542, 859], [1542, 869], [1567, 869], [1567, 858], [1568, 858], [1568, 850], [1571, 850], [1570, 849], [1569, 848], [1568, 847], [1567, 846], [1566, 845], [1565, 844], [1564, 843], [1564, 842], [1563, 842], [1562, 841], [1561, 840], [1560, 839], [1548, 839], [1548, 840], [1547, 841], [1546, 842], [1545, 843], [1544, 844], [1543, 845], [1542, 846], [1541, 847], [1540, 848], [1539, 849], [1539, 850], [1541, 850], [1541, 858]]}, "center": {"56-166, T:0-1": [1555, 855]}},
+{"id": "twu753", "name": "Fachwerkshaus", "description": "A Fachwerkshäus (half-timbered house) is a traditional way of building houses in Germany, using wooden skeletal construction in the building process. Many of them were destroyed during World War II, but some are still preserved or have been reconstructed.", "links": {"website": ["https://en.wiktionary.org/wiki/Fachwerkhaus"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"105-166, T:0-1": [[1549, 839], [1546, 842], [1545, 842], [1538, 849], [1538, 851], [1540, 851], [1540, 859], [1541, 859], [1541, 869], [1568, 869], [1568, 867], [1569, 866], [1569, 859], [1570, 858], [1570, 851], [1571, 850], [1571, 849], [1565, 843], [1564, 843], [1560, 839]]}, "center": {"105-166, T:0-1": [1555, 854]}},
{"id": "twu6zc", "name": "BLACKPINK", "description": "The biggest girl group in the world, BLACKPINK/블랙핑크 (stylized as BLΛƆKPIИK) is a four-member K-pop girl group by YG Entertainment, consisting of members Jisoo, Jennie, Rosé, and Lisa. The group debuted on August 8th, 2016. BLACKPINK is represented by Interscope Records and Universal Music Group outside of Asia.", "links": {"website": ["https://www.youtube.com/BLACKPINKOFFICIAL"], "subreddit": ["BlackPink", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[245, 926], [296, 926], [296, 937], [245, 937]]}, "center": {"1-166, T:0-1": [271, 932]}},
{"id": "twu6yn", "name": "Algorand", "description": "Algorand is a pure proof-of-stake blockchain cryptocurrency protocol with a consensus mechanism chosen for scalability, intending to solve the blockchain trilemma.", "links": {"website": ["https://www.algorand.com/", "https://en.wikipedia.org/wiki/Algorand"], "subreddit": ["algorand", "AlgorandOfficial"]}, "path": {"149-161": [[1723, 174], [1723, 205], [1748, 205], [1748, 174]], "65-148": [[1723, 174], [1723, 205], [1745, 205], [1745, 174]], "2-35": [[250, 262], [250, 299], [293, 299], [293, 262]], "59-64": [[1745, 165], [1745, 174], [1777, 174], [1777, 165]], "57-58": [[1746, 175], [1746, 183], [1764, 183], [1764, 175]]}, "center": {"149-161": [1736, 190], "65-148": [1734, 190], "2-35": [272, 281], "59-64": [1761, 170], "57-58": [1755, 179]}},
{"id": "twu6u1", "name": "Elybeatmaker", "description": "Elybeatmaker is a musician known for creating remixes featuring the vocals of Minecraft YouTubers.", "links": {"website": ["https://www.youtube.com/channel/UCZO_hYEMUyxvaPOYIUGmc-w", "https://hermitcraft.fandom.com/wiki/Elybeatmaker"], "subreddit": ["ElyBeatMaker", "Hermitcraft"]}, "path": {"61-165, T:0-1": [[852, 632], [852, 635], [851, 636], [852, 637], [852, 639], [859, 639], [859, 637], [860, 636], [859, 635], [859, 632]]}, "center": {"61-165, T:0-1": [856, 636]}},
@@ -1853,7 +1847,7 @@
{"id": "twu555", "name": "Port wine", "description": "Port wine (Portuguese: vinho de Porto) is a glorious wine from the north region of Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Port_wine"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"98-109": [[1025, 329], [1025, 340], [1022, 344], [1022, 360], [1032, 360], [1032, 344], [1029, 340], [1029, 329]], "110-165, T:0-1": [[1025, 329], [1025, 340], [1022, 344], [1022, 360], [1040, 360], [1040, 352], [1034, 352], [1034, 360], [1032, 360], [1032, 344], [1029, 340], [1029, 329]]}, "center": {"98-109": [1027, 348], "110-165, T:0-1": [1027, 347]}},
{"id": "twu4yt", "name": "r/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": {"subreddit": ["WEC"]}, "path": {"109-165, T:0-1": [[1361, 1278], [1384, 1278], [1384, 1275], [1385, 1275], [1385, 1272], [1386, 1272], [1386, 1270], [1363, 1270], [1363, 1273], [1362, 1273], [1362, 1276], [1361, 1276]]}, "center": {"109-165, T:0-1": [1374, 1274]}},
{"id": "twu4t3", "name": "Andalusian Flag", "description": "Autonomous community of Spain. Bedge is doing siesta.", "links": {"subreddit": ["Andalucia"]}, "path": {"109-165, T:0-1": [[1332, 999], [1332, 1042], [1402, 1043], [1402, 999]]}, "center": {"109-165, T:0-1": [1367, 1021]}},
-{"id": "twl492", "name": "FlareWheeze", "description": "An emote from the Hololive fan Discord server, featuring 不知火フレア (Shiranui Flare), member of the 3rd generation Hololive's Japan branch, well-known for her wheezing laugh, wheezing and headpatting yagoo.\n\nThe hearts around her represent her and her gen. mates (VTubers who debuted with her):\n\nShiranui Flare (orange heart)\nUsada Pekora (blue heart with rabbit ears)\nShirogane Noel (silver heart)\nHoushou Marine (red heart)\nUruha Rushia (green heart)\n\nArt source: https://twitter.com/Kiel_adair/status/1448446466935037952", "links": {"subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1366, 870], [1402, 870], [1402, 901], [1395, 901], [1393, 899], [1388, 899], [1388, 901], [1376, 901], [1376, 904], [1377, 904], [1377, 905], [1378, 905], [1378, 908], [1377, 908], [1377, 909], [1376, 909], [1376, 908], [1372, 908], [1372, 904], [1371, 904], [1370, 893], [1366, 895]]}, "center": {"56-166, T:0-1": [1384, 886]}},
+{"id": "twl492", "name": "FlareWheeze", "description": "FlareWheeze is an emote from the fan Discord server of VTuber agency Hololive. The emote features 不知火フレア (Shiranui Flare), amember of the 3rd generation Hololive's Japan branch well-known for her wheezing laugh, wheezing, and head-patting YAGOO. The hearts around her represent her and her gen. mates (VTubers who debuted with her):\nShiranui Flare (orange heart)\nUsada Pekora (blue heart with rabbit ears)\nShirogane Noel (silver heart)\nHoushou Marine (red heart)\nUruha Rushia (green heart)", "links": {"website": ["https://twitter.com/Kiel_adair/status/1448446466935037952", "https://en.hololive.tv/portfolio/items/shiranui-flare", "https://virtualyoutuber.fandom.com/wiki/Shiranui_Flare"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"57-166, T:0-1": [[1365, 869], [1365, 896], [1367, 896], [1369, 894], [1369, 899], [1370, 899], [1370, 903], [1376, 910], [1377, 910], [1379, 908], [1376, 904], [1376, 900], [1378, 902], [1388, 902], [1390, 900], [1393, 900], [1395, 902], [1403, 902], [1403, 869]]}, "center": {"57-166, T:0-1": [1383, 885]}},
{"id": "twwjcz", "name": "Amber's bow", "description": "A red bow as a small reference to the bow the character Amber from the game Genshin Impact normally wears on her head (rebuilt by the Belgian community after their flag expansion bulldozed a previous instance).", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Amber"], "subreddit": ["ambermains"]}, "path": {"109-166, T:0-1": [[1318, 1737], [1312, 1733], [1313, 1727], [1318, 1727], [1322, 1732], [1328, 1729], [1331, 1729], [1330, 1734], [1329, 1736], [1324, 1738]]}, "center": {"109-166, T:0-1": [1321, 1733]}},
{"id": "twwj6t", "name": "Every Child Matters", "description": "Every Child Matters is a movement used to spread awareness of the injustices of Canada's Indian residential school system, a former system of schools used by the Canadian government to indoctrinate indigenous children with Christian values. The system was detrimental to traditional Canadian Indian culture and has been classified as cultural genocide. Many children died in the schools, evidenced by the discoveries of mass unmarked graves of over 1,000 indigenous children in Canada.", "links": {"website": ["https://www.rcrg.org/every-child-matters", "https://en.wikipedia.org/wiki/Canadian_Indian_residential_school_system"], "subreddit": ["placecanada", "canada"]}, "path": {"12-166, T:0-1": [[226, 547], [226, 528], [193, 528], [193, 547]]}, "center": {"12-166, T:0-1": [210, 538]}},
{"id": "twwj0h", "name": "Irmão do Jorel", "description": "Irmão do Jorel (Jorel's Brother) is the main character of the Brazilian animated TV series of the same name. The series debuted on September, 2014.", "links": {"website": ["https://www.cartoonnetwork.com.br/show/irmao-do-jorel"], "subreddit": ["brasil"]}, "path": {"109-166, T:0-1": [[1414, 1779], [1422, 1779], [1420, 1776], [1422, 1775], [1420, 1772], [1424, 1771], [1426, 1766], [1425, 1762], [1422, 1758], [1413, 1757], [1409, 1763], [1408, 1768], [1411, 1771], [1414, 1773], [1412, 1774], [1414, 1777], [1413, 1778]]}, "center": {"109-166, T:0-1": [1417, 1767]}},
@@ -1865,7 +1859,7 @@
{"id": "twwi1z", "name": "La Comarca de Duende Pablo", "description": "La Comarca is the community of the elderly bearded streamer known as Duende Carlos. This piece of art was built based on bloody wars and political alliances by the comarqueros soldiers commanded by Commander Giuz09. The final piece of art is made up of the houses of La Comarca. Below, Duende hugs his girlfriend Chilvi next to the writing La Comarca. We had casualties, like Lieutenant Pola who was 3 pixels away from ending his life. Twitch: https://www.twitch.tv/duendepablo", "links": {"subreddit": ["LaComerca"], "discord": ["duende"]}, "path": {"109-166, T:0-1": [[1294, 1834], [1294, 1816], [1365, 1818], [1365, 1841], [1348, 1841], [1345, 1835]]}, "center": {"109-166, T:0-1": [1331, 1827]}},
{"id": "twwhwx", "name": "Vore flag", "description": "The flag for vorarephilia (vore), the erotic desire to consume or be consumed by someone.", "links": {"website": ["https://en.wikipedia.org/wiki/Vorarephilia"], "subreddit": ["Vore"]}, "path": {"162-163": [[454, 503], [454, 505], [453, 505], [453, 509], [457, 509], [457, 503]], "105-111": [[1886, 533], [1886, 539], [1892, 539], [1893, 538], [1904, 538], [1904, 532], [1900, 532], [1899, 533]]}, "center": {"162-163": [455, 506], "105-111": [1889, 536]}},
{"id": "twwhkl", "name": "Alexby11", "description": "Alexby11 is a Spanish Twitch streamer and YouTuber. In the image, his community has created icons representative of his Twitch channel (love icon and H logo), a rat (what he calls his community), and a crown representing Alexby's status as king of the rats. His late dog Max is pictured below. The lightsaber from the movie series Star Wars represents Alexby being a huge fan of the series.\n\nAlso included is his half-lobster Aroyitt (Aro), with a heart, a key, and two Among Us crewmates referencing the way they met. 16:16 is the minute in which the two appear to kiss on a live show hosted by fellow streamer AgentMaxo. The pairing of Alexby and Aroyitt is known as Aroxby.", "links": {"website": ["https://www.twitch.tv/alexby11", "https://www.youtube.com/channel/UCh715KhLM7vbOwozSXLWI_w"], "subreddit": ["aLexBY_11", "Alexby11"]}, "path": {"129-161": [[1882, 443], [1882, 490], [1903, 490], [1903, 501], [1926, 501], [1926, 443]], "95-128": [[1882, 443], [1882, 490], [1905, 490], [1905, 497], [1923, 497], [1923, 490], [1926, 490], [1926, 443]], "58-94": [[1882, 448], [1882, 485], [1926, 485], [1926, 448]], "162-166, T:0-1": [[1882, 443], [1882, 490], [1903, 490], [1903, 501], [1922, 501], [1922, 492], [1926, 492], [1926, 443]]}, "center": {"129-161": [1904, 465], "95-128": [1904, 465], "58-94": [1904, 467], "162-166, T:0-1": [1910, 455]}},
-{"id": "twwhj2", "name": "YMD", "description": "YMD, short for \"Yes My Dark\", is the fan greeting for Hololive 6th Gen. (HoloX) talent Laplus Darknesss. Fans teasingly gave her the nickname \"Yamada\" because of this.", "links": {"website": ["https://www.youtube.com/channel/UCENwRMx5Yh42zWpzURebzTw", "https://virtualyoutuber.fandom.com/wiki/La%2B_Darknesss"], "subreddit": ["LaplusDarknesss", "Hololive"]}, "path": {"45-52": [[246, 781], [246, 785], [258, 785], [258, 781]], "53-165, T:0-1": [[245, 781], [259, 781], [259, 785], [245, 785]]}, "center": {"45-52": [252, 783], "53-165, T:0-1": [252, 783]}},
+{"id": "twwhj2", "name": "YMD", "description": "YMD, short for \"Yes My Dark\", is the fan greeting for Hololive 6th Gen. (HoloX) talent Laplus Darknesss. Fans teasingly gave her the nickname \"Yamada\" because of this.", "links": {"website": ["https://www.youtube.com/channel/UCENwRMx5Yh42zWpzURebzTw", "https://virtualyoutuber.fandom.com/wiki/La%2B_Darknesss"], "subreddit": ["LaplusDarknesss", "Hololive"], "discord": ["holofans"]}, "path": {"45-52": [[246, 781], [246, 785], [258, 785], [258, 781]], "53-165, T:0-1": [[245, 781], [259, 781], [259, 785], [245, 785]]}, "center": {"45-52": [252, 783], "53-165, T:0-1": [252, 783]}},
{"id": "twwhgh", "name": "Aliensrock50 (Tyler)", "description": "The Logo of a semi-famous puzzle game YouTuber", "links": {"website": ["https://www.youtube.com/c/aliensrock"]}, "path": {"109-166, T:0-1": [[1852, 1672], [1852, 1688], [1867, 1688], [1867, 1672], [1859, 1672]]}, "center": {"109-166, T:0-1": [1860, 1680]}},
{"id": "twwhe2", "name": "The Creation of Adam", "description": "(Italian: La Creazione di Adamo) is a fresco painting by Italian artist Michelangelo, which forms part of the Sistine Chapel's ceiling. It is located in the center of the ceiling, in a series of panels depicting episodes from the Book of Genesis in which God gives life to Adam, the first man.\n\nThis painting was added to the Italian flag as a reference to the deep cultural history of Italy. A slice of Pizza Margherita was added to Adam's hand on the left.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Creation_of_Adam"], "subreddit": ["italy", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"51-166, T:0-1": [[782, 273], [796, 268], [804, 268], [811, 270], [818, 274], [824, 279], [825, 281], [829, 278], [834, 277], [838, 277], [844, 276], [848, 274], [864, 274], [864, 285], [854, 284], [850, 287], [844, 288], [841, 290], [839, 293], [835, 292], [834, 287], [836, 283], [833, 281], [828, 282], [824, 283], [819, 283], [819, 285], [814, 285], [810, 283], [803, 280], [799, 276], [792, 281], [782, 287]]}, "center": {"51-166, T:0-1": [822, 279]}},
{"id": "twwhdj", "name": "Flag of Malta", "description": "Malta, officially the Republic of Malta, is an island country in the Mediterranean Sea. This area contains the subreddit's name, the Maltese flag overlaying the area, and a silhouette of the islands of Malta, Gozo, and Comino.\n\nCitizens from Malta joined together to place their country on the canvas. Following a bit of back and forth on the border with University of Central Florida, a collaboration was formed and a heart was drawn on the border.", "links": {"website": ["https://www.visitmalta.com/", "https://en.wikipedia.org/wiki/Malta"], "subreddit": ["Malta"]}, "path": {"18-56": [[18, 604], [18, 616], [38, 616], [38, 604]], "13-17": [[0, 605], [0, 617], [16, 617], [16, 604], [10, 604], [10, 605]], "57-76, 86-166, T:0-1": [[18, 605], [18, 616], [49, 616], [49, 612], [50, 612], [50, 609], [51, 609], [51, 607], [52, 607], [52, 605]]}, "center": {"18-56": [28, 610], "13-17": [6, 611], "57-76, 86-166, T:0-1": [35, 611]}},
@@ -1886,7 +1880,7 @@
{"id": "twwfmz", "name": "Daxter", "description": "Daxter is a character from the game franchise Jak and Daxter.", "links": {"website": ["https://en.wikipedia.org/wiki/Jak_and_Daxter"], "subreddit": ["jakanddaxter"]}, "path": {"137-165, T:0-1": [[1206, 584], [1204, 586], [1204, 588], [1203, 589], [1203, 594], [1206, 594], [1207, 595], [1209, 595], [1215, 598], [1215, 586], [1213, 584]]}, "center": {"137-165, T:0-1": [1210, 589]}},
{"id": "twwfma", "name": "Starset", "description": "Logo for the American rock band, Starset, formed by Dustin Bates in 2013.", "links": {"website": ["https://starsetonline.com/", "https://en.wikipedia.org/wiki/Starset"], "subreddit": ["starsetplace"]}, "path": {"57-79, 92-99": [[1609, 34], [1609, 48], [1624, 48], [1624, 34]], "80-91": [[1599, 30], [1599, 35], [1609, 35], [1609, 48], [1625, 48], [1625, 30]], "100-167, T:0-1": [[1599, 35], [1599, 42], [1615, 57], [1615, 48], [1638, 48], [1638, 47], [1625, 34]]}, "center": {"57-79, 92-99": [1617, 41], "80-91": [1617, 38], "100-167, T:0-1": [1610, 42]}},
{"id": "twwfjf", "name": "NWSS", "description": "NWSS (New Westminster Secondary School) is a school located in New Westminster, BC, Canada. This text was put here after being forced to relocate 3 times, and in the end, The last two letters were still vandalised.", "links": {"website": ["https://nwss.ca/"]}, "path": {"109-165, T:0-1": [[1716, 1993], [1716, 1999], [1737, 1999], [1737, 1993]]}, "center": {"109-165, T:0-1": [1727, 1996]}},
-{"id": "twwfiv", "name": "The Great Diamond Authority", "description": "a symbol from Steven Universe that represents the 4 Diamonds", "links": {"website": ["https://www.imdb.com/title/tt3061046/"], "subreddit": ["stevenuniverse"]}, "path": {"56-165, T:0-1": [[1228, 888], [1222, 894], [1228, 900], [1234, 894]]}, "center": {"56-165, T:0-1": [1228, 894]}},
+{"id": "twwfiv", "name": "The Great Diamond Authority", "description": "The Great Diamond Authority is a former ruling body of leaders in the TV show Steven Universe. The group consisted of the four Diamonds.", "links": {"website": ["https://steven-universe.fandom.com/wiki/The_Great_Diamond_Authority", "https://www.imdb.com/title/tt3061046/", "https://en.wikipedia.org/wiki/Steven_Universe"], "subreddit": ["stevenuniverse"]}, "path": {"75-165, T:0-1": [[1228, 887], [1221, 894], [1228, 901], [1235, 894]]}, "center": {"75-165, T:0-1": [1228, 894]}},
{"id": "twwfb5", "name": "Wubby height", "description": "An emote from Twitch streamer PaymoneyWubby. He often laments that, despite his modest height, he is often told he is surprisingly short in person.", "links": {"subreddit": ["PaymoneyWubby"]}, "path": {"109-166, T:0-1": [[442, 1508], [457, 1508], [457, 1513], [442, 1513]]}, "center": {"109-166, T:0-1": [450, 1511]}},
{"id": "twwfa6", "name": "Capoeirista", "description": "A capoeirista is a person practicing caopeira, a popular Brazilian martial arts that merges dancing and fighting movements together.", "links": {"website": ["https://en.wikipedia.org/wiki/Capoeira"], "subreddit": ["brasil"]}, "path": {"102-166, T:0-1": [[1259, 612], [1259, 614], [1265, 614], [1265, 602], [1269, 602], [1276, 595], [1277, 597], [1277, 591], [1282, 594], [1282, 593], [1280, 591], [1286, 585], [1286, 573], [1288, 570], [1287, 569], [1285, 569], [1281, 574], [1280, 577], [1281, 577], [1281, 583], [1276, 587], [1266, 587], [1265, 586], [1261, 586], [1261, 587], [1251, 587], [1251, 591], [1252, 592], [1261, 592], [1261, 594], [1255, 594], [1255, 595], [1253, 595], [1253, 594], [1252, 594], [1254, 600], [1261, 600], [1261, 611], [1259, 611]]}, "center": {"102-166, T:0-1": [1268, 594]}},
{"id": "twwf4i", "name": "Sportshot", "description": "The Sportshot is one of the Unturned's most infamous weapons.", "links": {"website": ["https://unturned.fandom.com/wiki/Sportshot"], "subreddit": ["unturned"]}, "path": {"133-166, 68-75, 99-116, T:0-1": [[649, 591], [657, 591], [657, 590], [658, 590], [658, 589], [661, 589], [661, 587], [652, 587], [652, 588], [649, 588]]}, "center": {"133-166, 68-75, 99-116, T:0-1": [655, 589]}},
@@ -1932,7 +1926,7 @@
{"id": "tww8pq", "name": "Gold Leaf", "description": "Leaf Blower Revolution Logo", "links": {"website": ["https://humblenorth.de"], "subreddit": ["LeafBlowerRevolution"]}, "path": {"109-166, T:0-1": [[57, 1226], [57, 1237], [72, 1237], [72, 1226]]}, "center": {"109-166, T:0-1": [65, 1232]}},
{"id": "tww8o1", "name": "B1G Conference", "description": "The Big 10 'B1G' is a sports conference of American universities. This art depicts a train of the universities in the B1G Conference, headed by Purdue's mascot, The Boilermaker Special, as well as its famous large drum. Other universities' logos decorate the train cars, including Nebraska, Ohio State, Iowa, Wisconsin, Illinois, and Northwestern. Among Us crewmates on the B1G car represent universities in the conference that didn't fit on the train cars, including Penn State Minnesota, and Michigan.", "links": {"website": ["https://bigten.org/"], "subreddit": ["TheB1G", "Purdue"]}, "path": {"109-166, T:0-1": [[1177, 1713], [1111, 1711], [1109, 1720], [1009, 1719], [1008, 1737], [1183, 1740]]}, "center": {"109-166, T:0-1": [1103, 1727]}},
{"id": "tww8m8", "name": "Yabbe's & NymN's cats", "description": "Small drawings of the cats of streamers Yabbe and NymN cats. In order, Minus, Apollo & Miss.", "links": {"website": ["https://www.twitch.tv/yabbe"], "subreddit": ["RedditAndChill"]}, "path": {"1-166, T:0-1": [[670, 943], [670, 939], [691, 939], [691, 943]]}, "center": {"1-166, T:0-1": [681, 941]}},
-{"id": "tww8bi", "name": "Owl #1", "description": "An owl with a heart, made by boomkin WoW players and other owl enthusiasts.", "links": {}, "path": {"56-165, T:0-1": [[1210, 908], [1210, 895], [1204, 895], [1201, 898], [1201, 908]]}, "center": {"56-165, T:0-1": [1206, 902]}},
+{"id": "tww8bi", "name": "Owl", "description": "This owl with a heart was made by players of the boomkin class in the game World of Warcraft, along with other owl enthusiasts.", "links": {"website": ["https://en.wikipedia.org/wiki/Owl"]}, "path": {"100-106": [[1200, 897], [1200, 908], [1210, 908], [1210, 897], [1209, 897], [1207, 899], [1203, 899], [1201, 897]], "67-96": [[1214, 869], [1214, 880], [1225, 880], [1225, 869], [1224, 869], [1222, 871], [1217, 871], [1215, 869]], "107-165, T:0-1": [[1204, 894], [1200, 898], [1200, 908], [1210, 908], [1210, 898], [1206, 894]]}, "center": {"100-106": [1205, 904], "67-96": [1219, 876], "107-165, T:0-1": [1205, 902]}},
{"id": "tww80p", "name": "Izuku Midoriya", "description": "\"It's not all black-and-white. Most things in this world are in shades of gray. A blend of fear and anger. Which is why... I've gotta extend a helping hand.\"\n\nThe man who will soon become the greatest Hero of all time. Main protagonist of Kohei Horikoshi's manga series My Hero Academia.\n\nThis sprite was made by the MHA Place Discord server and the Anime Alliance.\n\nMHA: https://discord.gg/GsWeNk2aa2\nAnime Alliance: https://discord.gg/9U6pHMbHS4", "links": {"subreddit": ["BNHAPlace"], "discord": ["GsWeNk2aa2"]}, "path": {"109-166, T:0-1": [[1676, 1172], [1676, 1200], [1693, 1200], [1693, 1172]]}, "center": {"109-166, T:0-1": [1685, 1186]}},
{"id": "tww7ss", "name": "Pim's (french biscuit)", "description": "Biscuit made by a french discord: Shopless, Tmkb, Ingenieux, Elliotcrabe, ImNotDjango, Docyolo, Malo", "links": {"subreddit": ["ThePims"]}, "path": {"109-166, T:0-1": [[527, 1784], [530, 1784], [531, 1785], [531, 1788], [530, 1789], [528, 1789], [526, 1787], [526, 1785]]}, "center": {"109-166, T:0-1": [529, 1786]}},
{"id": "tww7fz", "name": "kson ONAIR", "description": "A legendary independent virtual YouTuber, holding up her signature pink sword. She is from Atlanta, Georgia, USA, and loves learning Japanese and playing games.", "links": {"website": ["https://www.youtube.com/c/ksonONAIr"], "subreddit": ["kson_ONAIR"]}, "path": {"56-166, T:0-1": [[1354, 914], [1354, 925], [1369, 925], [1368, 915], [1369, 901], [1365, 901], [1364, 915], [1359, 915], [1359, 914], [1356, 914]]}, "center": {"56-166, T:0-1": [1363, 917]}},
@@ -1971,16 +1965,16 @@
{"id": "tww40a", "name": "Portugal Caralho!", "description": "A patriotic phrase in Portugal.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=portugal%20caralho"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"10-26": [[856, 360], [856, 371], [923, 371], [923, 360]], "27-41, 6-9": [[856, 360], [856, 371], [923, 371], [923, 367], [952, 367], [952, 360]], "42-165, T:0-1": [[855, 360], [923, 360], [922, 371], [855, 371]]}, "center": {"10-26": [890, 366], "27-41, 6-9": [904, 366], "42-165, T:0-1": [889, 366]}},
{"id": "tww3r5", "name": "Leaning Tower of Pisa", "description": "A famous tower in Pisa, Italy, That is not really straight", "links": {"website": ["https://en.wikipedia.org/wiki/Leaning_Tower_of_Pisa"], "subreddit": ["italy"]}, "path": {"109-165, T:0-1": [[857, 1072], [856, 1059], [860, 1035], [865, 1022], [873, 1022], [874, 1019], [875, 1022], [877, 1022], [883, 1025], [883, 1036], [882, 1043], [880, 1049], [880, 1054], [880, 1060], [878, 1063], [881, 1063], [879, 1069], [880, 1072]]}, "center": {"109-165, T:0-1": [870, 1048]}},
{"id": "tww3q7", "name": "322", "description": "A popular meme in the Dota 2 community. It originated from an infamous bet made by the player Solo against his own team, Rox.KIS. The team lost the bet and Solo won 322 dollars.", "links": {"subreddit": ["DotA2"]}, "path": {"148-165, T:0-1": [[7, 137], [7, 143], [19, 143], [19, 137]]}, "center": {"148-165, T:0-1": [13, 140]}},
-{"id": "tww3c1", "name": "Sougo's mask", "description": "a tiny version of Okita Sougo's sleep mask from Gintama", "links": {}, "path": {"56-166, T:0-1": [[1460, 804], [1475, 804], [1475, 809], [1460, 809]]}, "center": {"56-166, T:0-1": [1468, 807]}},
+{"id": "tww3c1", "name": "Okita Sougo", "description": "Okita Sougo is a character from the manga Gintama. This art depicts his signature sleep mask.", "links": {"website": ["https://gintama.fandom.com/wiki/Okita_Sougo"]}, "path": {"77-166, T:0-1": [[1460, 804], [1460, 809], [1473, 809], [1475, 807], [1475, 804]]}, "center": {"77-166, T:0-1": [1468, 807]}},
{"id": "tww3ae", "name": "Aruba", "description": "The flag and shape of Aruba, a Caribbean island part of the Kingdom of the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Aruba", "https://en.wikipedia.org/wiki/Flag_of_Aruba"], "subreddit": ["Aruba", "PlaceNL", "thenetherlands"]}, "path": {"97-138": [[831, 7], [829, 9], [829, 11], [828, 12], [828, 15], [830, 15], [841, 24], [844, 24], [844, 19]], "139-166, T:0-1": [[825, 11], [831, 17], [832, 17], [833, 18], [834, 18], [836, 20], [837, 20], [838, 21], [839, 21], [840, 22], [841, 23], [843, 23], [844, 22], [843, 21], [843, 18], [842, 17], [842, 16], [836, 10], [835, 10], [827, 2], [826, 3], [826, 4], [827, 5], [827, 7], [826, 8], [826, 10]]}, "center": {"97-138": [832, 13], "139-166, T:0-1": [831, 11]}},
{"id": "tww2tu", "name": "Jolyne Cujoh's butterfly tattoo", "description": "This blue and green butterfly motif is seen as a tattoo on the arm of Jolyne Cujoh, protagonist of the manga and anime JoJo's Bizarre Adventure, Part 6: Stone Ocean.", "links": {"website": ["https://jojowiki.com/Jolyne_Cujoh"], "subreddit": ["ShitPostCrusaders", "StardustCrusaders", "wholesomejojo"]}, "path": {"155-166, T:0-1": [[114, 897], [110, 900], [110, 905], [113, 908], [115, 906], [117, 908], [118, 908], [120, 906], [120, 900], [116, 897]]}, "center": {"155-166, T:0-1": [115, 902]}},
{"id": "tww2oc", "name": "Grub", "description": "Grubs are a collectible in Hollow Knight. They can be found trapped in glass jars throughout Hallownest, the setting of Hollow Knight.", "links": {"website": ["https://hollowknight.fandom.com/wiki/Grub"], "subreddit": ["HKPlace", "HollowKnight"], "discord": ["RKWC7ZUVnz"]}, "path": {"28-165, T:0-1": [[227, 401], [231, 397], [234, 397], [237, 400], [237, 403], [235, 405], [236, 406], [236, 407], [235, 408], [236, 409], [238, 411], [239, 410], [240, 410], [240, 412], [238, 414], [237, 415], [236, 415], [235, 416], [234, 416], [232, 414], [231, 415], [230, 415], [229, 414], [230, 413], [229, 412], [228, 411], [227, 411], [226, 410], [227, 409], [227, 408], [228, 407], [227, 406], [228, 405], [229, 404], [227, 402]]}, "center": {"28-165, T:0-1": [232, 402]}},
{"id": "tww2gi", "name": "Naruto Uzumaki", "description": "\"Believe it!\"\nThe jinchuriki of Kurama, The Nine-Tailed Fox and the Seventh Hokage of Konohagakure. Naruto is the main protagonist of Naruto, a manga series written and illustrated by Masashi Kishimoto.\nThis sprite was made by the Naruto Place Discord server and the Anime Alliance.\nNaruto: https://discord.gg/AyZYzd8Er7\nAnime Alliance: https://discord.gg/9U6pHMbHS4", "links": {"subreddit": ["PlaceNaruto"], "discord": ["AyZYzd8Er7"]}, "path": {"109-166, T:0-1": [[1659, 1172], [1659, 1200], [1675, 1200], [1675, 1172]]}, "center": {"109-166, T:0-1": [1667, 1186]}},
{"id": "tww2e1", "name": "Sans", "description": "Sans (/sænz/) is a major character in Undertale and the brother of Papyrus. He first appears in Snowdin Forest after the protagonist exits the Ruins. He serves as a supporting character in the Neutral and True Pacifist routes, and as the final boss and heroic antagonist in the Genocide Route. He is known for his jokes and puns.", "links": {"website": ["https://undertale.fandom.com/wiki/Sans"], "subreddit": ["Undertale"]}, "path": {"4-15": [[246, 818], [243, 820], [241, 823], [241, 829], [246, 834], [254, 834], [259, 830], [259, 823], [257, 820], [254, 818]], "112-166, T:0-1": [[1840, 1685], [1839, 1686], [1838, 1686], [1836, 1688], [1836, 1689], [1834, 1691], [1834, 1696], [1839, 1701], [1839, 1703], [1847, 1703], [1848, 1702], [1849, 1702], [1853, 1698], [1853, 1687], [1851, 1685]]}, "center": {"4-15": [250, 826], "112-166, T:0-1": [1844, 1694]}},
-{"id": "tww2aw", "name": "Mokoko Seed", "description": "A small hidden Mokoko Seed among the Flowers. It comes from the game Lost Ark which recently had its Western release. Like in the game, The Mokoko Seed is very hidden among the vegetation.", "links": {"website": ["https://lostark.fandom.com/wiki/Mokoko_Seeds"], "subreddit": ["lostarkgame"]}, "path": {"56-166, T:0-1": [[1897, 869], [1897, 865], [1901, 863], [1899, 861], [1902, 857], [1905, 859], [1909, 857], [1910, 860], [1903, 868], [1899, 868]]}, "center": {"56-166, T:0-1": [1903, 863]}},
+{"id": "tww2aw", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark, which recently released in the West.\n\nLike in the game, this Mokoko Seed is hidden among the flowers and vegetation.", "links": {"website": ["https://lostark.fandom.com/wiki/Mokoko_Seeds"], "subreddit": ["lostarkgame"]}, "path": {"113-166, T:0-1": [[1902, 858], [1899, 861], [1901, 863], [1900, 863], [1897, 866], [1897, 867], [1899, 869], [1902, 869], [1904, 867], [1904, 864], [1907, 862], [1907, 859], [1903, 859]]}, "center": {"113-166, T:0-1": [1901, 866]}},
{"id": "tww22p", "name": "Matsumoto", "description": "Matsumoto is a character from the anime Vivy: Flourite Eye's Song. Not to be confused with Wheatley from the game Portal 2.", "links": {"website": ["https://vivy-fluorite-eyes-song.fandom.com/wiki/Matsumoto"], "subreddit": ["Vivy"]}, "path": {"26-94": [[758, 216], [758, 238], [781, 238], [781, 216]], "113-166, T:0-1": [[463, 1652], [461, 1654], [461, 1668], [463, 1670], [477, 1670], [479, 1668], [479, 1654], [477, 1652]]}, "center": {"26-94": [770, 227], "113-166, T:0-1": [470, 1661]}},
{"id": "tww20m", "name": "Childe's Narwhal", "description": "Childe (Tartaglia) is a character in Genshin Impact. He is symbolized by a narwhal, as seen in his constellation, Monoceros Caeli. This narwhal is also wearing Childe's mask.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Tartaglia"], "subreddit": ["childemains", "GenshinPlace", "Genshin_Impact"]}, "path": {"141-166, T:0-1": [[1121, 67], [1119, 67], [1118, 66], [1117, 67], [1118, 68], [1117, 69], [1117, 73], [1118, 74], [1128, 74], [1129, 73], [1130, 73], [1131, 72], [1129, 70], [1128, 71], [1127, 71], [1126, 70], [1126, 69], [1124, 69], [1122, 67]]}, "center": {"141-166, T:0-1": [1121, 71]}},
-{"id": "tww1ze", "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.\n\nThis specific Kirby art was protected within minutes of the first expansion by around two groups made up of seven people including the original creator of the Kirby, and the other of nine who simply adopted the art shortly after seeing it alone, entirely unbeknownst to one another until the last hour.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["Kirby"]}, "path": {"56-165, T:0-1": [[1200, 869], [1200, 886], [1214, 886], [1214, 869], [1208, 869]]}, "center": {"56-165, T:0-1": [1207, 878]}},
+{"id": "tww1ze", "name": "Kirby", "description": "Kirby is the titular protagonist of the Kirby video game series, developed by HAL Laboratory and published by Nintendo.\n\nThis specific Kirby art was protected within minutes of the first expansion by around two groups, one made up of seven people including the original creator of the Kirby, and the other of nine who simply adopted the art shortly after seeing it alone. The two groups did not know of each other until the last hour.", "links": {"website": ["https://kirby.nintendo.com/", "https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["Kirby"]}, "path": {"56-165, T:0-1": [[1200, 869], [1200, 886], [1214, 886], [1214, 869], [1208, 869]]}, "center": {"56-165, T:0-1": [1207, 878]}},
{"id": "tww1z8", "name": "Marsey the Cat", "description": "Marsey the Cat is the mascot of rDrama.net, a website dedicated to documenting dramatic happenings. Marsey was originally created by Ukrainian artist Anton Dimitriev as part of a sticker pack for the instant messaging app Telegram.\n\nThis wholesome kitty became shrouded in controversy after Reddit administrators used their admin powers to delete her from r/place.", "links": {"website": ["https://knowyourmeme.com/memes/marsey-the-cat", "https://rdrama.net"], "subreddit": ["Drama"]}, "path": {"3-37": [[107, 700], [107, 711], [106, 713], [104, 714], [101, 714], [99, 716], [99, 720], [106, 727], [109, 732], [113, 732], [114, 733], [117, 733], [117, 731], [123, 731], [123, 733], [126, 733], [129, 729], [129, 725], [127, 723], [127, 722], [130, 720], [132, 717], [132, 714], [131, 713], [131, 702], [129, 700]], "38-45": [[107, 699], [107, 716], [109, 719], [114, 723], [119, 724], [125, 724], [132, 717], [132, 711], [131, 711], [131, 702], [129, 699], [128, 698], [127, 698], [125, 700], [110, 700], [109, 699]], "110-165, T:0-1": [[400, 1390], [400, 1386], [399, 1385], [398, 1384], [398, 1382], [399, 1381], [400, 1381], [400, 1380], [401, 1380], [402, 1379], [402, 1378], [403, 1377], [403, 1372], [402, 1372], [402, 1363], [401, 1362], [395, 1362], [394, 1361], [389, 1361], [388, 1362], [386, 1362], [385, 1363], [384, 1363], [384, 1362], [383, 1361], [381, 1361], [380, 1362], [380, 1365], [381, 1366], [381, 1368], [380, 1369], [380, 1371], [379, 1372], [379, 1376], [380, 1377], [380, 1378], [381, 1379], [382, 1379], [383, 1380], [383, 1381], [382, 1382], [381, 1383], [380, 1383], [379, 1382], [378, 1381], [378, 1380], [377, 1379], [377, 1377], [376, 1376], [375, 1375], [374, 1375], [373, 1376], [372, 1377], [372, 1380], [373, 1380], [373, 1383], [374, 1384], [374, 1385], [375, 1386], [376, 1387], [377, 1388], [378, 1388], [379, 1388], [380, 1388], [380, 1390], [381, 1391], [399, 1391]]}, "center": {"3-37": [119, 713], "38-45": [119, 712], "110-165, T:0-1": [391, 1372]}},
{"id": "tww1yb", "name": "Phoenix Suns", "description": "A professional basketball team from the National Basketball Association that resides in Phoenix, Arizona, USA. This art represents the modern city branding of The Valley - in reference to Phoenix's nickname as the valley of the sun - as well their classic logo of a basketball surrounded by a shooting starburst. Phoenix Suns; an American professional basketball team that resides in Phoenix, Arizona.\n\nThe Valley is a reference to the Phoenix metropolitan area, also known as the Valley of the Sun.\n\nThis mural was designed and maintained by /r/Suns.", "links": {"website": ["https://www.nba.com/suns"], "subreddit": ["suns", "ArizonaPlace", "arizona"]}, "path": {"78-94": [[1867, 272], [1867, 302], [1890, 302], [1890, 295], [1918, 295], [1918, 269], [1901, 269], [1901, 272]], "60-77": [[1889, 273], [1889, 296], [1918, 296], [1918, 270], [1902, 270], [1902, 273]], "109-166, T:0-1": [[490, 1828], [490, 1867], [537, 1867], [537, 1828]]}, "center": {"78-94": [1881, 286], "60-77": [1906, 284], "109-166, T:0-1": [514, 1848]}},
{"id": "tww1xy", "name": "ENIB Logo", "description": "Logo from a French Engineering Schooln", "links": {"website": ["https://www.enib.fr/en/"]}, "path": {"109-166, T:0-1": [[1821, 1459], [1847, 1459], [1847, 1466], [1821, 1466]]}, "center": {"109-166, T:0-1": [1834, 1463]}},
@@ -2001,12 +1995,12 @@
{"id": "tww0dl", "name": "6A6K", "description": "6A6K is a server for the game Minecraft founded in 2017. It has a custom world and uses an anarchy format with minimal rules.", "links": {"website": ["https://6A6K.us"], "subreddit": ["6A6K"]}, "path": {"76-117": [[1447, 366], [1447, 380], [1457, 380], [1457, 366]], "152-166, T:0-1": [[1004, 1774], [1004, 1790], [1019, 1790], [1019, 1774]]}, "center": {"76-117": [1452, 373], "152-166, T:0-1": [1012, 1782]}},
{"id": "tww0bp", "name": "Falxo7326", "description": "A Falco wrote this. It is cool and great.\n\nDrawn by user Falxo7326.", "links": {"website": ["https://www.reddit.com/user/Falxo7326"]}, "path": {"155-165, T:0-1": [[1002, 427], [1002, 431], [1015, 431], [1015, 427]]}, "center": {"155-165, T:0-1": [1009, 429]}},
{"id": "tww06y", "name": "Steel Ball", "description": "Steel Balls are weapons used by the character Gyro Zeppeli in the manga JoJo's Bizarre Adventure, Part 7: Steel Ball Run.", "links": {"website": ["https://jojowiki.com/Steel_Ball"], "subreddit": ["ShitPostCrusaders", "StardustCrusaders", "wholesomejojo"]}, "path": {"156-166, T:0-1": [[103, 897], [100, 900], [100, 902], [103, 904], [106, 904], [108, 902], [108, 899], [106, 897]]}, "center": {"156-166, T:0-1": [104, 901]}},
-{"id": "tww03x", "name": "Project Sekai", "description": "The five Hatsune Miku mascots of the rhythm game Project Sekai: Colorful Stage!", "links": {"subreddit": ["ProjectSekai"]}, "path": {"56-165, T:0-1": [[1085, 880], [1160, 880], [1159, 897], [1085, 899]]}, "center": {"56-165, T:0-1": [1122, 889]}},
+{"id": "tww03x", "name": "Hatsune Miku: Colorful Stage!", "description": "Hatsune Miku: Colorful Stage!, known in Asia as \"Project Sekai: Colorful Stage! feat. Hatsune Miku\", is a mobile rhythm game featuring Volcaloid idol Hatsune Miku. This art depicts the five Hatsune Miku mascots in the game.", "links": {"website": ["https://en.wikipedia.org/wiki/Hatsune_Miku:_Colorful_Stage!"], "subreddit": ["ProjectSekai"]}, "path": {"58-78": [[1085, 886], [1085, 899], [1161, 899], [1161, 886]], "79-165, T:0-1": [[1085, 880], [1161, 880], [1161, 899], [1085, 899]]}, "center": {"58-78": [1123, 893], "79-165, T:0-1": [1123, 890]}},
{"id": "twvzsx", "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": {"109-166, T:0-1": [[1373, 1173], [1373, 1186], [1394, 1186], [1394, 1173]]}, "center": {"109-166, T:0-1": [1384, 1180]}},
{"id": "twvzrs", "name": "Mona Lisa", "description": "The beginning of the Mona Lisa a famous painting that is fullfilled by doodle, The face is here", "links": {}, "path": {"109-166, T:0-1": [[1517, 1296], [1550, 1296], [1550, 1362], [1516, 1357]]}, "center": {"109-166, T:0-1": [1533, 1328]}},
{"id": "twvzfs", "name": "Jelle's Marble Runs", "description": "Jelle's Marble Runs is a YouTube channel based in the Netherlands, founded by Jelle Bakker. It is based around marbles, marble runs, and marble races. Content on the channel includes spoofing the Olympic Games (Marble League and MarbleLympics), Formula One (Marbula One), and other sporting events, along with original content like Marble Rally.\n\nThis art was drawn by the Marblebase, an unofficial Discord server for all things Jelle.", "links": {"website": ["https://jellesmarbleruns.com/", "https://www.youtube.com/channel/UCYJdpnjuSWVOLgGT9fIzL0g"], "subreddit": ["JellesMarbleRuns"], "discord": ["marbles"]}, "path": {"56-104": [[1944, 198], [1944, 217], [1957, 217], [1957, 198]], "7-19": [[38, 466], [38, 484], [51, 484], [51, 466]], "20-31": [[38, 466], [38, 480], [51, 480], [51, 466]], "109-166, T:0-1": [[1944, 176], [1944, 195], [1957, 195], [1957, 176]]}, "center": {"56-104": [1951, 208], "7-19": [45, 475], "20-31": [45, 473], "109-166, T:0-1": [1951, 186]}},
{"id": "twvzfq", "name": "Lucky Beast", "description": "A Lucky Beast from Kemono Friends. Lucky Beasts are robots tasked with the maintenance of Japari Park and the assistance of Friends living there. Commonly nicknamed Boss.", "links": {"website": ["https://japari-library.com//wiki/Lucky_Beast"], "subreddit": ["KemonoFriends"]}, "path": {"109-166, T:0-1": [[1700, 1539], [1699, 1538], [1699, 1536], [1697, 1534], [1695, 1534], [1695, 1535], [1694, 1536], [1694, 1538], [1693, 1539], [1692, 1539], [1691, 1538], [1691, 1536], [1690, 1535], [1690, 1534], [1688, 1534], [1686, 1536], [1686, 1538], [1685, 1539], [1685, 1552], [1686, 1553], [1689, 1553], [1690, 1552], [1695, 1552], [1696, 1553], [1699, 1553], [1700, 1552]]}, "center": {"109-166, T:0-1": [1693, 1544]}},
-{"id": "twvzaw", "name": "r/turtle_army2", "description": "Subreddit focused on drawing an army of turtles on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Turtle"], "subreddit": ["turtle_army2"]}, "path": {"85-118": [[823, 898], [821, 900], [820, 902], [820, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1063, 905], [1063, 898], [946, 899], [940, 905], [936, 905], [936, 902], [933, 902], [929, 898]], "55-79": [[771, 898], [771, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1063, 905], [1063, 900], [1061, 898], [947, 898], [943, 901], [941, 903], [935, 903], [934, 902], [933, 902], [929, 898]], "18-54": [[772, 898], [772, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1000, 905], [1000, 898], [946, 898], [942, 902], [941, 902], [940, 903], [936, 903], [935, 902], [934, 902], [930, 898]], "1-17": [[749, 898], [747, 900], [747, 901], [750, 904], [755, 904], [755, 905], [1000, 905], [1000, 898]], "119-165, T:0-1": [[823, 898], [821, 900], [820, 902], [820, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1072, 905], [1072, 898], [947, 898], [943, 902], [940, 902], [940, 905], [936, 905], [936, 903], [934, 901], [932, 901], [929, 898]]}, "center": {"85-118": [922, 902], "55-79": [917, 902], "18-54": [895, 902], "1-17": [874, 902], "119-165, T:0-1": [950, 902]}},
+{"id": "twvzaw", "name": "r/turtle_army2", "description": "Subreddit focused on drawing an army of turtles on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Turtle"], "subreddit": ["turtle_army2"]}, "path": {"85-118": [[823, 898], [821, 900], [820, 902], [820, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1063, 905], [1063, 898], [946, 899], [940, 905], [936, 905], [936, 902], [933, 902], [929, 898]], "55-79": [[771, 898], [771, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1063, 905], [1063, 900], [1061, 898], [947, 898], [943, 901], [941, 903], [935, 903], [934, 902], [933, 902], [929, 898]], "18-54": [[772, 898], [772, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1000, 905], [1000, 898], [946, 898], [942, 902], [941, 902], [940, 903], [936, 903], [935, 902], [934, 902], [930, 898]], "1-17": [[749, 898], [747, 900], [747, 901], [750, 904], [755, 904], [755, 905], [1000, 905], [1000, 898]], "119-165, T:0-1": [[823, 898], [821, 900], [820, 902], [820, 905], [875, 905], [877, 903], [885, 903], [887, 905], [1072, 905], [1072, 898], [947, 898], [943, 902], [940, 902], [940, 905], [936, 905], [936, 903], [934, 901], [932, 901], [929, 898]]}, "center": {"85-118": [922, 902], "55-79": [917, 902], "18-54": [895, 902], "1-17": [874, 902], "119-165, T:0-1": [1024, 902]}},
{"id": "twvz75", "name": "Jack Frost", "description": "A sprite of Jack Frost, one of the most well-known demons in the monster-based role-playing game franchise Shin Megami Tensei developed by Atlus (who uses him as a mascot). He says \"Hee-hoo\" a lot.", "links": {"website": ["https://megamitensei.fandom.com/wiki/Jack_Frost"], "subreddit": ["atlus"]}, "path": {"26-41": [[937, 234], [934, 238], [935, 239], [937, 237], [938, 237], [938, 245], [937, 246], [938, 250], [949, 250], [949, 247], [950, 246], [949, 245], [949, 237], [950, 237], [952, 239], [953, 238], [950, 234], [948, 234], [945, 237], [942, 237], [939, 234]], "79-166, T:0-1": [[1461, 283], [1462, 284], [1465, 281], [1467, 282], [1468, 283], [1469, 284], [1469, 285], [1473, 284], [1474, 285], [1474, 283], [1475, 283], [1477, 281], [1478, 281], [1481, 284], [1482, 283], [1483, 284], [1483, 286], [1488, 286], [1488, 292], [1486, 292], [1486, 300], [1477, 300], [1477, 303], [1475, 305], [1468, 305], [1466, 303], [1466, 299], [1465, 298], [1465, 294], [1464, 293], [1465, 292], [1465, 290], [1466, 289], [1466, 287], [1465, 286], [1461, 286]]}, "center": {"26-41": [943, 244], "79-166, T:0-1": [1473, 293]}},
{"id": "twvz56", "name": "Monkey D. Luffy", "description": "\"I don't wanna conquer anything. It's just that the person with the most freedom on the sea is the Pirate King.\"\n\nMonkey D. Luffy, the man who will become the Pirate King. He is the main protagonist of One Piece, a manga series written and illustrated by Eiichiro Oda. This sprite was made by the One Piece community and the Anime Alliance.", "links": {"website": ["https://en.wikipedia.org/wiki/Monkey_D._Luffy", "https://onepiece.fandom.com/wiki/Monkey_D._Luffy"], "subreddit": ["OnePiece"], "discord": ["QFNC6PxBtE"]}, "path": {"109-165, T:0-1": [[1616, 1172], [1616, 1200], [1633, 1200], [1633, 1172]]}, "center": {"109-165, T:0-1": [1625, 1186]}},
{"id": "twvz0w", "name": "Karma flower", "description": "A flower from the game Rain World.", "links": {"website": ["https://rainworld.fandom.com/wiki/Objects#Karma_Flower"], "subreddit": ["rainworld"]}, "path": {"109-165, T:0-1": [[296, 1471], [294, 1473], [294, 1474], [293, 1475], [296, 1478], [296, 1482], [299, 1485], [300, 1485], [301, 1484], [300, 1483], [299, 1483], [298, 1482], [298, 1479], [300, 1477], [301, 1477], [303, 1475], [299, 1471]]}, "center": {"109-165, T:0-1": [298, 1476]}},
@@ -2032,14 +2026,14 @@
{"id": "twvwkz", "name": "Oasis", "description": "Logo of Manchester Britpop band Oasis.", "links": {"subreddit": ["oasis"]}, "path": {"109-165, T:0-1": [[1132, 1299], [1152, 1299], [1152, 1306], [1132, 1306]]}, "center": {"109-165, T:0-1": [1142, 1303]}},
{"id": "twvwjd", "name": "Hogwarts", "description": "Hogwarts is a magic school that appears in the Harry Potter book series, written by J.K. Rowling. Rowling is known for her transphobia and advocacy against trans rights, so this logo is surrounded by a transgender flag in defiance.", "links": {"website": ["https://en.wikipedia.org/wiki/Hogwarts"]}, "path": {"64-92": [[1907, 744], [1907, 755], [1919, 767], [1932, 754], [1932, 751], [1931, 751], [1931, 744]], "56-62": [[1929, 799], [1924, 804], [1924, 811], [1930, 817], [1942, 817], [1942, 814], [1945, 811], [1945, 804], [1943, 802], [1943, 801], [1941, 798], [1941, 796], [1929, 796]], "101-166, T:0-1": [[1911, 869], [1911, 892], [1929, 892], [1929, 869]]}, "center": {"64-92": [1919, 754], "56-62": [1935, 807], "101-166, T:0-1": [1920, 881]}},
{"id": "twvwi9", "name": "Squidward", "description": "Famed Twitch streamer IgorCykel's brave community came together to produce this piece in the face of overwhelming odds.", "links": {"website": ["https://www.twitch.tv/igorcykel"], "subreddit": ["rooftopbar"]}, "path": {"109-165, T:0-1": [[1690, 1044], [1690, 1061], [1708, 1061], [1708, 1044]]}, "center": {"109-165, T:0-1": [1699, 1053]}},
-{"id": "twvwdo", "name": "RTS / Radio Télévision Suisse", "description": "RTS is the national swiss TV in the french talking part of Switzerland.", "links": {"website": ["https://www.rts.ch/"]}, "path": {"56-165, T:0-1": [[1175, 870], [1188, 870], [1188, 876], [1175, 876]]}, "center": {"56-165, T:0-1": [1182, 873]}},
+{"id": "twvwdo", "name": "Radio Télévision Suisse", "description": "Radio Télévision Suisse (RTS) is the national Swiss TV and radio broadcaster in the French-speaking areas of Switzerland.", "links": {"website": ["https://www.rts.ch/", "https://en.wikipedia.org/wiki/Radio_T%C3%A9l%C3%A9vision_Suisse"], "subreddit": ["Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"139-165, T:0-1": [[1175, 869], [1175, 877], [1189, 877], [1189, 869]]}, "center": {"139-165, T:0-1": [1182, 873]}},
{"id": "twvw5s", "name": "Welcome to Night Vale", "description": "Welcome to Night Vale is a podcast presented as a radio show for the fictional town of Night Vale, reporting on the strange events that occur within it.", "links": {"website": ["https://www.welcometonightvale.com/", "https://en.wikipedia.org/wiki/Welcome_to_Night_Vale"], "subreddit": ["nightvale"]}, "path": {"97-142": [[1765, 408], [1765, 415], [1768, 415], [1768, 420], [1771, 420], [1771, 427], [1776, 427], [1776, 434], [1783, 434], [1783, 432], [1804, 432], [1804, 425], [1808, 425], [1808, 422], [1802, 422], [1798, 418], [1798, 414], [1790, 414], [1790, 408]], "69-86": [[1154, 0], [1154, 15], [1177, 15], [1177, 0]], "57-61": [[1787, 438], [1777, 442], [1786, 448], [1793, 448], [1800, 441], [1792, 438]], "143-166, T:0-1": [[1776, 433], [1783, 433], [1783, 432], [1804, 432], [1804, 422], [1801, 422], [1798, 419], [1798, 414], [1768, 414], [1768, 420], [1772, 420], [1772, 424], [1776, 428]]}, "center": {"97-142": [1781, 418], "69-86": [1166, 8], "57-61": [1789, 443], "143-166, T:0-1": [1787, 423]}},
{"id": "twvw0h", "name": "David Pastrňák (88)", "description": "A bowl of pasta symbolizing the player (88) David Pastrňák from Boston Bruins.", "links": {"website": ["https://en.wikipedia.org/wiki/David_Pastr%C5%88%C3%A1k"], "subreddit": ["BostonBruins"]}, "path": {"109-166, T:0-1": [[481, 1916], [489, 1916], [489, 1924], [481, 1924]]}, "center": {"109-166, T:0-1": [485, 1920]}},
{"id": "twvvua", "name": "Mega Man", "description": "Mega Man, known as Rockman (Japanese: ロックマン; Hepburn: Rokkuman) in Japan, is the title character and the protagonist of the Mega Man series by Capcom. He was created by Akira Kitamura for the first Mega Man game released in 1987, with artist Keiji Inafune providing detailed character artwork based on Kitamura's pixel art design.", "links": {"website": ["https://en.wikipedia.org/wiki/Mega_Man_(character)"], "subreddit": ["Megaman"]}, "path": {"74-104": [[1525, 446], [1530, 451], [1530, 454], [1540, 454], [1541, 453], [1561, 453], [1561, 461], [1527, 461], [1526, 462], [1526, 464], [1530, 469], [1530, 470], [1508, 470], [1508, 469], [1516, 463], [1512, 460], [1512, 455], [1514, 453], [1516, 453], [1516, 452], [1522, 446]], "105-164, T:0-1": [[1529, 446], [1534, 451], [1534, 454], [1541, 454], [1541, 455], [1561, 455], [1561, 460], [1540, 460], [1539, 461], [1531, 461], [1530, 462], [1530, 464], [1534, 469], [1534, 471], [1514, 471], [1512, 469], [1514, 467], [1516, 467], [1519, 464], [1519, 462], [1515, 458], [1515, 456], [1518, 453], [1521, 453], [1521, 452], [1527, 446]]}, "center": {"74-104": [1523, 455], "105-164, T:0-1": [1527, 455]}},
{"id": "twvvpu", "name": "The Quintessential Quintuplets", "description": "Small pixel arts of Ichika, Nino, Miku, Yotsuba and Itsuki on the right and on the left is Miku's unofficial logo with Nino peeking from behind.", "links": {"website": ["https://myanimelist.net/anime/38101/5-toubun_no_Hanayome"], "subreddit": ["5ToubunNoHanayome"]}, "path": {"142-154": [[0, 1000], [4, 1000], [10, 994], [32, 994], [32, 1012], [0, 1012]], "155-162, T:0-1": [[0, 1000], [4, 1000], [10, 994], [31, 994], [31, 992], [47, 992], [47, 991], [49, 991], [49, 992], [49, 991], [51, 991], [51, 992], [53, 992], [53, 991], [55, 991], [55, 992], [57, 992], [57, 998], [32, 998], [32, 1012], [0, 1012]]}, "center": {"142-154": [16, 1003], "155-162, T:0-1": [23, 1003]}},
{"id": "twvvjw", "name": "Buffalo", "description": "Buffalo is a city in the state of New York, United States. This art includes a buffalo (the animal), buffalo wings, and the great Buffalo Sabers commentator Rick Jeanneret.\n\nr/buffalobills decided to not work with us, so we made our own area.", "links": {"website": ["https://en.wikipedia.org/wiki/Buffalo,_New_York"], "subreddit": ["716Place"]}, "path": {"56-81": [[1322, 543], [1322, 569], [1389, 569], [1389, 561], [1376, 561], [1376, 543]], "82-164, T:0-1": [[1322, 569], [1389, 569], [1389, 561], [1382, 561], [1365, 543], [1322, 543]]}, "center": {"56-81": [1356, 556], "82-164, T:0-1": [1356, 556]}},
{"id": "twvvcc", "name": "Plankton and Mr. Krabs", "description": "The characters Plankton and Mr. Krabs from the Nickelodeon show Spongebob Squarepants. Also depicted is the Krabby Patty secret formula and a Krabby Patty.", "links": {}, "path": {"109-166, T:0-1": [[1573, 1340], [1574, 1371], [1553, 1371], [1553, 1340]]}, "center": {"109-166, T:0-1": [1563, 1356]}},
-{"id": "twvvbk", "name": "ShiShiRoBodans", "description": "ShiShiRoBodans (SSRBs) are exploding little bomb-cat mascots of VTuber Shishiro Botan of Hololive 5th Gen. Cute, squishy and perfect for throwing at a group of enemies. Be careful about a chain explosion. Poi!", "links": {"website": ["https://www.youtube.com/channel/UCUKD-uaobj9jiqB-VXt71mA"], "subreddit": ["Hololive"]}, "path": {"77-110": [[1400, 986], [1400, 983], [1397, 984], [1395, 981], [1392, 981], [1390, 984], [1387, 983], [1387, 990], [1391, 995], [1392, 994], [1395, 994], [1396, 995], [1400, 990]], "111-166, T:0-1": [[1400, 986], [1400, 983], [1397, 984], [1395, 981], [1392, 981], [1390, 984], [1387, 983], [1387, 990], [1391, 995], [1392, 994], [1395, 994], [1396, 995], [1400, 990], [1400, 986], [1403, 986], [1403, 951], [1416, 951], [1419, 948], [1419, 936], [1403, 936], [1403, 951], [1403, 986]]}, "center": {"77-110": [1393, 989], "111-166, T:0-1": [1411, 944]}},
+{"id": "twvvbk", "name": "ShiShiRoBodans", "description": "ShiShiRoBodans (SSRBs) are exploding little bomb-cat mascots of VTuber Shishiro Botan of Hololive 5th Gen. Cute, squishy and perfect for throwing at a group of enemies. Be careful about a chain explosion. Poi!", "links": {"website": ["https://www.youtube.com/channel/UCUKD-uaobj9jiqB-VXt71mA"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"77-110": [[1400, 986], [1400, 983], [1397, 984], [1395, 981], [1392, 981], [1390, 984], [1387, 983], [1387, 990], [1391, 995], [1392, 994], [1395, 994], [1396, 995], [1400, 990]], "111-166, T:0-1": [[1400, 986], [1400, 983], [1397, 984], [1395, 981], [1392, 981], [1390, 984], [1387, 983], [1387, 990], [1391, 995], [1392, 994], [1395, 994], [1396, 995], [1400, 990], [1400, 986], [1403, 986], [1403, 951], [1416, 951], [1419, 948], [1419, 936], [1403, 936], [1403, 951], [1403, 986]]}, "center": {"77-110": [1393, 989], "111-166, T:0-1": [1411, 944]}},
{"id": "twvv7o", "name": "En svensk tiger", "description": "A symbol from World War II, encouraging secrecy and preventing espionage. It is a play on words; \"tiger\" in Swedish can mean either the tiger animal or the verb \"keep silent\".", "links": {"website": ["https://www.beredskapsmuseet.com/en-svensk-tiger", "https://en.wikipedia.org/wiki/En_svensk_tiger"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"104-143": [[617, 69], [614, 74], [614, 78], [616, 82], [617, 83], [617, 88], [615, 90], [615, 92], [660, 92], [662, 90], [663, 88], [667, 88], [672, 84], [672, 79], [674, 79], [674, 81], [676, 81], [678, 79], [678, 77], [676, 75], [671, 75], [668, 78], [668, 82], [667, 83], [666, 83], [663, 80], [663, 77], [660, 72], [658, 71], [629, 71], [627, 69]], "94-103": [[620, 67], [618, 69], [617, 69], [615, 71], [615, 74], [614, 75], [614, 78], [616, 80], [616, 82], [618, 84], [618, 87], [615, 90], [615, 92], [660, 92], [663, 89], [663, 88], [667, 88], [672, 84], [672, 79], [674, 79], [674, 81], [677, 84], [682, 84], [684, 86], [687, 86], [691, 82], [696, 82], [699, 85], [699, 86], [702, 89], [704, 89], [705, 90], [707, 90], [707, 92], [736, 92], [741, 86], [764, 86], [770, 83], [773, 79], [773, 78], [799, 78], [799, 89], [893, 89], [893, 69], [886, 69], [886, 34], [852, 34], [852, 35], [790, 35], [790, 37], [840, 37], [840, 67], [842, 67], [842, 37], [854, 37], [855, 36], [881, 36], [884, 39], [884, 67], [840, 67], [840, 69], [796, 68], [796, 72], [795, 72], [795, 70], [775, 70], [775, 74], [791, 74], [793, 76], [800, 76], [800, 72], [843, 72], [843, 70], [884, 69], [884, 71], [891, 71], [891, 87], [801, 87], [801, 76], [771, 76], [769, 78], [769, 79], [768, 80], [765, 80], [762, 83], [740, 83], [734, 89], [709, 89], [705, 85], [703, 85], [697, 77], [695, 77], [693, 75], [691, 75], [685, 80], [679, 80], [678, 79], [678, 77], [676, 75], [671, 75], [668, 78], [668, 83], [666, 83], [662, 78], [662, 74], [660, 72], [657, 72], [656, 71], [629, 71], [629, 69], [627, 67]], "53-93": [[621, 66], [618, 69], [617, 69], [615, 71], [615, 74], [614, 75], [614, 78], [615, 79], [615, 81], [618, 84], [618, 87], [615, 90], [615, 92], [660, 92], [663, 89], [663, 87], [669, 87], [673, 83], [676, 83], [677, 84], [682, 84], [684, 86], [688, 86], [688, 84], [692, 80], [693, 80], [695, 82], [696, 82], [699, 85], [699, 86], [702, 89], [705, 89], [708, 92], [736, 92], [741, 86], [765, 86], [767, 84], [769, 84], [778, 74], [791, 74], [791, 76], [800, 76], [800, 67], [842, 67], [842, 35], [791, 35], [791, 37], [840, 37], [840, 65], [797, 65], [797, 71], [776, 71], [763, 83], [740, 83], [734, 89], [709, 89], [705, 85], [703, 85], [697, 77], [695, 77], [693, 75], [691, 75], [685, 80], [679, 80], [678, 79], [678, 77], [676, 75], [671, 75], [668, 77], [668, 83], [666, 83], [662, 78], [662, 74], [659, 71], [629, 71], [629, 69], [627, 66]], "144-166, 44-52, T:0-1": [[616, 71], [616, 72], [617, 72], [617, 73], [617, 74], [616, 74], [616, 75], [615, 75], [615, 78], [616, 78], [616, 79], [617, 79], [617, 80], [616, 81], [617, 82], [620, 83], [623, 84], [626, 83], [626, 84], [625, 85], [624, 86], [623, 86], [622, 87], [621, 87], [620, 87], [619, 88], [618, 88], [617, 89], [616, 90], [616, 91], [622, 91], [623, 90], [624, 89], [625, 89], [626, 88], [627, 87], [628, 87], [629, 86], [630, 85], [631, 84], [632, 84], [633, 84], [633, 85], [634, 86], [635, 87], [635, 89], [634, 90], [634, 91], [639, 91], [639, 86], [638, 85], [637, 84], [637, 83], [647, 83], [647, 87], [646, 87], [645, 88], [643, 88], [643, 89], [642, 89], [642, 91], [647, 91], [649, 90], [650, 89], [650, 88], [651, 87], [652, 86], [652, 84], [654, 84], [655, 85], [656, 86], [656, 88], [655, 89], [654, 90], [655, 91], [659, 91], [660, 90], [661, 89], [661, 88], [660, 87], [660, 85], [659, 84], [659, 83], [658, 82], [658, 81], [659, 80], [660, 81], [661, 82], [662, 83], [663, 84], [664, 85], [665, 86], [669, 86], [670, 85], [668, 83], [667, 84], [666, 84], [665, 83], [664, 82], [663, 81], [662, 80], [661, 79], [661, 76], [660, 75], [660, 74], [659, 73], [658, 72], [628, 72], [628, 71], [627, 70], [625, 70], [624, 71], [620, 71], [619, 70], [617, 70]]}, "center": {"104-143": [628, 81], "94-103": [628, 81], "53-93": [652, 82], "144-166, 44-52, T:0-1": [623, 78]}},
{"id": "twvv4a", "name": "Flag of Iraq", "description": "Iraq is a country in the Middle East region of Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Iraq", "https://en.wikipedia.org/wiki/Flag_of_Iraq"]}, "path": {"22": [[523, 254], [520, 257], [523, 260], [526, 257]], "136-154": [[529, 1345], [529, 1360], [530, 1360], [530, 1366], [591, 1366], [591, 1345]], "114-135": [[529, 1344], [529, 1360], [530, 1360], [530, 1366], [576, 1366], [576, 1344]], "78-88": [[1418, 15], [1418, 33], [1450, 33], [1450, 15]], "75-77": [[1558, 13], [1540, 13], [1540, 36], [1558, 36]], "96-99": [[1101, 194], [1101, 201], [1110, 201], [1110, 194]], "12-13": [[175, 254], [172, 257], [175, 260], [178, 257]], "155-165, T:0-1": [[530, 1340], [530, 1366], [589, 1366], [589, 1340]]}, "center": {"22": [523, 257], "136-154": [560, 1356], "114-135": [553, 1355], "78-88": [1434, 24], "75-77": [1549, 25], "96-99": [1106, 198], "12-13": [175, 257], "155-165, T:0-1": [560, 1353]}},
{"id": "twvv0y", "name": "Among Us Morning Lobby", "description": "Selection of players from the Twitch Among Us Morning Lobby/Crewfu. From left to right: Wolfabelle, dakotaz, itsHafu, Steven Suptic, DumbDog, 5up", "links": {"website": ["https://www.innersloth.com/games/among-us/"], "subreddit": ["5up", "stevensuptic", "Wolfabelle"]}, "path": {"109-166, T:0-1": [[1835, 1379], [1803, 1379], [1803, 1369], [1836, 1369], [1836, 1379]]}, "center": {"109-166, T:0-1": [1820, 1374]}},
@@ -2121,9 +2115,9 @@
{"id": "twvlmm", "name": "Over the Garden Wall", "description": "TV show Over the Garden Wall's main characters: Brothers Greg and Wirt", "links": {"subreddit": ["overthegardenwall"]}, "path": {"109-167, T:0-1": [[1961, 1482], [1974, 1482], [1974, 1493], [1961, 1493]]}, "center": {"109-167, T:0-1": [1968, 1488]}},
{"id": "twvlhd", "name": "UCLA Bruins", "description": "The University of California, Los Angeles (UCLA) is a university in Los Angeles, California, United States. This art depicts the logo of the UCLA sports teams, the UCLA Bruins.", "links": {"website": ["http://www.uclabruins.com/", "https://en.wikipedia.org/wiki/UCLA_Bruins"], "subreddit": ["ucla"]}, "path": {"61-165, T:0-1": [[356, 252], [392, 252], [392, 272], [356, 272]]}, "center": {"61-165, T:0-1": [374, 262]}},
{"id": "twvl3j", "name": "Wacom", "description": "A small drawing of CoolcidProds (@CoolcidProd) character Wacom.", "links": {"website": ["https://youtube.com/c/CoolcidProd"], "subreddit": ["place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[498, 1110], [508, 1110], [508, 1121], [498, 1121]]}, "center": {"109-166, T:0-1": [503, 1116]}},
-{"id": "twvl2y", "name": "Koronesuki", "description": "Representation of Hololive VTuber Inugami Korone's fans and viewers.", "links": {"website": ["https://en.hololive.tv/portfolio/items/inugami-korone"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1374, 966], [1374, 968], [1379, 972], [1379, 975], [1381, 974], [1381, 972], [1383, 972], [1384, 971], [1381, 970], [1379, 969], [1380, 967], [1385, 966], [1381, 962]]}, "center": {"56-165, T:0-1": [1379, 968]}},
+{"id": "twvl2y", "name": "Koronesuki", "description": "Representation of Hololive VTuber Inugami Korone's fans and viewers.", "links": {"website": ["https://en.hololive.tv/portfolio/items/inugami-korone"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1374, 966], [1374, 968], [1379, 972], [1379, 975], [1381, 974], [1381, 972], [1383, 972], [1384, 971], [1381, 970], [1379, 969], [1380, 967], [1385, 966], [1381, 962]]}, "center": {"56-165, T:0-1": [1379, 968]}},
{"id": "twvl2w", "name": "Scotland heart", "description": "Scotland is a country in the United Kingdom.\n\nThis is a small Scottish heart showing solidarity with Ukraine. It was moved up in the final hours to accommodate the An-225 plane.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland"]}, "path": {"134-157": [[253, 172], [251, 174], [251, 175], [255, 179], [259, 175], [259, 174], [257, 172]], "131-133": [[247, 190], [245, 192], [245, 193], [249, 197], [253, 193], [253, 192], [251, 190]], "101-102": [[259, 172], [257, 174], [257, 175], [261, 179], [267, 179], [271, 175], [271, 174], [269, 172]], "85-100": [[265, 172], [263, 174], [263, 175], [267, 179], [271, 175], [271, 174], [269, 172]], "73-76": [[277, 172], [275, 174], [275, 175], [279, 179], [283, 175], [283, 174], [281, 172]], "103-126, 47-72": [[259, 172], [257, 174], [257, 175], [261, 179], [265, 175], [265, 174], [263, 172]], "158-165, T:0-1": [[253, 171], [251, 173], [251, 174], [254, 177], [256, 177], [259, 174], [259, 173], [257, 171]]}, "center": {"134-157": [255, 175], "131-133": [249, 193], "101-102": [264, 176], "85-100": [267, 175], "73-76": [279, 175], "103-126, 47-72": [261, 175], "158-165, T:0-1": [255, 174]}},
-{"id": "twvkxq", "name": "New Mexico Flag", "description": "This is a depiction of the flag of the US state of New Mexico. The red Zia symbol is a symbol of the Zia pueblo. The red and green chile are an homage to the state question and answer. (Red or Green? Christmas.) The chile is native to New Mexico and is commonly referred to as Hatch green chile or New Mexico chile. Both red and green chile are a major and unique part of New Mexican cuisine distinguishing it from other Mexican and southwest US cuisines.", "links": {"subreddit": ["NewMexico"]}, "path": {"56-166, T:0-1": [[1449, 869], [1437, 870], [1437, 877], [1438, 882], [1439, 891], [1439, 898], [1440, 903], [1444, 905], [1449, 905], [1453, 903], [1453, 896], [1453, 888], [1452, 881], [1450, 878], [1449, 870], [1450, 875], [1450, 870]]}, "center": {"56-166, T:0-1": [1445, 887]}},
+{"id": "twvkxq", "name": "Flag of New Mexico", "description": "New Mexico is a state in the United States. The red Zia symbol is a symbol of the Zia pueblo. The red and green chiles are an homage to the state question and answer. (Red or Green? Christmas.) The chile is native to New Mexico and is commonly referred to as Hatch chile or New Mexico chile. Both red and green chile are a major and unique part of New Mexican cuisine, distinguishing it from other Mexican and southwest U.S. cuisines.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Mexico", "https://en.wikipedia.org/wiki/Flag_of_New_Mexico"], "subreddit": ["NewMexico"]}, "path": {"57-69": [[1437, 878], [1437, 892], [1441, 898], [1453, 898], [1453, 878]], "70-166, T:0-1": [[1437, 869], [1437, 893], [1440, 898], [1440, 902], [1438, 904], [1438, 905], [1450, 905], [1453, 902], [1453, 879], [1450, 877], [1450, 869]]}, "center": {"57-69": [1445, 888], "70-166, T:0-1": [1445, 887]}},
{"id": "twvkui", "name": "Dungeons and Daddies", "description": "A DnD podcast about four dads lost in the forgotten realms on a quest to rescue their sons. Starring Freddie Wong, Matt Arnold, Will Campos, Beth May, and Anthony Burch as your Daddy Master.", "links": {"website": ["https://www.dungeonsanddaddies.com/"], "subreddit": ["DungeonsAndDaddies"]}, "path": {"109-166, T:0-1": [[490, 1542], [514, 1542], [514, 1549], [490, 1549]]}, "center": {"109-166, T:0-1": [502, 1546]}},
{"id": "twvks0", "name": "Compliance", "description": "Compliance is a community-driven Minecraft texture/resource pack available in 32x and 64x resolutions, aiming to provide higher-resolution textures while staying true to the vanilla Minecraft textures.", "links": {"website": ["https://compliancepack.net/"], "subreddit": ["compliancepack"]}, "path": {"56-58": [[1412, 110], [1403, 115], [1403, 116], [1406, 119], [1416, 119], [1421, 117], [1421, 115]], "146-166, 59-139, T:0-1": [[1426, 128], [1429, 128], [1429, 127], [1431, 127], [1431, 126], [1433, 126], [1433, 125], [1435, 125], [1435, 124], [1436, 124], [1436, 113], [1435, 113], [1435, 112], [1433, 112], [1433, 111], [1431, 111], [1431, 110], [1429, 110], [1429, 109], [1426, 109], [1426, 110], [1424, 110], [1424, 111], [1422, 111], [1422, 112], [1420, 112], [1420, 113], [1419, 113], [1419, 124], [1420, 124], [1420, 125], [1422, 125], [1422, 126], [1424, 126], [1424, 127], [1426, 127]]}, "center": {"56-58": [1412, 115], "146-166, 59-139, T:0-1": [1428, 119]}},
{"id": "twvk4u", "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": {"38-44": [[71, 716], [71, 765], [125, 765], [125, 722], [118, 722], [111, 720], [107, 716]], "7-37": [[71, 716], [71, 765], [125, 765], [125, 737], [120, 732], [120, 730], [117, 730], [115, 732], [114, 732], [113, 731], [109, 731], [108, 730], [108, 726], [101, 721], [100, 716]], "45-166, T:0-1": [[71, 715], [71, 765], [125, 765], [125, 715]]}, "center": {"38-44": [96, 741], "7-37": [92, 744], "45-166, T:0-1": [98, 740]}},
@@ -2136,7 +2130,7 @@
{"id": "twvjb3", "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"]}, "path": {"109-165, T:0-1": [[1284, 1301], [1164, 1301], [1164, 1366], [1285, 1365]]}, "center": {"109-165, T:0-1": [1224, 1333]}},
{"id": "twvj5v", "name": "Cacabox", "description": "Cacabox is a French community of streamers, YouTubers, and Twitter users. On the left you can see avatars of Potatoz and Grimkujow la fraude.", "links": {"website": ["https://www.youtube.com/channel/UC6izVPg2AiK83K-rqS6AgmA", "https://twitter.com/cacaboxtv"]}, "path": {"109-166, T:0-1": [[1387, 1261], [1445, 1261], [1445, 1279], [1387, 1279]]}, "center": {"109-166, T:0-1": [1416, 1270]}},
{"id": "twvj2a", "name": "Mister Jägger's green pixel", "description": "During his stream in April 4th, Spanish streamer Míster Jägger (JaggerPrincesa), a Spanish streamer with a chaotic nature, asked his audience to keep the pixel at 1148, 1162 green until the end of r/place. That was his only request and legacy for the event, fitting his chaotic content. His community protected the green pixel until the end.", "links": {}, "path": {"109-164, T:0-1": [[1147, 1161], [1147, 1163], [1149, 1163], [1149, 1161]]}, "center": {"109-164, T:0-1": [1148, 1162]}},
-{"id": "twvj0l", "name": "Death Sensei", "description": "Hololive English VTuber Mori Calliope's mascot 'Death Sensei', The Grim Reaper with sunglasses.", "links": {"website": ["https://www.youtube.com/channel/UCL_qhgtOy0dy1Agp8vkySQg"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1408, 919], [1419, 924], [1416, 936], [1405, 935], [1407, 926]]}, "center": {"56-166, T:0-1": [1412, 928]}},
+{"id": "twvj0l", "name": "Death Sensei", "description": "Hololive English VTuber Mori Calliope's mascot 'Death Sensei', The Grim Reaper with sunglasses.", "links": {"website": ["https://www.youtube.com/channel/UCL_qhgtOy0dy1Agp8vkySQg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1408, 919], [1419, 924], [1416, 936], [1405, 935], [1407, 926]]}, "center": {"56-166, T:0-1": [1412, 928]}},
{"id": "twvits", "name": "École 42", "description": "École 42 is a private and free-of-charge programming school in Paris. It was founded by Xavier Niel.", "links": {"website": ["https://42.f", "https://en.wikipedia.org/wiki/42_(school)"]}, "path": {"2-46": [[31, 418], [31, 439], [52, 439], [52, 436], [59, 436], [59, 418]], "47-165, T:0-1": [[45, 421], [36, 430], [36, 435], [44, 435], [44, 439], [49, 439], [49, 435], [59, 435], [59, 421]]}, "center": {"2-46": [42, 429], "47-165, T:0-1": [48, 428]}},
{"id": "twvir6", "name": "Fil Necati", "description": "Fil Necati is an elephant character in the Turkish animated television series Kral Şakir, made by Cartoon Network. The show had six seasons and originally aired on the 23rd of April 2016. Necati's popularity blew up after a video was released where a plushie of the character gets penetrated.", "links": {"website": ["https://king-shakir.fandom.com/wiki/Necati"]}, "path": {"106-143": [[1627, 338], [1661, 338], [1664, 341], [1676, 354], [1676, 363], [1672, 360], [1666, 360], [1661, 365], [1656, 365], [1656, 397], [1653, 397], [1652, 408], [1650, 408], [1647, 404], [1626, 402], [1626, 383], [1622, 383], [1616, 379], [1617, 373], [1617, 363], [1619, 361], [1619, 359], [1614, 359], [1609, 356], [1609, 353], [1617, 350], [1627, 340]], "63-105": [[1651, 331], [1664, 338], [1672, 347], [1672, 375], [1670, 375], [1671, 403], [1657, 408], [1657, 430], [1651, 430], [1650, 422], [1646, 422], [1646, 428], [1635, 434], [1632, 432], [1634, 430], [1634, 420], [1628, 406], [1620, 396], [1628, 381], [1618, 382], [1605, 377], [1599, 370], [1599, 363], [1625, 340], [1630, 334]], "59-62": [[1672, 352], [1672, 364], [1679, 374], [1681, 371], [1683, 358], [1678, 352]], "144-166, T:0-1": [[1627, 340], [1665, 340], [1665, 346], [1665, 347], [1665, 348], [1671, 347], [1671, 360], [1665, 360], [1659, 365], [1656, 365], [1656, 374], [1651, 374], [1648, 377], [1648, 382], [1651, 383], [1651, 397], [1632, 397], [1632, 392], [1626, 392], [1626, 374], [1624, 372], [1624, 371], [1626, 370], [1626, 365], [1620, 362], [1620, 359], [1616, 359], [1611, 354], [1614, 350], [1617, 350]]}, "center": {"106-143": [1638, 357], "63-105": [1645, 360], "59-62": [1677, 361], "144-166, T:0-1": [1641, 357]}},
{"id": "twvios", "name": "Praise the Sun", "description": "Signature phrase of Dark Souls character Solaire of Astora.", "links": {"website": ["https://en.wikipedia.org/wiki/Solaire_of_Astora"], "subreddit": ["darksouls"]}, "path": {"109-165, T:0-1": [[853, 1314], [853, 1348], [859, 1348], [859, 1356], [864, 1356], [864, 1320], [858, 1320], [858, 1314]]}, "center": {"109-165, T:0-1": [859, 1335]}},
@@ -2173,7 +2167,7 @@
{"id": "twvd2x", "name": "French nuclear power plant", "description": "This power plant was built as a proud symbol of the large share of nuclear in the production of French electricity, and as a taunt to their German neighbours (both IRL and on the canvas), who stopped their nuclear energy program.", "links": {"website": ["https://en.wikipedia.org/wiki/Nuclear_power_in_France"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"63-66": [[1171, 813], [1171, 818], [1174, 818], [1174, 829], [1200, 829], [1200, 824], [1196, 814], [1198, 811], [1198, 810], [1196, 808], [1196, 797], [1194, 794], [1193, 794], [1193, 787], [1192, 787], [1189, 788], [1186, 791], [1186, 794], [1184, 796], [1183, 798], [1183, 800], [1185, 800], [1185, 802], [1187, 802], [1187, 805], [1186, 806], [1178, 806], [1178, 813]], "92-166, T:0-1": [[1200, 829], [1200, 825], [1196, 815], [1198, 812], [1198, 810], [1197, 809], [1197, 802], [1200, 802], [1200, 795], [1196, 791], [1196, 789], [1197, 788], [1197, 786], [1196, 786], [1196, 774], [1197, 773], [1197, 770], [1195, 768], [1192, 768], [1192, 771], [1191, 771], [1189, 773], [1189, 783], [1186, 783], [1183, 781], [1182, 782], [1182, 784], [1184, 790], [1187, 793], [1187, 797], [1186, 798], [1186, 808], [1182, 808], [1181, 807], [1180, 807], [1178, 809], [1178, 813], [1171, 813], [1171, 818], [1174, 818], [1174, 829]]}, "center": {"63-66": [1187, 818], "92-166, T:0-1": [1187, 819]}},
{"id": "twvd2j", "name": "Lucy", "description": "Lucy is a fish drawn by the user Keverely.", "links": {"subreddit": ["PlaceFishCult", "place_CentralAlliance"]}, "path": {"10-166, T:0-1": [[484, 891], [482, 893], [484, 895], [487, 895], [487, 891]]}, "center": {"10-166, T:0-1": [485, 893]}},
{"id": "twvcwz", "name": "Lionel Messi's shirt number", "description": "A combination of Lionel Messi's iconic Barcelona and Argentina colours with his number 18. Created as a tribute by /r/Barca.", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["Barca", "place_CentralAlliance"]}, "path": {"1-165, T:0-1": [[448, 936], [448, 944], [457, 944], [457, 936]]}, "center": {"1-165, T:0-1": [453, 940]}},
-{"id": "twvcnc", "name": "Watson Amelia", "description": "Hololive EN 1st gen. (Myth) member Amelia Watson...with a moustache!", "links": {"website": ["https://en.hololive.tv/portfolio/items/watson-amelia"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1337, 929], [1335, 933], [1335, 944], [1337, 947], [1341, 947], [1343, 943], [1345, 935], [1341, 929]]}, "center": {"56-166, T:0-1": [1339, 938]}},
+{"id": "twvcnc", "name": "Watson Amelia", "description": "Hololive EN 1st gen. (Myth) member Amelia Watson...with a moustache!", "links": {"website": ["https://en.hololive.tv/portfolio/items/watson-amelia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1337, 929], [1335, 933], [1335, 944], [1337, 947], [1341, 947], [1343, 943], [1345, 935], [1341, 929]]}, "center": {"56-166, T:0-1": [1339, 938]}},
{"id": "twvclu", "name": "Flag of Thailand", "description": "Thailand is a country in Southeast Asia. This flag of Thailand has an elephant and a map of Thailand", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["Thailand", "thaithai"]}, "path": {"151-159": [[1448, 739], [1448, 752], [1461, 752], [1461, 764], [1508, 764], [1508, 747], [1514, 747], [1514, 739]], "56-150": [[1461, 739], [1461, 764], [1508, 764], [1508, 747], [1514, 747], [1514, 739]], "39-41": [[245, 88], [245, 104], [274, 104], [274, 88]], "160-166, T:0-1": [[1443, 739], [1443, 746], [1447, 746], [1447, 752], [1460, 752], [1460, 764], [1508, 764], [1508, 747], [1514, 747], [1514, 739]]}, "center": {"151-159": [1481, 752], "56-150": [1488, 752], "39-41": [260, 96], "160-166, T:0-1": [1481, 752]}},
{"id": "twvcjo", "name": "RimWorld", "description": "RimWorld is a sci-fi western colony simulator game set in the distant future and driven by an intelligent AI storyteller. The game follows three survivors from a crashed space liner as they build a colony on a frontier world at the rim of known space. It is inspired by the space western vibe of Firefly, the deep simulation of Dwarf Fortress, and the epic scale of Dune and Warhammer 40,000. Sometimes described as simplified Dwarf Fortress, it is known memetically for making human leather hats and war crimes such as eating without a table.", "links": {"website": ["https://rimworldgame.com/", "https://en.wikipedia.org/wiki/RimWorld"], "subreddit": ["RimWorld"]}, "path": {"155-157": [[889, 1949], [883, 1952], [878, 1957], [877, 1962], [877, 1970], [888, 1970], [888, 1971], [892, 1971], [892, 1972], [898, 1972], [900, 1970], [906, 1970], [908, 1968], [908, 1963], [905, 1957], [899, 1951], [895, 1949]], "56-101": [[1856, 590], [1849, 594], [1845, 601], [1845, 609], [1849, 615], [1856, 619], [1863, 619], [1869, 615], [1874, 608], [1874, 603], [1871, 596], [1869, 593], [1863, 590]], "158-166, T:0-1": [[900, 1950], [894, 1950], [893, 1951], [891, 1951], [890, 1952], [889, 1952], [884, 1957], [884, 1958], [883, 1959], [883, 1961], [882, 1961], [882, 1968], [883, 1968], [883, 1971], [884, 1971], [884, 1973], [885, 1973], [885, 1974], [886, 1974], [886, 1975], [887, 1975], [887, 1976], [888, 1976], [889, 1976], [892, 1979], [895, 1979], [895, 1980], [899, 1980], [900, 1979], [900, 1978], [905, 1977], [905, 1976], [907, 1976], [907, 1975], [908, 1975], [909, 1974], [911, 1973], [911, 1968], [912, 1968], [912, 1963], [911, 1962], [911, 1960], [910, 1960], [910, 1958], [909, 1958], [909, 1957], [904, 1952], [903, 1952], [902, 1951], [900, 1951]]}, "center": {"155-157": [892, 1960], "56-101": [1859, 604], "158-166, T:0-1": [896, 1964]}},
{"id": "twvc8s", "name": "Right to repair", "description": "Right to repair is a movement that focuses on stopping companies from going out of their way to prevent independent people (like me or you) from fixing and servicing their products. The movement pushes to restore access to parts, schematics, and tools (including software) available for all sorts of devices, just like it was years ago.", "links": {"website": ["https://en.wikipedia.org/wiki/Right_to_repair"], "subreddit": ["righttorepair"]}, "path": {"138-167, T:0-1": [[1902, 234], [1902, 239], [1940, 239], [1940, 234]]}, "center": {"138-167, T:0-1": [1921, 237]}},
@@ -2202,14 +2196,13 @@
{"id": "twv9n3", "name": "iskall85", "description": "iskall85 is a Minecraft YouTuber who joined Hermitcraft in Season 4. He is the leader of the dev team for the Minecraft modpack Vault Hunters.", "links": {"website": ["https://www.youtube.com/c/iskall85", "https://hermitcraft.fandom.com/wiki/Iskall85"], "subreddit": ["HermitCraft"]}, "path": {"24-165, T:0-1": [[869, 623], [869, 631], [878, 631], [878, 623]]}, "center": {"24-165, T:0-1": [874, 627]}},
{"id": "twv9io", "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": {"6-40": [[359, 888], [359, 910], [401, 910], [401, 888]], "41-166, T:0-1": [[448, 910], [448, 888], [359, 888], [359, 910]]}, "center": {"6-40": [380, 899], "41-166, T:0-1": [381, 899]}},
{"id": "twv9g4", "name": "Ramee", "description": "Logo of the Grand Theft Auto V role-play streamer Ramee. Also includes a memorial for fellow RP streamer Blue622 who passed away in 2020.", "links": {"website": ["https://www.twitch.tv/ramee"], "subreddit": ["Chang_Gang", "NoPixel"]}, "path": {"1-166, T:0-1": [[429, 963], [396, 963], [397, 980], [430, 979]]}, "center": {"1-166, T:0-1": [413, 971]}},
-{"id": "twv9a9", "name": "RTS", "description": "RTS broadcasts radio and TV in French-speaking Switzerland", "links": {"website": ["https://www.rts.ch"]}, "path": {"56-165, T:0-1": [[1176, 871], [1188, 871], [1188, 876], [1176, 876], [1176, 871], [1182, 873], [1180, 874]]}, "center": {"56-165, T:0-1": [1182, 873]}},
{"id": "twv974", "name": "Xibalbistán Flag", "description": "Flag of the micronation created by the Xibalboys, a small but dedicated group of friends.nFunded by Alejandro, Isi, Llibert and Chuko", "links": {"website": ["https://xibalbistan.com"]}, "path": {"109-166, T:0-1": [[846, 1814], [846, 1821], [855, 1821], [855, 1814], [853, 1814]]}, "center": {"109-166, T:0-1": [851, 1818]}},
{"id": "twv91e", "name": "Tolkien Estate", "description": "The Tolkien Estate is a legal entity managing the rights of J. R. R. Tolkien, author of The Lord of the Rings and The Hobbit.", "links": {"website": ["https://en.wikipedia.org/wiki/Tolkien_Estate"], "subreddit": ["lotr"]}, "path": {"95-166, T:0-1": [[1823, 430], [1848, 430], [1848, 476], [1823, 476]]}, "center": {"95-166, T:0-1": [1836, 453]}},
{"id": "100004", "name": "Delutaya", "description": "A small depiction of the indie VTuber Delutaya.", "links": {"website": ["https://www.youtube.com/channel/UC7YXqPO3eUnxbJ6rN0z2z1Q"], "subreddit": ["Delutaya"]}, "path": {"109-166, T:0-1": [[1486, 1064], [1484, 1066], [1484, 1071], [1485, 1074], [1491, 1074], [1492, 1071], [1492, 1066], [1490, 1064]]}, "center": {"109-166, T:0-1": [1488, 1069]}},
{"id": "twv8ov", "name": "Mona Lisa", "description": "The Mona Lisa is a painting created by Italian Renaissance artist Leonardo da Vinci.\n\nThis art was present in the 2017 r/place but was griefed and not finished in the 2022 version.", "links": {"website": ["https://en.wikipedia.org/wiki/Mona_Lisa"], "subreddit": ["MonaLisaClan"]}, "path": {"61-77": [[1254, 534], [1254, 540], [1320, 540], [1320, 534]], "109-166, T:0-1": [[1489, 1289], [1489, 1395], [1492, 1395], [1492, 1309], [1495, 1307], [1499, 1307], [1502, 1310], [1501, 1321], [1502, 1324], [1509, 1324], [1509, 1336], [1515, 1336], [1515, 1344], [1518, 1347], [1518, 1352], [1526, 1352], [1527, 1353], [1537, 1353], [1547, 1343], [1547, 1336], [1557, 1322], [1547, 1317], [1547, 1311], [1551, 1305], [1551, 1302], [1549, 1300], [1549, 1297], [1555, 1297], [1555, 1293], [1559, 1293], [1568, 1298], [1571, 1298], [1571, 1305], [1570, 1306], [1570, 1310], [1571, 1311], [1571, 1314], [1573, 1316], [1573, 1324], [1575, 1324], [1575, 1316], [1576, 1316], [1576, 1289]]}, "center": {"109-166, T:0-1": [1525, 1310]}},
{"id": "twv8ol", "name": "Rust", "description": "Rust is a multiplayer-only survival video game developed by Facepunch Studios.", "links": {"website": ["https://rust.facepunch.com/"], "subreddit": ["playrust", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[524, 993], [540, 993], [540, 1017], [524, 1018], [524, 1006], [524, 994], [525, 995]]}, "center": {"109-166, T:0-1": [532, 1005]}},
{"id": "twv8nx", "name": "StressMonster101", "description": "StressMonster101 is a Minecraft YouTuber.", "links": {"website": ["https://www.youtube.com/c/Stressmonster101", "https://hermitcraft.fandom.com/wiki/StressMonster101"], "subreddit": ["HermitCraft"]}, "path": {"16-165, T:0-1": [[887, 591], [887, 599], [896, 599], [896, 591]]}, "center": {"16-165, T:0-1": [892, 595]}},
-{"id": "twv8km", "name": "Zombie Escape Corner", "description": "Logos created by Mapeadores, Skial and GFLClan.", "links": {}, "path": {"56-166, T:0-1": [[1453, 884], [1453, 897], [1502, 897], [1502, 884]]}, "center": {"56-166, T:0-1": [1478, 891]}},
+{"id": "twv8km", "name": "Zombie Escape Corner", "description": "Zombie Escape is a mod for the games Counter Strike: Global Offensive and Team Fortress 2. This area contains logos of the Zombie Escape communities Mapeadores, Skial, and GFLClan.", "links": {"website": ["https://zombieescape.fandom.com/wiki/Zombie_Escape"], "subreddit": ["skial"]}, "path": {"56-81": [[1453, 884], [1453, 890], [1460, 890], [1460, 898], [1513, 898], [1513, 890], [1498, 890], [1498, 884]], "82-166, T:0-1": [[1453, 884], [1453, 890], [1452, 890], [1452, 898], [1503, 898], [1503, 890], [1498, 890], [1498, 884]]}, "center": {"56-81": [1483, 891], "82-166, T:0-1": [1478, 891]}},
{"id": "twv8bo", "name": "Carolina Hurricanes", "description": "A team in the ice hockey league NHL based in Raleigh, North Carolina, United States. The placement of the logo in the corner of the Finnish flag is in reference to the team's core of Finnish players.", "links": {"website": ["https://www.nhl.com/hurricanes"]}, "path": {"109-164, T:0-1": [[1258, 1309], [1242, 1312], [1235, 1315], [1231, 1321], [1232, 1325], [1238, 1329], [1246, 1329], [1254, 1326], [1259, 1323], [1263, 1320], [1262, 1312]]}, "center": {"109-164, T:0-1": [1247, 1319]}},
{"id": "twv8b1", "name": "Brotherhood of Nod", "description": "Faction in real time strategy series Command and Conquer", "links": {"subreddit": ["commandandconquer"]}, "path": {"109-166, T:0-1": [[1186, 1895], [1191, 1891], [1196, 1891], [1200, 1895], [1200, 1905], [1186, 1905]]}, "center": {"109-166, T:0-1": [1193, 1899]}},
{"id": "twv86p", "name": "Imaginary maps mascot", "description": "Pixel art depicting the mascot for the r/imaginarymaps subreddit, Mappy along with a companion. From the beginning it was supposed to be located at 1174,206. However it had to be moved after being destroyed. A collab was planned with the tf2 community however it was never realised. The collaboration would've added hats to Mappy.", "links": {"subreddit": ["imaginarymaps"]}, "path": {"109-166, T:0-1": [[1500, 1586], [1501, 1585], [1502, 1584], [1516, 1584], [1517, 1585], [1517, 1589], [1516, 1590], [1516, 1596], [1517, 1597], [1518, 1598], [1519, 1598], [1520, 1599], [1521, 1600], [1522, 1604], [1500, 1604], [1499, 1603], [1499, 1600], [1500, 1599], [1500, 1597], [1501, 1596], [1501, 1590], [1500, 1589]]}, "center": {"109-166, T:0-1": [1509, 1595]}},
@@ -2236,7 +2229,7 @@
{"id": "twv4ar", "name": "The Binding of Isaac", "description": "The Binding of Isaac is a roguelite game. This art features the protagonist Isaac in his appearance from Binding of Isaac: Rebirth after he picks the items Godhead and Mom's Heels. He also has two Mini-Isaac at his sides, Judas and Fiend.", "links": {"website": ["https://bindingofisaac.com/", "https://en.wikipedia.org/wiki/The_Binding_of_Isaac_(video_game)"], "subreddit": ["theisaacplace", "bindingofisaac", "themoddingofisaac"]}, "path": {"35-165, T:0-1": [[68, 334], [67, 330], [72, 326], [71, 320], [75, 313], [85, 310], [92, 311], [94, 313], [96, 316], [97, 319], [97, 324], [96, 326], [95, 328], [101, 328], [102, 327], [104, 333], [102, 336], [103, 337], [101, 340], [99, 341], [96, 341], [94, 345], [71, 345], [71, 338], [68, 336], [67, 335], [68, 334], [67, 334]]}, "center": {"35-165, T:0-1": [83, 332]}},
{"id": "twv497", "name": "Raspberry", "description": "Symbol of Twitch streamer Tsumyka's discord server", "links": {"website": ["https://www.twitch.tv/tsumyka"]}, "path": {"56-166, T:0-1": [[1986, 915], [1988, 915], [1989, 914], [1990, 913], [1992, 913], [1993, 912], [1993, 911], [1994, 910], [1995, 910], [1996, 909], [1996, 908], [1995, 907], [1996, 906], [1996, 900], [1995, 899], [1994, 899], [1993, 898], [1991, 898], [1990, 897], [1989, 896], [1989, 895], [1988, 894], [1987, 894], [1988, 895], [1988, 896], [1987, 897], [1986, 897], [1985, 898], [1984, 898], [1983, 899], [1982, 899], [1981, 900], [1980, 900], [1979, 900], [1978, 901], [1977, 901], [1976, 902], [1978, 902], [1978, 904], [1979, 905], [1980, 906], [1980, 907], [1980, 908], [1981, 909], [1981, 910], [1982, 911], [1983, 912], [1984, 912], [1985, 913], [1985, 914]]}, "center": {"56-166, T:0-1": [1988, 905]}},
{"id": "twv46f", "name": "ENIB Logo", "description": "Logo of the École Nationale d'Ingénieurs de Brest. An engineering school located in Brest, France.", "links": {"website": ["https://www.enib.fr/fr/"]}, "path": {"109-166, T:0-1": [[1822, 1460], [1842, 1460], [1842, 1465], [1822, 1465]]}, "center": {"109-166, T:0-1": [1832, 1463]}},
-{"id": "twv41z", "name": "Flag of Bavaria", "description": "Bavaria, officially the Free State of Bavaria, is a state in Germany. Its largest city is Munich.\n\nThis flag was added to Neuschwanstein Castle by a handful of Baviarians in order to immortalize a reference to their state, and to reference the castle's location. Slightly vandalized in the middle. Accompanied by a wind turbine close by in order to annoy the Bavarians.", "links": {"website": ["https://en.wikipedia.org/wiki/Bavaria", "https://en.wikipedia.org/wiki/Flag_of_Bavaria"], "subreddit": ["bavaria", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1849, 838], [1863, 838], [1863, 836], [1864, 836], [1864, 835], [1865, 835], [1865, 833], [1868, 833], [1868, 832], [1867, 832], [1867, 831], [1849, 831]]}, "center": {"56-166, T:0-1": [1857, 834]}},
+{"id": "twv41z", "name": "Flag of Bavaria", "description": "Bavaria, officially the Free State of Bavaria, is a state in Germany. Its largest city is Munich.\n\nThis flag was added to Neuschwanstein Castle by a handful of Baviarians in order to immortalize a reference to their state, and to reference the castle's location. It was slightly vandalized in the middle. The flag is accompanied by a wind turbine close by to annoy the Bavarians.", "links": {"website": ["https://en.wikipedia.org/wiki/Bavaria", "https://en.wikipedia.org/wiki/Flag_of_Bavaria"], "subreddit": ["bavaria", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"149-162": [[1848, 830], [1848, 842], [1850, 842], [1850, 839], [1867, 839], [1867, 838], [1865, 837], [1865, 835], [1867, 834], [1871, 834], [1871, 830]], "127-148": [[1848, 831], [1848, 842], [1850, 842], [1850, 839], [1859, 839], [1859, 832], [1850, 832], [1850, 831]], "98-120": [[1850, 830], [1850, 840], [1863, 840], [1863, 830]], "163-166, T:0-1": [[1849, 831], [1849, 839], [1864, 839], [1864, 833], [1862, 831]]}, "center": {"149-162": [1859, 835], "127-148": [1853, 835], "98-120": [1857, 835], "163-166, T:0-1": [1857, 835]}},
{"id": "twv3zl", "name": "Licitar", "description": "Licitar are colorful biscuits made from honey dough, and are often shaped like hearts. They are a part of Croatian and Slovenian tradition and are given as ornamental gifts.", "links": {"website": ["https://en.wikipedia.org/wiki/Licitar"], "subreddit": ["croatia"]}, "path": {"158-166, T:0-1": [[363, 894], [360, 897], [360, 899], [367, 906], [374, 899], [374, 897], [371, 894]]}, "center": {"158-166, T:0-1": [367, 899]}},
{"id": "twv3yc", "name": "Infinity Train door", "description": "Infinity Train is a Cartoon Network anthology series which takes place inside an infinite train. This is the door that separates all the cars and is a characteristic element of the show.", "links": {"subreddit": ["InfinityTrain", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[474, 1058], [480, 1058], [480, 1047], [475, 1047], [475, 1048], [474, 1048]]}, "center": {"109-166, T:0-1": [477, 1053]}},
{"id": "twv3y5", "name": "Red Skull pin", "description": "The Red Skull pins are important plot points in the 2007 Nintendo DS role-playing game The World Ends With You, made by Square Enix.\n\nThis art was originally the Player Pin, but was replaced after the original was destroyed in a raid by streamer xQc.", "links": {"website": ["https://twewy.fandom.com/wiki/Red_Skull"], "subreddit": ["TWEWY"]}, "path": {"129-164, T:0-1": [[1330, 527], [1329, 528], [1328, 528], [1324, 532], [1324, 533], [1323, 534], [1323, 536], [1324, 537], [1324, 538], [1328, 542], [1329, 542], [1330, 543], [1332, 543], [1333, 542], [1334, 542], [1338, 538], [1338, 537], [1339, 536], [1339, 534], [1338, 533], [1338, 532], [1334, 528], [1333, 528], [1332, 527]]}, "center": {"129-164, T:0-1": [1331, 535]}},
@@ -2246,7 +2239,7 @@
{"id": "twv3et", "name": "Wilbur Soot", "description": "Art of Wilbur Soot; YouTuber, Twitch streamer and musician's profile picture. One of his characters from the dreamsmp, ghostbur, sits in the bottom right corner.", "links": {"website": ["https://www.twitch.tv/wilbursoot"], "subreddit": ["WilburSoot"]}, "path": {"109-166, T:0-1": [[1821, 1466], [1848, 1466], [1847, 1487], [1856, 1487], [1856, 1496], [1821, 1496]]}, "center": {"109-166, T:0-1": [1836, 1482]}},
{"id": "twv3em", "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": {"64-128": [[1924, 489], [1921, 492], [1921, 497], [1920, 497], [1919, 496], [1915, 500], [1915, 501], [1920, 501], [1920, 506], [1922, 508], [1922, 536], [1924, 538], [1926, 536], [1926, 508], [1928, 506], [1928, 501], [1933, 501], [1933, 500], [1929, 496], [1928, 497], [1926, 497], [1926, 491]], "129-167, T:0-1": [[1924, 492], [1921, 495], [1921, 500], [1917, 500], [1917, 501], [1921, 505], [1921, 508], [1920, 509], [1922, 511], [1922, 535], [1924, 537], [1926, 535], [1926, 494]]}, "center": {"64-128": [1924, 501], "129-167, T:0-1": [1923, 502]}},
{"id": "twv3ef", "name": "Normandy SR-2", "description": "The ship of Commander Shepard, The main character in the Mass Effect series.", "links": {"website": ["https://masseffect.fandom.com/wiki/Normandy_SR-2"], "subreddit": ["masseffect"]}, "path": {"109-165, T:0-1": [[801, 999], [840, 999], [840, 1017], [839, 1017], [839, 1010], [824, 1010], [822, 1017], [801, 1017]]}, "center": {"109-165, T:0-1": [819, 1007]}},
-{"id": "twv3c0", "name": "The Outlet", "description": "In the early stages of r/place, a cable connected the French nuclear reactor with the German outlet. This symbolizes the German dependence on French electricity. It was decided that all German nuclear reactors and coal power plants should be shut down for 'green energy' which led to this dependence.", "links": {"website": ["https://energytransition.org/2015/06/germany-reliant-on-foreign-nuclear-power/"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1214, 840], [1214, 839], [1213, 839], [1213, 838], [1209, 838], [1209, 837], [1207, 837], [1207, 838], [1206, 838], [1205, 838], [1205, 839], [1205, 842], [1204, 843], [1203, 844], [1202, 844], [1201, 842], [1201, 845], [1202, 846], [1203, 846], [1204, 845], [1206, 845], [1208, 845], [1210, 844], [1212, 842]]}, "center": {"56-166, T:0-1": [1208, 841]}},
+{"id": "twv3c0", "name": "Outlet", "description": "This cable used to connect the French nuclear reactor with an electrical outlet on the German flag. This symbolized the German dependence on French electricity. It was decided that all German nuclear reactors and coal power plants should be shut down for \"green energy\" which led to this dependence.\n\nThe outlet was removed after the early stages of r/place, but the cable remained.", "links": {"website": ["https://energytransition.org/2015/06/germany-reliant-on-foreign-nuclear-power/"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"105-145": [[1199, 842], [1199, 843], [1202, 846], [1205, 846], [1206, 847], [1207, 847], [1214, 841], [1214, 840], [1212, 838], [1206, 838], [1204, 840], [1204, 842]], "99-104": [[1194, 828], [1194, 833], [1198, 837], [1198, 842], [1201, 846], [1205, 846], [1206, 847], [1210, 847], [1214, 843], [1214, 840], [1212, 838], [1206, 838], [1204, 840], [1204, 842], [1201, 842], [1201, 837], [1200, 836], [1200, 832], [1198, 829], [1196, 828]], "95-98": [[1194, 829], [1194, 833], [1200, 839], [1203, 839], [1205, 841], [1212, 841], [1214, 839], [1214, 835], [1211, 835], [1211, 831], [1203, 831], [1203, 833], [1200, 833], [1197, 831], [1197, 829]], "146-166, T:0-1": [[1200, 830], [1200, 844], [1202, 846], [1205, 846], [1205, 848], [1209, 848], [1209, 846], [1214, 841], [1214, 840], [1212, 838], [1205, 838], [1204, 836], [1204, 833], [1202, 830]]}, "center": {"105-145": [1208, 842], "99-104": [1208, 842], "95-98": [1207, 836], "146-166, T:0-1": [1204, 842]}},
{"id": "twv37b", "name": "Boneworks", "description": "Boneworks is a physics-based virtual reality game. It was developed by Stress Level Zero, whose logo is above the Boneworks logo. The crablet enemy type is depicted below.", "links": {"website": ["https://store.steampowered.com/app/823500/BONEWORKS/", "https://en.wikipedia.org/wiki/Boneworks"], "subreddit": ["boneworks"]}, "path": {"59-73": [[1531, 221], [1550, 221], [1550, 241], [1531, 241]], "74-166, T:0-1": [[1531, 221], [1550, 221], [1550, 259], [1531, 259]]}, "center": {"59-73": [1541, 231], "74-166, T:0-1": [1541, 240]}},
{"id": "twv34y", "name": "Enigma the Pachirisu", "description": "This critter is Enigma the Pachirisu, an OC (original character) created by u/Mystery5Me. Pachirisu is an Electric-type Pokémon from the Generation IV Pokémon games (Pokémon Diamond/Pearl).\n\nEnigma got placed here by the efforts of his personal friends as well as with assistance from the r/oneshot subreddit. This is his second iteration - his first version got destroyed during the first expansion of the canvas by the r/Canucks subreddit. Despite that, he was rebuilt and defended until the very end. Enigma was allies with Arceus from Pokémon on r/place, as well as r/oneshot. \"I could never have made it here without the combined strength of all my friends!\" - Enigma", "links": {"website": ["https://www.twitter.com/Mystery2Me", "https://bulbapedia.bulbagarden.net/wiki/Pachirisu_(Pok%C3%A9mon)"]}, "path": {"23-58": [[865, 474], [865, 481], [872, 481], [872, 474]], "109-160, 162-165, T:0-1": [[1671, 537], [1672, 536], [1677, 536], [1678, 537], [1678, 542], [1677, 543], [1672, 543], [1671, 542]]}, "center": {"23-58": [869, 478], "109-160, 162-165, T:0-1": [1675, 540]}},
{"id": "twv336", "name": "The Holy Flame", "description": "The Holy Flame is an item in the game Kenshi that serves as the equivalent of the Bible in Okranite, the game's religion. For citizens of the Holy Nation, it is necessary to carry one at all times.", "links": {"website": ["https://kenshi.fandom.com/wiki/The_Holy_Flame"], "subreddit": ["Kenshi"]}, "path": {"79-166, T:0-1": [[1608, 342], [1613, 337], [1616, 337], [1622, 343], [1622, 344], [1616, 350], [1615, 350], [1608, 343]]}, "center": {"79-166, T:0-1": [1615, 343]}},
@@ -2324,7 +2317,7 @@
{"id": "twxxzs", "name": "Animdustry", "description": "A character from the anime gacha bullet hell rhythm game as part of a Mindustry event", "links": {"website": ["https://github.com/Anuken/animdustry"], "subreddit": ["Mindustry"]}, "path": {"109-166, T:0-1": [[470, 1172], [471, 1173], [474, 1173], [478, 1177], [478, 1178], [479, 1179], [479, 1183], [480, 1184], [480, 1185], [477, 1188], [477, 1191], [478, 1192], [478, 1193], [477, 1194], [477, 1195], [478, 1196], [478, 1198], [477, 1199], [477, 1201], [476, 1202], [475, 1202], [474, 1201], [473, 1201], [472, 1200], [470, 1200], [470, 1201], [469, 1202], [468, 1202], [463, 1197], [463, 1196], [464, 1195], [464, 1194], [463, 1193], [463, 1192], [464, 1191], [464, 1188], [462, 1186], [462, 1185], [461, 1184], [461, 1183], [462, 1182], [462, 1181], [461, 1180], [461, 1178], [463, 1176], [463, 1175], [466, 1172]]}, "center": {"109-166, T:0-1": [470, 1186]}},
{"id": "twxxvg", "name": "Gender Change Potion", "description": "A Gender Change Potion is an item in the game Terraria that allows the player to change their gender.", "links": {"website": ["https://terraria.fandom.com/wiki/Gender_Change_Potion"], "subreddit": ["Terraria", "transplace"]}, "path": {"81-165, T:0-1": [[684, 460], [682, 462], [682, 465], [681, 466], [679, 471], [679, 473], [682, 476], [687, 476], [690, 473], [690, 471], [687, 465], [687, 462], [685, 460]]}, "center": {"81-165, T:0-1": [684, 471]}},
{"id": "twxxn7", "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", "MexicoPlace", "Mexico"]}, "path": {"60-165, T:0-1": [[787, 494], [787, 521], [811, 521], [810, 520], [810, 519], [795, 504], [793, 504], [792, 503], [792, 500], [793, 500], [793, 496], [792, 496], [792, 494]]}, "center": {"60-165, T:0-1": [794, 514]}},
-{"id": "twxxcw", "name": "Shape", "description": "A 5 letter word ( meant to say 'Shape') which represents the soon-to-be-vtuber Shape / polyshape", "links": {"website": ["https://www.youtube.com/c/shape-polygon"]}, "path": {"56-166, T:0-1": [[1453, 898], [1471, 898], [1471, 902], [1453, 902]]}, "center": {"56-166, T:0-1": [1462, 900]}},
+{"id": "twxxcw", "name": "Shape", "description": "Shape, a.k.a. polyshape, is a soon-to-be-VTuber.", "links": {"website": ["https://www.youtube.com/c/shape-polygon"]}, "path": {"99-166, T:0-1": [[1452, 897], [1452, 903], [1472, 903], [1472, 897]]}, "center": {"99-166, T:0-1": [1462, 900]}},
{"id": "100179", "name": "Camellia", "description": "Camellia (also known as Cametek) is a musician that mainly produces electronic dance music. He is also known as the King of Rhythm Games. Built by the r/camelia community with help from r/osuplace and streamer BTMC.", "links": {"website": ["https://linktr.ee/cametek"], "subreddit": ["camelia"]}, "path": {"109-165, T:0-1": [[660, 1491], [660, 1522], [745, 1522], [745, 1491]]}, "center": {"109-165, T:0-1": [703, 1507]}},
{"id": "twxx81", "name": "Arkeanos", "description": "Arkeanos is a team of Spanish content creators on YouTube and Twitch. \"Siempre con el Jefecito.\"\n\nShortly before the end of r/place, the Arkeanos community invaded the long-standing r/AnarchyChess chessboard to secure a place in Reddit history.", "links": {"website": ["https://www.youtube.com/channel/UCggHFGmLDDStxyM-uy9DYnQ"], "subreddit": ["nexxuzhd"]}, "path": {"158-166, T:0-1": [[1717, 48], [1717, 147], [1615, 147], [1615, 48]]}, "center": {"158-166, T:0-1": [1666, 98]}},
{"id": "twxx76", "name": "Lysium", "description": "Lysium is a streamer who plays on NoPixel, a role-playing server for the game Grand Theft Auto V. He role-plays the character Benji Ramos.", "links": {"website": ["https://www.twitch.tv/lysium"], "subreddit": ["Lysium", "NoPixel"]}, "path": {"95-146": [[1442, 671], [1442, 688], [1489, 688], [1489, 671]], "88-94": [[1442, 671], [1442, 688], [1515, 688], [1515, 671]], "148-166, T:0-1": [[1442, 671], [1442, 688], [1490, 688], [1490, 671]]}, "center": {"95-146": [1466, 680], "88-94": [1479, 680], "148-166, T:0-1": [1466, 680]}},
@@ -2363,7 +2356,7 @@
{"id": "twxskl", "name": "GameSpy", "description": "GameSpy was a provider of multiplayer services for online gaming, including server listings and matchmaking. It also featured game news and reviews. The company shut down in 2013.\n\nThis art was made by the Turkish community Zargonyan Galaxy and organized by Turkish streamer KAANFLIX.", "links": {"website": ["http://www.gamespy.com/", "https://en.wikipedia.org/wiki/GameSpy", "https://www.twitch.tv/kaanflix"], "subreddit": ["ZargoryanGalaksisi"]}, "path": {"60-166, T:0-1": [[841, 35], [841, 67], [885, 67], [885, 35]]}, "center": {"60-166, T:0-1": [863, 51]}},
{"id": "twxsf6", "name": "Seattle Kraken", "description": "The Seattle Kraken are a hockey team based in Seattle, Washington, United States. They are the newest team in the National Hockey League (NHL) of North America.", "links": {"website": ["http://nhl.com/kraken", "https://en.wikipedia.org/wiki/Seattle_Kraken"], "subreddit": ["SeattleKraken"], "discord": ["seattlesportsreddit"]}, "path": {"125-166, T:0-1": [[1600, 658], [1618, 658], [1618, 636], [1600, 636]]}, "center": {"125-166, T:0-1": [1609, 647]}},
{"id": "twxs99", "name": "Risk of Rain 2 logo", "description": "The taskbar logo for the third-person roguelite game by Hopoo Games, Risk of Rain 2, depicting a 2 on top of one of the game's chests.", "links": {"website": ["https://en.wikipedia.org/wiki/Risk_of_Rain_2"], "subreddit": ["riskofrain", "placestart"]}, "path": {"109-166, T:0-1": [[832, 1997], [832, 1985], [828, 1983], [822, 1983], [817, 1985], [817, 1997]]}, "center": {"109-166, T:0-1": [825, 1990]}},
-{"id": "twxs8u", "name": "Asacoco", "description": "Asacoco is a fictional drug created by Kiryu Coco administered through a tail-like device. Kiryu Coco was a former virtual YouTuber and part of Hololive Productions. During her time with the company, she topped the charts as the all-time most super-chatted YouTuber, and she is widely regarded to have transformed the VTuber industry. During her final stream on July 1, 2021, she had nearly half a million live viewers.", "links": {"website": ["https://www.youtube.com/channel/UCS9uQI-jC3DE0L4IpXyvr6w", "https://holocure.fandom.com/wiki/Plug_Type_Asacoco"], "subreddit": ["Hololive"]}, "path": {"2-166, T:0-1": [[257, 754], [257, 755], [258, 755], [259, 756], [260, 756], [260, 757], [261, 757], [261, 758], [262, 758], [262, 759], [263, 759], [263, 760], [269, 760], [269, 761], [272, 761], [272, 762], [273, 762], [273, 764], [274, 764], [274, 765], [273, 765], [273, 767], [272, 768], [270, 768], [270, 769], [269, 769], [269, 772], [270, 772], [270, 773], [271, 773], [272, 773], [272, 771], [273, 771], [273, 770], [274, 770], [274, 769], [275, 769], [276, 769], [276, 768], [277, 768], [277, 766], [278, 766], [278, 759], [277, 759], [277, 757], [276, 757], [276, 756], [275, 756], [275, 755], [272, 755], [272, 754], [269, 754], [269, 753], [257, 753]]}, "center": {"2-166, T:0-1": [266, 756]}},
+{"id": "twxs8u", "name": "Asacoco", "description": "Asacoco is a fictional drug created by Kiryu Coco administered through a tail-like device. Kiryu Coco was a former virtual YouTuber and part of Hololive Productions. During her time with the company, she topped the charts as the all-time most super-chatted YouTuber, and she is widely regarded to have transformed the VTuber industry. During her final stream on July 1, 2021, she had nearly half a million live viewers.", "links": {"website": ["https://www.youtube.com/channel/UCS9uQI-jC3DE0L4IpXyvr6w", "https://holocure.fandom.com/wiki/Plug_Type_Asacoco"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"2-166, T:0-1": [[257, 754], [257, 755], [258, 755], [259, 756], [260, 756], [260, 757], [261, 757], [261, 758], [262, 758], [262, 759], [263, 759], [263, 760], [269, 760], [269, 761], [272, 761], [272, 762], [273, 762], [273, 764], [274, 764], [274, 765], [273, 765], [273, 767], [272, 768], [270, 768], [270, 769], [269, 769], [269, 772], [270, 772], [270, 773], [271, 773], [272, 773], [272, 771], [273, 771], [273, 770], [274, 770], [274, 769], [275, 769], [276, 769], [276, 768], [277, 768], [277, 766], [278, 766], [278, 759], [277, 759], [277, 757], [276, 757], [276, 756], [275, 756], [275, 755], [272, 755], [272, 754], [269, 754], [269, 753], [257, 753]]}, "center": {"2-166, T:0-1": [266, 756]}},
{"id": "twxs49", "name": "Ralsei", "description": "One of the main characters in Deltarune, an indie game created by Toby Fox. He is a fluffy goat prince with magical abilities, and serves as the party healer and resident expert and prince of the Dark World. He can also can lull enemies to sleep by singing lullabies. Everyone likes Ralsei. This art depicts his appearance after taking off his hat at the end of Chapter 1.\n\nSpecial thank you to r/Deltarune for helping us a ton. The in-game sprite is very troublesome because of the weird shading, so that caused a lot of misunderstanding and griefing. Please don't add red eyes to him.", "links": {"website": ["https://deltarune.fandom.com/wiki/Ralsei"], "subreddit": ["ralsei", "Deltarune"]}, "path": {"2-3": [[643, 779], [641, 781], [641, 784], [642, 785], [642, 793], [644, 796], [642, 796], [639, 799], [639, 800], [642, 803], [646, 803], [646, 809], [649, 809], [650, 810], [655, 810], [656, 809], [659, 809], [661, 807], [661, 792], [664, 790], [664, 785], [666, 783], [666, 781], [664, 779], [658, 779], [658, 778], [655, 775], [654, 775], [652, 777], [652, 778], [650, 778], [646, 782], [645, 782], [645, 781]], "4-165, T:0-1": [[677, 780], [677, 784], [679, 786], [679, 787], [678, 788], [678, 793], [679, 794], [679, 795], [680, 796], [680, 797], [677, 797], [675, 799], [675, 800], [677, 802], [683, 802], [683, 806], [682, 807], [683, 808], [684, 808], [685, 809], [688, 809], [688, 811], [687, 811], [685, 813], [685, 814], [687, 816], [691, 816], [694, 813], [694, 808], [695, 807], [699, 807], [700, 808], [702, 808], [707, 803], [707, 801], [705, 799], [703, 799], [700, 802], [699, 801], [699, 800], [696, 797], [696, 796], [697, 795], [700, 795], [701, 794], [705, 791], [705, 785], [701, 785], [701, 787], [697, 790], [695, 790], [695, 786], [700, 783], [700, 780], [696, 780], [696, 781], [693, 781], [693, 780], [691, 777], [690, 776], [689, 777], [689, 779], [685, 779], [681, 783], [680, 783], [678, 780]]}, "center": {"2-3": [651, 790], "4-165, T:0-1": [687, 791]}},
{"id": "twxs1g", "name": "Welsh sheep", "description": "Trail of Welsh sheep featuring flags such as Eqypt (an r/place neighbour and ally) and Ukraine, as well as LGBT pride sheep such as a rainbow sheep.", "links": {"website": ["https://en.wikipedia.org/wiki/Welsh_Mountain_sheep"], "subreddit": ["Wales"]}, "path": {"142-165, T:0-1": [[5, 136], [0, 136], [0, 93], [43, 94], [44, 130], [51, 130], [53, 133], [57, 134], [57, 136], [40, 137], [39, 98], [5, 98], [5, 132], [39, 132], [39, 137], [0, 136], [1, 136], [0, 136]]}, "center": {"142-165, T:0-1": [44, 133]}},
{"id": "twxrl1", "name": "Clustertruck Speedrunning", "description": "A truck from the game Clustertruck by Landfall Games. It was made in collaboration with the TeosGame community to represent the speedrunning community of Clustertruck.", "links": {"website": ["https://www.speedrun.com/Clustertruck"]}, "path": {"109-165, T:0-1": [[1100, 1033], [1100, 1030], [1101, 1030], [1101, 1026], [1108, 1019], [1115, 1019], [1115, 1027], [1114, 1027], [1114, 1030], [1112, 1030], [1112, 1032], [1108, 1032], [1108, 1034], [1100, 1034]]}, "center": {"109-165, T:0-1": [1108, 1027]}},
@@ -2423,7 +2416,7 @@
{"id": "twxi5i", "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": {"122-140": [[709, 199], [709, 238], [731, 238], [731, 262], [751, 262], [751, 238], [781, 238], [781, 206], [772, 206], [772, 208], [769, 208], [769, 207], [763, 207], [763, 203], [761, 201], [759, 201], [759, 199]], "107-121": [[731, 238], [731, 269], [751, 269], [751, 238]], "72-106": [[731, 250], [731, 269], [751, 269], [751, 250]], "52-71": [[733, 250], [733, 262], [748, 262], [748, 250]], "30-51": [[730, 252], [730, 262], [745, 262], [745, 252]], "155-160": [[809, 1173], [809, 1199], [785, 1200], [785, 1224], [892, 1224], [892, 1203], [854, 1203], [854, 1173]], "146-152": [[731, 1185], [731, 1224], [802, 1224], [802, 1185]], "153-154": [[758, 1185], [758, 1224], [821, 1224], [821, 1185]], "161-165, T:0-1": [[785, 1196], [785, 1224], [892, 1224], [892, 1210], [830, 1209], [824, 1200], [824, 1196]]}, "center": {"122-140": [741, 220], "107-121": [741, 254], "72-106": [741, 260], "52-71": [741, 256], "30-51": [738, 257], "155-160": [831, 1201], "146-152": [767, 1205], "153-154": [790, 1205], "161-165, T:0-1": [799, 1210]}},
{"id": "twxi59", "name": "Fnatic Static", "description": "Fansymbol from Fnatic designed by a partnership between the Official Fnatic Discord and Fnatic Fight Club (a Fan Discord Server), To celebrate the partnership.", "links": {"website": ["https://fnatic.com/"], "subreddit": ["fnatic"]}, "path": {"109-166, T:0-1": [[1601, 1409], [1604, 1409], [1604, 1401], [1601, 1401]]}, "center": {"109-166, T:0-1": [1603, 1405]}},
{"id": "twxhz0", "name": "St Petroc's Cross", "description": "The flag of the English county of Devon.", "links": {"subreddit": ["DevonUK"]}, "path": {"109-166, T:0-1": [[1770, 1576], [1786, 1576], [1786, 1589], [1775, 1589], [1775, 1584], [1775, 1583], [1770, 1583]]}, "center": {"109-166, T:0-1": [1779, 1582]}},
-{"id": "twxhso", "name": "SnoweyVR", "description": "SnoweyVR's logo, created in the final hour of r/place.", "links": {"website": ["https://www.twitch.tv/snoweyvr"]}, "path": {"56-166, T:0-1": [[1747, 841], [1759, 841], [1759, 850], [1747, 850]]}, "center": {"56-166, T:0-1": [1753, 846]}},
+{"id": "twxhso", "name": "SnoweyVR", "description": "SnoweyVR is a Twitch streamer.\n\nThis logo was created in the final hour of r/place.", "links": {"website": ["https://www.twitch.tv/snoweyvr"]}, "path": {"163-166, T:0-1": [[1747, 838], [1747, 850], [1759, 850], [1759, 838]]}, "center": {"163-166, T:0-1": [1753, 844]}},
{"id": "twxhm5", "name": "Hey Mister, Let's Play!", "description": "Hey Mister, Let's Play! (Czech: Pojďte pane, budeme si hrát) is a Czech stop-motion animated series. The cartoon is often nicknamed after its first episode, They Met Near Kolín (Czech: Potkali se u Kolína). Pictured are the main characters of the series, two bears that remain unnamed.", "links": {"website": ["https://en.wikipedia.org/wiki/Hey_Mister,_Let%27s_Play!"], "subreddit": ["czech"]}, "path": {"94-166, T:0-1": [[1292, 208], [1288, 212], [1288, 213], [1278, 213], [1276, 216], [1276, 220], [1275, 221], [1275, 223], [1277, 225], [1277, 227], [1296, 227], [1296, 213]]}, "center": {"94-166, T:0-1": [1287, 220]}},
{"id": "twxhae", "name": "Professor Layton", "description": "Professor Layton is a series of mystery and puzzle video games with deep stories and breathtaking twists.", "links": {"website": ["https://www.laytonseries.com/naen/", "https://en.wikipedia.org/wiki/Professor_Layton"], "subreddit": ["ProfessorLayton"]}, "path": {"108-141": [[1953, 333], [1953, 343], [1952, 343], [1952, 352], [1953, 353], [1953, 357], [1967, 357], [1967, 355], [1968, 355], [1968, 349], [1967, 349], [1967, 344], [1966, 344], [1966, 333]], "85-106": [[1950, 334], [1950, 340], [1949, 340], [1949, 351], [1950, 352], [1950, 358], [1967, 358], [1967, 354], [1968, 354], [1968, 345], [1966, 343], [1962, 343], [1960, 345], [1960, 352], [1957, 352], [1957, 340], [1956, 340], [1956, 334]], "142-167, T:0-1": [[1953, 334], [1953, 343], [1952, 343], [1952, 352], [1953, 353], [1953, 357], [1967, 357], [1967, 355], [1968, 355], [1968, 349], [1967, 349], [1967, 341], [1965, 339], [1962, 339], [1961, 338], [1959, 338], [1959, 334]]}, "center": {"108-141": [1960, 349], "85-106": [1953, 347], "142-167, T:0-1": [1960, 349]}},
{"id": "twxh9q", "name": "Sugar Pine 7", "description": "Logo of the Youtube channel Sugar Pine 7, known for their Alternative Lifestyle comedic series. Also they won a streamy award.", "links": {"website": ["https://www.youtube.com/c/sugarpine7"]}, "path": {"109-166, T:0-1": [[1840, 1380], [1854, 1380], [1854, 1369], [1840, 1369]]}, "center": {"109-166, T:0-1": [1847, 1375]}},
@@ -2444,7 +2437,7 @@
{"id": "twxev0", "name": "London Eye", "description": "The London Eye, or the Millennium Wheel, is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe's tallest cantilevered observation wheel and is the most popular paid tourist attraction in the United Kingdom with over 3 million visitors annually.", "links": {"website": ["https://en.wikipedia.org/wiki/London_Eye"], "subreddit": ["ukplace", "unitedkingdom"]}, "path": {"108-121, 138-165, T:0-1": [[658, 505], [655, 506], [652, 508], [650, 510], [648, 513], [644, 521], [644, 527], [646, 533], [647, 535], [651, 539], [654, 540], [654, 545], [656, 547], [657, 546], [658, 542], [660, 543], [661, 543], [661, 528], [662, 525], [663, 528], [663, 533], [664, 533], [666, 530], [668, 530], [670, 533], [672, 525], [673, 528], [673, 535], [674, 536], [679, 536], [683, 531], [684, 527], [684, 521], [680, 512], [673, 506], [670, 505]]}, "center": {"108-121, 138-165, T:0-1": [667, 515]}},
{"id": "twxep2", "name": "Flag of Zwolle", "description": "Zwolle is a lively city located in the Netherlands with a population of approximately 129000 people. It is the capital of the province of Overijssel. Zwolle boasts a beautiful city centre with historic buildings, canals and the remainders of an old city wall. But Zwolle has more to offer than just historic landmarks. The city is also rich in art and culture.", "links": {"website": ["https://en.wikipedia.org/wiki/Zwolle"], "subreddit": ["Zwolle"]}, "path": {"109-166, T:0-1": [[1538, 1361], [1551, 1361], [1551, 1370], [1538, 1370]]}, "center": {"109-166, T:0-1": [1545, 1366]}},
{"id": "twxeob", "name": "Pippi", "description": "Pippi is the dog girl OC of Kemono Friends community member Eater of Pi. Pippi was bravely defended by members of the Kemono Friends community.", "links": {"website": ["https://japari-library.com//wiki/User:EaterofPi"]}, "path": {"109-166, T:0-1": [[1694, 1559], [1694, 1554], [1699, 1554], [1699, 1559]]}, "center": {"109-166, T:0-1": [1697, 1557]}},
-{"id": "twxel5", "name": "Tsukumo Sana", "description": "Tsukumo Sana is a VTuber and part of Hololive. She is the speaker of space.", "links": {"website": ["https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ", "https://virtualyoutuber.fandom.com/wiki/Tsukumo_Sana"], "subreddit": ["TsukumoSana", "Hololive"]}, "path": {"32-78": [[281, 734], [284, 728], [287, 725], [291, 725], [295, 729], [295, 732], [297, 734], [294, 737], [284, 737]], "79-160, T:0-1": [[281, 734], [287, 725], [229, 725], [229, 730], [227, 732], [225, 730], [225, 728], [229, 728], [229, 725], [287, 725], [288, 724], [290, 724], [295, 729], [297, 734], [294, 737], [284, 737]], "161-166": [[283, 737], [283, 736], [281, 734], [282, 733], [282, 732], [283, 731], [283, 729], [287, 725], [229, 725], [229, 730], [227, 732], [225, 730], [225, 728], [229, 728], [229, 725], [287, 725], [287, 722], [286, 721], [286, 719], [288, 717], [290, 717], [292, 719], [292, 721], [290, 721], [290, 724], [295, 729], [296, 731], [296, 735], [294, 737]]}, "center": {"32-78": [289, 731], "79-160, T:0-1": [289, 732], "161-166": [289, 731]}},
+{"id": "twxel5", "name": "Tsukumo Sana", "description": "Tsukumo Sana is a VTuber and part of Hololive. She is the speaker of space.", "links": {"website": ["https://www.youtube.com/channel/UCsUj0dszADCGbF3gNrQEuSQ", "https://virtualyoutuber.fandom.com/wiki/Tsukumo_Sana"], "subreddit": ["TsukumoSana", "Hololive"], "discord": ["holofans"]}, "path": {"32-78": [[281, 734], [284, 728], [287, 725], [291, 725], [295, 729], [295, 732], [297, 734], [294, 737], [284, 737]], "79-160, T:0-1": [[281, 734], [287, 725], [229, 725], [229, 730], [227, 732], [225, 730], [225, 728], [229, 728], [229, 725], [287, 725], [288, 724], [290, 724], [295, 729], [297, 734], [294, 737], [284, 737]], "161-166": [[283, 737], [283, 736], [281, 734], [282, 733], [282, 732], [283, 731], [283, 729], [287, 725], [229, 725], [229, 730], [227, 732], [225, 730], [225, 728], [229, 728], [229, 725], [287, 725], [287, 722], [286, 721], [286, 719], [288, 717], [290, 717], [292, 719], [292, 721], [290, 721], [290, 724], [295, 729], [296, 731], [296, 735], [294, 737]]}, "center": {"32-78": [289, 731], "79-160, T:0-1": [289, 732], "161-166": [289, 731]}},
{"id": "twxehe", "name": "Toronto Maple Leafs", "description": "The Toronto Maple Leafs are a hockey team in Toronto, Canada. 16 is the number of player Mitch Marner, 91 is for John Tavares, 88 is for William Nylander, 34 is for Auston Matthews, and 44 is for Morgan Rielly.\n\nThe CN Tower, a Toronto landmark, is also included. This was created in collaboration with r/toronto.", "links": {"website": ["https://www.nhl.com/mapleleafs", "https://en.wikipedia.org/wiki/Toronto_Maple_Leafs"], "subreddit": ["leafs"]}, "path": {"80-81": [[1928, 364], [1946, 364], [1946, 360], [1949, 357], [1949, 347], [1942, 347], [1942, 346], [1939, 343], [1935, 343], [1932, 346], [1932, 347], [1925, 347], [1925, 358], [1928, 360]], "82-108": [[1928, 364], [1935, 364], [1935, 365], [1939, 365], [1939, 364], [1947, 364], [1947, 359], [1948, 359], [1948, 353], [1949, 353], [1949, 340], [1950, 340], [1950, 334], [1939, 334], [1939, 342], [1938, 342], [1937, 341], [1932, 346], [1932, 347], [1927, 347], [1925, 349], [1925, 353], [1926, 353], [1926, 358], [1928, 360]], "24-76": [[226, 552], [226, 528], [250, 528], [250, 552]], "109-166, T:0-1": [[1918, 344], [1918, 364], [1936, 364], [1937, 365], [1938, 364], [1949, 364], [1949, 344], [1948, 344], [1948, 334], [1935, 334], [1935, 340], [1931, 344]]}, "center": {"80-81": [1937, 355], "82-108": [1938, 354], "24-76": [238, 540], "109-166, T:0-1": [1938, 353]}},
{"id": "twxeeu", "name": "Fox", "description": "The face of a fox from the game Minecraft, created and defended by Twitch streamer Holofox and her small and mighty community.", "links": {"website": ["https://twitch.tv/holofox", "https://minecraft.fandom.com/wiki/Fox"], "subreddit": ["Holofox"]}, "path": {"156-167, T:0-1": [[1422, 70], [1422, 79], [1427, 79], [1427, 80], [1429, 80], [1429, 79], [1431, 79], [1431, 70], [1428, 70], [1428, 72], [1425, 72], [1425, 70]]}, "center": {"156-167, T:0-1": [1426, 75]}},
{"id": "twxe93", "name": "Pelle_327", "description": "Owner of the Outcasts Discord server. This pixel art fought hard for their spot on the canvas, making a lot of alliances on the way, mainly the Joker Yoda next to him. He's holding a lightsaber as a sign of peace with the Star Wars mural group. The creators of this pixel art also diverted the eyes of the Helltaker character that was staring at him.", "links": {}, "path": {"109-166, T:0-1": [[804, 1561], [804, 1578], [820, 1578], [820, 1570], [822, 1570], [828, 1564], [828, 1563], [827, 1563], [821, 1569], [820, 1569], [820, 1562], [819, 1562], [819, 1557], [808, 1557], [808, 1558], [807, 1558], [807, 1559], [806, 1559], [806, 1560], [805, 1560], [805, 1561], [804, 1561], [804, 1562]]}, "center": {"109-166, T:0-1": [813, 1568]}},
@@ -2463,7 +2456,7 @@
{"id": "twxcem", "name": "Eridan Ampora", "description": "A character from the webcomic Homestuck.", "links": {"website": ["https://mspaintadventures.fandom.com/wiki/Eridan_Ampora"], "subreddit": ["homestuck"]}, "path": {"156-165, T:0-1": [[387, 156], [387, 151], [388, 151], [388, 148], [389, 148], [389, 145], [380, 145], [380, 148], [381, 148], [381, 151], [382, 151], [382, 156]]}, "center": {"156-165, T:0-1": [384, 149]}},
{"id": "twxc2f", "name": "Banjo and Kazooie", "description": "Protagonists of the Banjo-Kazooie series", "links": {}, "path": {"109-165, T:0-1": [[1126, 1565], [1119, 1576], [1118, 1581], [1120, 1584], [1123, 1594], [1132, 1594], [1136, 1583], [1137, 1577], [1131, 1566]]}, "center": {"109-165, T:0-1": [1128, 1580]}},
{"id": "twxbwd", "name": "La Reine Ratus (The Ratus Queen)", "description": "The rat, affectionately referred to as Ratus, is the nickname given to the viewers of Ultia, a French streamer who is their queen, hence the crown.\n\nThis rat was independently started by unaffiliated Redditors and users of r/SCPDeclassified under the name \"Rat Boy\", and was adopted by Ultia's viewers.", "links": {"website": ["https://www.twitch.tv/ultia"], "subreddit": ["SCPDeclassified"]}, "path": {"109-165, T:0-1": [[290, 1545], [290, 1542], [289, 1541], [289, 1540], [290, 1539], [289, 1538], [289, 1536], [288, 1535], [288, 1534], [289, 1533], [290, 1533], [291, 1532], [292, 1531], [293, 1532], [294, 1533], [296, 1533], [299, 1533], [299, 1543], [297, 1543], [295, 1545]]}, "center": {"109-165, T:0-1": [294, 1538]}},
-{"id": "twxbvf", "name": "Wind turbine", "description": "As Germany tries to shift its power generation to greener energies, more wind turbines are being built in Germany. Bavarian Prime Minister Markus Söder is known to oppose the construction of more wind turbines in Bavaria. The turbine was put there to annoy him and Bavaria in general.", "links": {"website": ["https://en.wikipedia.org/wiki/Wind_turbine"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-167, T:0-1": [[1870, 863], [1870, 841], [1871, 839], [1872, 839], [1878, 845], [1879, 845], [1880, 845], [1880, 842], [1874, 836], [1873, 832], [1869, 831], [1869, 833], [1865, 833], [1865, 835], [1864, 835], [1864, 838], [1866, 838], [1866, 839], [1862, 844], [1862, 845], [1864, 846], [1866, 844], [1866, 861]]}, "center": {"56-167, T:0-1": [1869, 844]}},
+{"id": "twxbvf", "name": "Wind turbine", "description": "As Germany tries to shift its power generation from nuclear power and lignite coal to greener energies (known as \"Energiewende\": \"energy transition\"), more wind turbines are being built in Germany, along with other green energy initiatives like solar parks. Bavarian Prime Minister Markus Söder is known to oppose the construction of more wind turbines in Bavaria. The turbine was put there to annoy him and Bavaria in general.", "links": {"website": ["https://en.wikipedia.org/wiki/Wind_power_in_Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"107-166, T:0-1": [[1866, 844], [1866, 861], [1870, 863], [1870, 857], [1871, 856], [1871, 840], [1873, 840], [1878, 845], [1880, 845], [1880, 842], [1875, 837], [1874, 837], [1874, 835], [1873, 834], [1873, 831], [1869, 831], [1869, 833], [1867, 833], [1864, 835], [1864, 841], [1861, 845], [1861, 846], [1864, 846]]}, "center": {"107-166, T:0-1": [1868, 838]}},
{"id": "twxbv3", "name": "Winston's Memorial", "description": "A memorial to RazzyJazzer's dog Winston, who passed away during r/place. RazzyJazzer helped coordinate the classic rock group below this mural.", "links": {"subreddit": ["readwebserials"], "discord": ["Z7M6QFzPG5"]}, "path": {"109-166, T:0-1": [[1785, 1274], [1795, 1274], [1795, 1281], [1785, 1281]]}, "center": {"109-166, T:0-1": [1790, 1278]}},
{"id": "twxbv2", "name": "Unicornio", "description": "Unicornio is an Argentinian streamer known for his charm and drinking mate.", "links": {"website": ["https://www.twitch.tv/unicornio"]}, "path": {"160-165": [[1010, 198], [1010, 249], [1072, 249], [1072, 198]]}, "center": {"160-165": [1041, 224]}},
{"id": "twxbtk", "name": "Rewrite", "description": "Rewrite is a 2011 visual novel by VisualArt's/Key. This novel's logo and a the tree from the title screen are shown here.\n\nThis art was centered around the (69,69) pixel, and frequently attacked for that reason.", "links": {"website": ["https://en.wikipedia.org/wiki/Rewrite_(video_game)"], "subreddit": ["Rewrite"]}, "path": {"124-165, T:0-1": [[53, 63], [53, 74], [81, 74], [81, 68], [83, 66], [83, 63]]}, "center": {"124-165, T:0-1": [69, 69]}},
@@ -2471,9 +2464,9 @@
{"id": "twxbnb", "name": "Radiant_Soul", "description": "Raidiant_Soul is a small streamer that streams the virtual platform VRChat.", "links": {"website": ["https://www.twitch.tv/radiantsoul_tv"]}, "path": {"160-162": [[721, 828], [721, 835], [730, 835], [730, 828]], "163-165, T:0-1": [[720, 828], [720, 835], [729, 835], [729, 828]]}, "center": {"160-162": [726, 832], "163-165, T:0-1": [725, 832]}},
{"id": "twxbml", "name": "GFRIEND logo", "description": "Crown logo of Korean girl group GFRIEND (여자친구), drawn in the official colours of the group.", "links": {"website": ["https://web.archive.org/web/20210610205222/https://www.sourcemusic.com/ko/girf_profile.php"], "subreddit": ["GFRIEND"]}, "path": {"109-166, T:0-1": [[1498, 1056], [1508, 1056], [1508, 1063], [1498, 1063]]}, "center": {"109-166, T:0-1": [1503, 1060]}},
{"id": "twxbls", "name": "osu!droid", "description": "An osu! logo held up by the Android logo, To symbolize the osu!droid community, who play osu! on touchscreen handheld devices that run Android.", "links": {"website": ["https://osu.ppy.sh"], "subreddit": ["OSUdroid"]}, "path": {"109-165, T:0-1": [[642, 1430], [642, 1453], [659, 1453], [659, 1430]]}, "center": {"109-165, T:0-1": [651, 1442]}},
-{"id": "twxbkn", "name": "Takodachi", "description": "The Takodachi is the octopus-like mascot of Hololive English (Myth) VTuber Ninomae Ina'nis, and also the representation of her fanbase. Ina is a VTuber from the Myth Generation of Hololive's English branch. Her design includes tentacles, octopus earflaps, a purple color scheme, and a halo, hence the mascot she created being a purple octopus with a halo. Takodachi is a portmanteau of the Japanese \"tako\" (octopus) and \"tomodachi\" (friend), and is usually portrayed as a friendly character. As such, he is shown smiling while making friends with other fandoms, with hearts above his head. In this art, Takodachi is holding Pochita and petting BB. Wah!", "links": {"website": ["https://www.youtube.com/@NinomaeInanis", "https://virtualyoutuber.fandom.com/wiki/Ninomae_Ina%27nis"], "subreddit": ["NinomaeInanis", "Hololive"]}, "path": {"8-166, T:0-1": [[193, 771], [193, 772], [196, 774], [200, 774], [209, 783], [214, 783], [216, 784], [220, 788], [220, 789], [221, 790], [223, 790], [223, 793], [226, 793], [226, 771], [223, 771], [223, 770], [221, 768], [221, 767], [219, 764], [215, 764], [213, 768], [211, 770], [211, 771], [208, 771], [208, 777], [202, 771]]}, "center": {"8-166, T:0-1": [217, 776]}},
+{"id": "twxbkn", "name": "Takodachi", "description": "The Takodachi is the octopus-like mascot of Hololive English (Myth) VTuber Ninomae Ina'nis, and also the representation of her fanbase. Ina is a VTuber from the Myth Generation of Hololive's English branch. Her design includes tentacles, octopus earflaps, a purple color scheme, and a halo, hence the mascot she created being a purple octopus with a halo. Takodachi is a portmanteau of the Japanese \"tako\" (octopus) and \"tomodachi\" (friend), and is usually portrayed as a friendly character. As such, he is shown smiling while making friends with other fandoms, with hearts above his head. In this art, Takodachi is holding Pochita and petting BB. Wah!", "links": {"website": ["https://www.youtube.com/@NinomaeInanis", "https://virtualyoutuber.fandom.com/wiki/Ninomae_Ina%27nis"], "subreddit": ["NinomaeInanis", "Hololive"], "discord": ["holofans"]}, "path": {"8-166, T:0-1": [[193, 771], [193, 772], [196, 774], [200, 774], [209, 783], [214, 783], [216, 784], [220, 788], [220, 789], [221, 790], [223, 790], [223, 793], [226, 793], [226, 771], [223, 771], [223, 770], [221, 768], [221, 767], [219, 764], [215, 764], [213, 768], [211, 770], [211, 771], [208, 771], [208, 777], [202, 771]]}, "center": {"8-166, T:0-1": [217, 776]}},
{"id": "twxbb5", "name": "98", "description": "98 is a reference to an episode of the anime Love Live! Sunshine!!, where school idol group Aquors didn't reach the required number of applicants for their school, Uranohoshi High School, falling short at 98. The scene became a meme by the Love Live! community, most commonly used by the Love Live! meme subreddit, r/Otonokizaka.\n\nThis number was drawn as part of a promise r/LoveLive held with r/Otonokizaka to make a 98 in r/place.", "links": {"website": ["https://love-live.fandom.com/wiki/The_Time_Left"], "subreddit": ["Otonokizaka", "LoveLive"]}, "path": {"63-77": [[878, 726], [878, 734], [888, 734], [888, 726]], "36-42": [[865, 701], [865, 707], [873, 707], [873, 701]], "78-84, 91-95": [[878, 727], [878, 733], [888, 733], [888, 727]], "96-164, T:0-1": [[878, 726], [888, 726], [888, 734], [878, 734]]}, "center": {"63-77": [883, 730], "36-42": [869, 704], "78-84, 91-95": [883, 730], "96-164, T:0-1": [883, 730]}},
-{"id": "twxb8a", "name": "Ceres Fauna", "description": "Ceres Fauna is a VTuber and part of Hololive. She is the keeper of nature.", "links": {"website": ["https://www.youtube.com/channel/UCO_aKKYxn4tvrqPjcTzZ6EQ", "https://virtualyoutuber.fandom.com/wiki/Ceres_Fauna"], "subreddit": ["CeresFauna", "Hololive"]}, "path": {"79-107": [[237, 736], [234, 734], [234, 728], [232, 728], [231, 729], [229, 727], [229, 725], [234, 725], [235, 724], [237, 726], [241, 726], [243, 724], [245, 726], [243, 728], [244, 729], [244, 737], [238, 737]], "28-78": [[234, 734], [234, 727], [233, 726], [235, 724], [237, 726], [241, 726], [243, 724], [245, 726], [244, 727], [244, 735], [242, 735], [240, 737], [238, 737], [236, 735], [235, 735]], "108-166, T:0-1": [[264, 737], [264, 734], [263, 735], [262, 734], [262, 729], [263, 728], [261, 726], [262, 725], [233, 725], [233, 727], [231, 729], [229, 727], [229, 725], [262, 725], [263, 724], [265, 726], [269, 726], [269, 723], [270, 723], [273, 726], [271, 728], [272, 729], [272, 735], [270, 735], [270, 737]]}, "center": {"79-107": [239, 731], "28-78": [239, 731], "108-166, T:0-1": [267, 731]}},
+{"id": "twxb8a", "name": "Ceres Fauna", "description": "Ceres Fauna is a VTuber and part of Hololive. She is the keeper of nature.", "links": {"website": ["https://www.youtube.com/channel/UCO_aKKYxn4tvrqPjcTzZ6EQ", "https://virtualyoutuber.fandom.com/wiki/Ceres_Fauna"], "subreddit": ["CeresFauna", "Hololive"], "discord": ["holofans"]}, "path": {"79-107": [[237, 736], [234, 734], [234, 728], [232, 728], [231, 729], [229, 727], [229, 725], [234, 725], [235, 724], [237, 726], [241, 726], [243, 724], [245, 726], [243, 728], [244, 729], [244, 737], [238, 737]], "28-78": [[234, 734], [234, 727], [233, 726], [235, 724], [237, 726], [241, 726], [243, 724], [245, 726], [244, 727], [244, 735], [242, 735], [240, 737], [238, 737], [236, 735], [235, 735]], "108-166, T:0-1": [[264, 737], [264, 734], [263, 735], [262, 734], [262, 729], [263, 728], [261, 726], [262, 725], [233, 725], [233, 727], [231, 729], [229, 727], [229, 725], [262, 725], [263, 724], [265, 726], [269, 726], [269, 723], [270, 723], [273, 726], [271, 728], [272, 729], [272, 735], [270, 735], [270, 737]]}, "center": {"79-107": [239, 731], "28-78": [239, 731], "108-166, T:0-1": [267, 731]}},
{"id": "twxb2q", "name": "Gulag Gang", "description": "Gulag Gang is a gang from the Grand Theft Auto role-play server, NoPixel. This gang is led by the Twitch streamers xQc, Omie and Ming (public server) characters.", "links": {"website": ["https://nopixel.fandom.com/wiki/Gulag_Gang"], "subreddit": ["omie", "NoPixel", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[404, 1097], [431, 1097], [431, 1120], [403, 1120]]}, "center": {"109-166, T:0-1": [417, 1109]}},
{"id": "twxb2g", "name": "Pupugo", "description": "Old emote from the streamer MOONMOON on Twitch. It is now the logo for Cheez, The famous classic Tetris player. On r/place, it represents the entire classic Tetris community.", "links": {"website": ["https://ctm.gg"]}, "path": {"109-166, T:0-1": [[843, 1753], [845, 1753], [845, 1754], [852, 1754], [843, 1754], [844, 1756], [844, 1757], [842, 1757], [842, 1758], [841, 1758], [841, 1761], [842, 1761], [842, 1762], [843, 1762], [843, 1760], [844, 1762], [844, 1763], [845, 1763], [845, 1764], [849, 1764], [850, 1763], [851, 1762], [852, 1761], [853, 1760], [853, 1759], [854, 1759], [853, 1758], [852, 1757], [852, 1756], [853, 1756], [853, 1755], [848, 1753]]}, "center": {"109-166, T:0-1": [847, 1758]}},
{"id": "twxaxn", "name": "Yu Takasaki Nesoberi", "description": "A super cute Nesoberi representation of the manager of the Nijigasaki School Idol Club, Yu Takasaki.", "links": {"website": ["https://segaplaza.jp/prize/Y103471/"], "subreddit": ["nesoberi", "LoveLive"]}, "path": {"109-166, T:0-1": [[454, 1654], [460, 1655], [460, 1661], [456, 1661], [452, 1661], [452, 1655]]}, "center": {"109-166, T:0-1": [456, 1658]}},
@@ -2484,7 +2477,7 @@
{"id": "twxajb", "name": "Kill Six Billion Demons", "description": "Kill Six Billion Demons (K6BD) is a webcomic.", "links": {"website": ["https://killsixbilliondemons.com/"], "subreddit": ["killsixbilliondemons"]}, "path": {"18-48": [[108, 484], [108, 490], [125, 490], [125, 484]], "49-165, T:0-1": [[109, 484], [109, 490], [125, 490], [125, 484]]}, "center": {"18-48": [117, 487], "49-165, T:0-1": [117, 487]}},
{"id": "twxahx", "name": "Silver pearl/planet", "description": "Small orb representing a silver pearl from Rain World and a planet from Outer Wilds. This was made in colaboration with both subreddits.", "links": {"subreddit": ["outerwilds", "rainworld", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[395, 919], [396, 919], [397, 919], [397, 918], [399, 918], [400, 919], [401, 919], [401, 920], [401, 921], [402, 921], [402, 922], [402, 923], [401, 923], [401, 924], [401, 925], [400, 925], [399, 925], [399, 926], [398, 926], [397, 926], [397, 925], [396, 925], [395, 925], [395, 924], [395, 923], [394, 923], [394, 922], [394, 921], [395, 921], [395, 920]]}, "center": {"1-166, T:0-1": [398, 922]}},
{"id": "twxaan", "name": "Honoka Kosaka", "description": "Honoka Kosaka (or Kousaka) is a character from the anime franchise Love Live!, debuting in the anime's first series, Love Live! School Idol Project. She is the leader of the school idol group μ's.", "links": {"website": ["https://love-live.fandom.com/wiki/Honoka_Kosaka"], "subreddit": ["LoveLive"]}, "path": {"163-165": [[900, 704], [898, 706], [898, 708], [897, 709], [897, 711], [902, 711], [902, 704]]}, "center": {"163-165": [900, 707]}},
-{"id": "twxa4i", "name": "Flood Escape 2", "description": "Flood Escape 2 is a Roblox game where your main objective is escaping floods of water, acid or lava. Along the way you must press buttons to unlock paths before you drown. The game was created by Crazyblox.", "links": {"website": ["http://www.crazyblox.net/"]}, "path": {"109-165, T:0-1": [[889, 1465], [915, 1465], [915, 1476], [889, 1476]]}, "center": {"109-165, T:0-1": [902, 1471]}},
+{"id": "twxa4i", "name": "Flood Escape 2", "description": "Flood Escape 2 (FE2) is a game for the game platform Roblox. Your main objective is escaping floods of water, acid, or lava. Along the way you must press buttons to unlock paths before you drown. The game was created by Crazyblox.", "links": {"website": ["http://www.crazyblox.net/"]}, "path": {"56-62": [[1460, 897], [1460, 924], [1494, 924], [1494, 897]], "114-165, T:0-1": [[888, 1464], [888, 1477], [916, 1477], [916, 1464]]}, "center": {"56-62": [1477, 911], "114-165, T:0-1": [902, 1471]}},
{"id": "twxa0p", "name": "Liella!", "description": "A colored representation of each member from the idol group Liella! from Love Live! Superstar!!", "links": {"website": ["https://love-live.fandom.com/wiki/Liella!"], "subreddit": ["LoveLive"]}, "path": {"123-165, T:0-1": [[905, 686], [905, 704], [911, 701], [911, 684]]}, "center": {"123-165, T:0-1": [908, 694]}},
{"id": "twx9yk", "name": "King Crimson", "description": "Illustration of the cover for King Crimson's debut album, In The Court of the Crimson King, released October 1969. King Crimson was one of the original pioneers of Progressive Rock, and their first album is considered by many to be the most influential album of the genre. The iconic painting used for the sleeve was made by Barry Godber, who died of a heart attack shortly after the album's release in February, 1970. The screaming face depicted on the outside of the sleeve is commonly referred to as 'Schizoid Man'", "links": {"website": ["https://www.dgmlive.com/king-crimson"], "subreddit": ["KingCrimson"]}, "path": {"109-166, T:0-1": [[1761, 1173], [1761, 1190], [1730, 1190], [1730, 1173]]}, "center": {"109-166, T:0-1": [1746, 1182]}},
{"id": "twx9qw", "name": "AvoArmy", "description": "A small community devoted to propagating cute avocados (an original r/place initiative).", "links": {"website": ["https://en.wikipedia.org/wiki/Avocado"], "subreddit": ["AvoArmy"]}, "path": {"5-166, T:0-1": [[453, 945], [449, 949], [448, 952], [448, 955], [452, 959], [455, 959], [459, 955], [459, 952], [457, 948], [454, 945]]}, "center": {"5-166, T:0-1": [453, 952]}},
@@ -2495,14 +2488,14 @@
{"id": "twx9es", "name": "Albania and Kosovo", "description": "Both flags were made by one community, as the two countries are neighbors in the real world. The Albanians formed an alliance with r/Cricket, r/berkeley and r/IndiaPlace to protect each other from griefing and attacks.", "links": {"website": ["https://en.wikipedia.org/wiki/Albania", "https://en.wikipedia.org/wiki/Kosovo"], "subreddit": ["albania", "kosovo"]}, "path": {"84-165, T:0-1": [[334, 252], [356, 252], [356, 298], [316, 298], [316, 282], [334, 282]]}, "center": {"84-165, T:0-1": [344, 287]}},
{"id": "twx9bp", "name": "Yoshiko Tsushima", "description": "Yoshiko Tsushima is a first-year student in the anime Love Live! Sunshine!!", "links": {"website": ["https://love-live.fandom.com/wiki/Yoshiko_Tsushima"], "subreddit": ["LoveLive"]}, "path": {"94-165, T:0-1": [[897, 669], [897, 675], [900, 675], [902, 673], [902, 668], [901, 668], [900, 669]]}, "center": {"94-165, T:0-1": [900, 672]}},
{"id": "twx8yi", "name": "Charizard", "description": "The iconic Fire/Flying-type Pokémon from Generation I that evolves from the starter Pokémon Charmander.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Charizard_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"109-165, T:0-1": [[889, 1497], [913, 1496], [911, 1517], [889, 1519]]}, "center": {"109-165, T:0-1": [900, 1507]}},
-{"id": "twx8wo", "name": "Hakos Baelz", "description": "Hakos Baelz is a VTuber and part of Hololive. She is the concept of chaos.", "links": {"website": ["https://www.youtube.com/channel/UCgmPnx-EEeOrZSg5Tiw7ZRQ", "https://virtualyoutuber.fandom.com/wiki/Hakos_Baelz"], "subreddit": ["HakosBaelz", "Hololive"]}, "path": {"79-107": [[257, 737], [257, 736], [258, 735], [260, 735], [258, 733], [256, 735], [254, 733], [254, 731], [257, 728], [257, 725], [225, 725], [225, 727], [223, 729], [221, 727], [221, 725], [259, 725], [260, 726], [265, 726], [266, 725], [267, 725], [271, 730], [271, 733], [272, 733], [273, 734], [271, 736], [268, 733], [268, 737]], "31-78": [[258, 725], [259, 725], [260, 726], [266, 726], [267, 725], [269, 725], [269, 728], [272, 731], [272, 733], [273, 734], [271, 736], [269, 734], [269, 737], [257, 737], [257, 735], [256, 735], [254, 733], [254, 731], [257, 728], [257, 725]], "108-165, T:0-1": [[238, 736], [239, 735], [237, 733], [235, 735], [233, 733], [233, 731], [236, 728], [236, 727], [235, 726], [235, 725], [225, 725], [225, 727], [223, 729], [221, 727], [221, 725], [235, 725], [235, 724], [237, 724], [239, 726], [245, 726], [246, 725], [248, 725], [248, 728], [251, 731], [251, 733], [252, 734], [250, 736], [248, 734], [249, 733], [247, 731], [247, 733], [245, 735], [246, 736], [246, 737], [238, 737]]}, "center": {"79-107": [263, 731], "31-78": [263, 731], "108-165, T:0-1": [242, 731]}},
+{"id": "twx8wo", "name": "Hakos Baelz", "description": "Hakos Baelz is a VTuber and part of Hololive. She is the concept of chaos.", "links": {"website": ["https://www.youtube.com/channel/UCgmPnx-EEeOrZSg5Tiw7ZRQ", "https://virtualyoutuber.fandom.com/wiki/Hakos_Baelz"], "subreddit": ["HakosBaelz", "Hololive"], "discord": ["holofans"]}, "path": {"79-107": [[257, 737], [257, 736], [258, 735], [260, 735], [258, 733], [256, 735], [254, 733], [254, 731], [257, 728], [257, 725], [225, 725], [225, 727], [223, 729], [221, 727], [221, 725], [259, 725], [260, 726], [265, 726], [266, 725], [267, 725], [271, 730], [271, 733], [272, 733], [273, 734], [271, 736], [268, 733], [268, 737]], "31-78": [[258, 725], [259, 725], [260, 726], [266, 726], [267, 725], [269, 725], [269, 728], [272, 731], [272, 733], [273, 734], [271, 736], [269, 734], [269, 737], [257, 737], [257, 735], [256, 735], [254, 733], [254, 731], [257, 728], [257, 725]], "108-165, T:0-1": [[238, 736], [239, 735], [237, 733], [235, 735], [233, 733], [233, 731], [236, 728], [236, 727], [235, 726], [235, 725], [225, 725], [225, 727], [223, 729], [221, 727], [221, 725], [235, 725], [235, 724], [237, 724], [239, 726], [245, 726], [246, 725], [248, 725], [248, 728], [251, 731], [251, 733], [252, 734], [250, 736], [248, 734], [249, 733], [247, 731], [247, 733], [245, 735], [246, 736], [246, 737], [238, 737]]}, "center": {"79-107": [263, 731], "31-78": [263, 731], "108-165, T:0-1": [242, 731]}},
{"id": "twx8tv", "name": "Jacket", "description": "Jacket is the protagonist of the top-down shooter game Hotline Miami. He is shown here wearing the Richard mask.", "links": {"website": ["https://hotlinemiami.fandom.com/wiki/Jacket", "https://hotlinemiami.com/", "https://en.wikipedia.org/wiki/Hotline_Miami"], "subreddit": ["HotlineMiami"]}, "path": {"89-120": [[181, 84], [181, 86], [179, 86], [179, 93], [186, 93], [186, 86], [185, 86], [185, 84]], "121-165, T:0-1": [[181, 84], [181, 86], [179, 86], [179, 92], [178, 92], [178, 97], [187, 97], [187, 92], [186, 92], [186, 86], [185, 86], [185, 84]]}, "center": {"89-120": [183, 89], "121-165, T:0-1": [183, 91]}},
{"id": "twx8tw", "name": "μ's", "description": "μ's is an idol group from the anime Love Live! School Idol Project. This art is a colored representation of each member from the group.", "links": {"website": ["https://love-live.fandom.com/wiki/Muse"], "subreddit": ["LoveLive"]}, "path": {"137-165, T:0-1": [[867, 668], [867, 672], [871, 672], [871, 668]]}, "center": {"137-165, T:0-1": [869, 670]}},
{"id": "twx8kg", "name": "Rammstein", "description": "The logo of the German band Rammstein along with the hastag of their 2022 album ZEIT", "links": {"website": ["https://www.rammstein.de"], "subreddit": ["rammstein"]}, "path": {"109-165, T:0-1": [[673, 1571], [695, 1571], [695, 1594], [671, 1598]]}, "center": {"109-165, T:0-1": [683, 1584]}},
{"id": "twx8kd", "name": "Ruby Kurosawa", "description": "Ruby Kurosawa is a musician character from the anime school idol project Love Live! Sunshine!!, drawn by animator onkun_suko. She is a member of the group Aquors, and features in the animated music video Cotton Candy Ei-Ei-Oh!\n\nRuby is pictured holding the GameStop stock price line.", "links": {"website": ["https://www.youtube.com/watch?v=Ksf_gq6fZZM", "https://love-live.fandom.com/wiki/Ruby_Kurosawa"], "subreddit": ["LoveLive"]}, "path": {"1-7": [[867, 633], [863, 636], [861, 638], [860, 641], [860, 644], [856, 646], [854, 649], [854, 651], [857, 654], [857, 661], [856, 662], [856, 668], [859, 668], [860, 669], [870, 669], [870, 686], [868, 690], [868, 696], [874, 696], [874, 703], [873, 704], [873, 712], [874, 713], [874, 720], [877, 726], [879, 728], [883, 728], [887, 725], [887, 721], [885, 717], [885, 707], [887, 707], [889, 711], [893, 711], [912, 694], [912, 689], [910, 687], [907, 687], [902, 691], [901, 690], [900, 686], [900, 668], [911, 666], [915, 663], [915, 644], [910, 640], [906, 640], [906, 636], [902, 631], [897, 631], [893, 629], [889, 629], [885, 631], [875, 631], [875, 633]], "8-165, T:0-1": [[861, 641], [862, 637], [869, 634], [872, 636], [876, 632], [902, 632], [902, 666], [913, 667], [914, 674], [914, 681], [906, 686], [905, 689], [907, 688], [911, 689], [910, 695], [906, 698], [895, 708], [891, 710], [885, 707], [884, 707], [884, 715], [886, 724], [879, 726], [875, 719], [876, 695], [871, 693], [870, 687], [872, 684], [871, 669], [860, 665], [859, 655], [856, 651], [857, 647], [862, 637]]}, "center": {"1-7": [884, 653], "8-165, T:0-1": [883, 653]}},
{"id": "twx8j9", "name": "Juan Guarnizo", "description": "A bald depiction of popular Colombian streamer Juan Guarnizo, also known as JuanSGuarnizo or Juaniquilador. Made by his fan community with the help of Auronplay's viewers. The clown nose was added seconds after this was made out of protest. Later attacked by The Void.", "links": {"website": ["https://www.twitch.tv/juansguarnizo"], "subreddit": ["Juaniquilador"]}, "path": {"156-166, T:0-1": [[254, 1043], [254, 1121], [321, 1121], [321, 1043]]}, "center": {"156-166, T:0-1": [288, 1082]}},
{"id": "twx8j2", "name": "A-SOUL", "description": "A-SOUL is a 3D virtual idol girl group from China. The group is composed of five members: AvA (@向晚大魔王), Bella (@贝拉Kira), Carol (@珈乐Carol), Diana (@嘉然今天吃什么), and Eileen (@乃琳Queen). The group debuted in November 2020, and now they stream on the Chinese video sharing sites Bilibili and Douyin (TikTok), with a fan-made YouTube channel maintaining a livestream schedule and simulcast. As of March 2022, A-SOUL has more than 4.1 million combined subscribers on Bilibili. The group is owned by Nuverse, a subsidiary of ByteDance's. \n\nAbove the A-SOUL logo is DianaHeart, an emote featuring A-SOUL member Diana.\n\nThis art was involved in a war with the cryptocurrency Monero after both communities started drawing their art pieces in the same location. This was caused much stress to the nearby r/OriAndTheBlindForest, who had alliance with both groups. The dispute lasted until r/GreenLattice overtook the Monero art, followed shortly after by streamer Asmongold erasing both artworks with a large picture of Iron Fist Alexander from Elden Ring. A-SOUL rebuilt after Asmongold's raid, while Monero moved elsewhere.", "links": {"website": ["https://space.bilibili.com/703007996", "https://virtualyoutuber.fandom.com/wiki/A-soul"], "subreddit": ["ASOUL"]}, "path": {"45-54": [[968, 496], [968, 498], [967, 499], [958, 499], [958, 509], [1000, 509], [1000, 496]], "41-44": [[960, 499], [950, 509], [950, 510], [952, 510], [953, 509], [969, 509], [969, 500], [967, 498], [963, 498]], "113-165, 55-72, 76-108, T:0-1": [[958, 498], [958, 509], [1003, 509], [1003, 496], [965, 496], [965, 498]]}, "center": {"45-54": [979, 503], "41-44": [963, 503], "113-165, 55-72, 76-108, T:0-1": [981, 503]}},
-{"id": "twx8g0", "name": "Touhou logo", "description": "The logo of the bullet hell game Touhou. It was suppose to be Marvel logo, but stray Touhou fans kept changing it to Touhou. In the end the Touhou Hijack server gave up convincing people. Sorry Marvel fans.", "links": {"website": ["https://en.wikipedia.org/wiki/Touhou_Project"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"56-166, T:0-1": [[1699, 822], [1728, 822], [1728, 830], [1699, 830]]}, "center": {"56-166, T:0-1": [1714, 826]}},
+{"id": "twx8g0", "name": "Marvel", "description": "Marvel is a superhero media franchise.\n\nStray Touhou fans kept changing this logo to \"Touhou\". In the end, the Touhou Hijack server gave up convincing people. Sorry Marvel fans.", "links": {"website": ["https://www.marvel.com/", "https://en.wikipedia.org/wiki/Marvel_Universe"]}, "path": {"62-90": [[1699, 822], [1728, 822], [1728, 830], [1699, 830]]}, "center": {"62-90": [1714, 826]}},
{"id": "twx8fr", "name": "Kid's Hat", "description": "Kid's Hat is the first hat worn by Hat Kid, the protagonist of 3D platformer A Hat in Time. The hat is a popular icon for the game.\n\nWhile Hat Kid's face was originally depicted right underneath the Bench area, it conflicted with where Ori would be drawn, and the Kid's Hat was placed atop the bird from Celeste as a compromise (which made the reference more recognizable for people who might be less familiar with the game). The hat gradually grew taller over time.", "links": {"website": ["https://gearsforbreakfast.com/games/a-hat-in-time/"], "subreddit": ["AHatInTime"]}, "path": {"88-104": [[1376, 53], [1376, 58], [1375, 58], [1375, 60], [1382, 60], [1382, 58], [1381, 58], [1381, 53]], "79-87": [[1376, 54], [1376, 58], [1375, 58], [1375, 60], [1382, 60], [1382, 58], [1381, 58], [1381, 54]], "105-166, T:0-1": [[1376, 50], [1381, 50], [1381, 58], [1382, 58], [1382, 60], [1375, 60], [1375, 58], [1376, 58]]}, "center": {"88-104": [1379, 57], "79-87": [1379, 57], "105-166, T:0-1": [1379, 55]}},
{"id": "twx861", "name": "University of Alberta", "description": "The University of Alberta (a.k.a. U of A or uAlberta) is a public research university located in Edmonton, Alberta, Canada. It also has campuses in Camrose and Calgary. Pictured is the school's crest.", "links": {"website": ["https://www.ualberta.ca", "https://en.wikipedia.org/wiki/University_of_Alberta"], "subreddit": ["uAlberta"]}, "path": {"76-87": [[1229, 29], [1229, 55], [1234, 59], [1242, 59], [1247, 55], [1247, 29]], "56-75, 88-167, T:0-1": [[1229, 35], [1229, 54], [1235, 59], [1241, 59], [1247, 54], [1247, 35]]}, "center": {"76-87": [1238, 43], "56-75, 88-167, T:0-1": [1238, 46]}},
{"id": "twx7nt", "name": "Flag of Bornholm", "description": "The unofficial flag of the Danish island of Bornholm, which has a distinct identity due to its distance from the mainland.", "links": {"website": ["https://en.wikipedia.org/wiki/Bornholm", "https://en.wikipedia.org/wiki/Flag_of_Bornholm"], "subreddit": ["place_nordicunion", "Denmark"]}, "path": {"120-140": [[449, 164], [449, 175], [464, 175], [464, 164]], "51-119": [[449, 164], [449, 175], [462, 175], [462, 164]], "141-165, T:0-1": [[463, 164], [438, 164], [438, 180], [463, 180]]}, "center": {"120-140": [457, 170], "51-119": [456, 170], "141-165, T:0-1": [451, 172]}},
@@ -2522,8 +2515,8 @@
{"id": "twx6fl", "name": "Shadoune666", "description": "French YouTuber's Minecraft skin, despite having French as his mother language. His content is mainly in Spanish.", "links": {"website": ["https://www.youtube.com/c/Shadoune666"]}, "path": {"109-165, T:0-1": [[1785, 1378], [1785, 1385], [1793, 1385], [1793, 1378]]}, "center": {"109-165, T:0-1": [1789, 1382]}},
{"id": "twx6f6", "name": "FapFapLand", "description": "A Discord server of friends who wanted to be with plenty of Among Us crewmates. The name doesn't represent the server.", "links": {}, "path": {"109-164, T:0-1": [[145, 1963], [153, 1962], [157, 1967], [146, 1967]]}, "center": {"109-164, T:0-1": [151, 1965]}},
{"id": "twx6er", "name": "Hearthstone logo", "description": "The logo of Hearthstone, Blizzard's card game!", "links": {"website": ["https://playhearthstone.com/"], "subreddit": ["hearthstone"]}, "path": {"109-165, T:0-1": [[366, 1877], [376, 1877], [366, 1887], [377, 1887], [376, 1879], [366, 1884]]}, "center": {"109-165, T:0-1": [387, 1905]}},
-{"id": "twx630", "name": "Nanashi Mumei", "description": "Nanashi Mumei is a VTuber and part of Hololive. She is the guardian of civilisation.", "links": {"website": ["https://www.youtube.com/channel/UC3n5uGu18FoCy23ggWWp8tA", "https://virtualyoutuber.fandom.com/wiki/Nanashi_Mumei"], "subreddit": ["NanashiMumei", "Hololive"]}, "path": {"79-108": [[243, 737], [243, 736], [244, 735], [244, 730], [247, 727], [247, 725], [229, 725], [229, 727], [227, 729], [225, 727], [225, 725], [247, 725], [247, 724], [251, 724], [251, 727], [254, 730], [254, 734], [256, 736], [256, 737]], "30-78": [[243, 736], [244, 735], [244, 730], [247, 727], [247, 724], [251, 724], [251, 727], [254, 730], [254, 735], [255, 736], [255, 737], [243, 737]], "109-165, T:0-1": [[251, 737], [251, 736], [253, 734], [252, 733], [252, 730], [255, 727], [256, 727], [255, 726], [255, 725], [229, 725], [229, 727], [227, 729], [225, 727], [225, 725], [255, 725], [255, 724], [259, 724], [259, 727], [262, 730], [262, 735], [263, 736], [263, 737]]}, "center": {"79-108": [249, 732], "30-78": [249, 732], "109-165, T:0-1": [257, 732]}},
-{"id": "twx5w4", "name": "Neuschwanstein Castle", "description": "Neuschwanstein Castle (German: Schloss Neuschwanstein) is a 19th-century historicist palace in southwest Bavaria, Germany. The palace was commissioned by King Ludwig II of Bavaria as a retreat and in honour of Richard Wagner. The castle was intended as a private residence for the king until he died in 1886. It was open to the public shortly after his death. Since then more than 61 million people have visited Neuschwanstein Castle. It was also an inspiration for the Cinderella Castle by Disney. The flag is the Bavarian one.", "links": {"website": ["https://www.neuschwanstein.de/englisch/tourist/index.htm"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1877, 867], [1815, 866], [1814, 865], [1814, 861], [1817, 861], [1817, 862], [1820, 862], [1820, 857], [1821, 857], [1821, 854], [1822, 853], [1823, 853], [1823, 854], [1825, 854], [1825, 853], [1827, 852], [1828, 853], [1829, 853], [1829, 847], [1830, 846], [1831, 843], [1833, 843], [1834, 840], [1835, 843], [1835, 846], [1836, 846], [1839, 843], [1839, 838], [1840, 835], [1841, 834], [1841, 831], [1841, 835], [1842, 835], [1843, 847], [1846, 847], [1845, 844], [1846, 843], [1849, 843], [1850, 841], [1851, 840], [1855, 843], [1854, 844], [1854, 847], [1855, 848], [1855, 851], [1854, 852], [1854, 857], [1855, 858], [1857, 858], [1857, 857], [1860, 860], [1862, 862], [1863, 862], [1864, 863], [1865, 862], [1868, 862], [1869, 863], [1872, 863], [1874, 865], [1876, 866]]}, "center": {"56-166, T:0-1": [1842, 856]}},
+{"id": "twx630", "name": "Nanashi Mumei", "description": "Nanashi Mumei is a VTuber and part of Hololive. She is the guardian of civilisation.", "links": {"website": ["https://www.youtube.com/channel/UC3n5uGu18FoCy23ggWWp8tA", "https://virtualyoutuber.fandom.com/wiki/Nanashi_Mumei"], "subreddit": ["NanashiMumei", "Hololive"], "discord": ["holofans"]}, "path": {"79-108": [[243, 737], [243, 736], [244, 735], [244, 730], [247, 727], [247, 725], [229, 725], [229, 727], [227, 729], [225, 727], [225, 725], [247, 725], [247, 724], [251, 724], [251, 727], [254, 730], [254, 734], [256, 736], [256, 737]], "30-78": [[243, 736], [244, 735], [244, 730], [247, 727], [247, 724], [251, 724], [251, 727], [254, 730], [254, 735], [255, 736], [255, 737], [243, 737]], "109-165, T:0-1": [[251, 737], [251, 736], [253, 734], [252, 733], [252, 730], [255, 727], [256, 727], [255, 726], [255, 725], [229, 725], [229, 727], [227, 729], [225, 727], [225, 725], [255, 725], [255, 724], [259, 724], [259, 727], [262, 730], [262, 735], [263, 736], [263, 737]]}, "center": {"79-108": [249, 732], "30-78": [249, 732], "109-165, T:0-1": [257, 732]}},
+{"id": "twx5w4", "name": "Neuschwanstein Castle", "description": "Neuschwanstein Castle (German: Schloss Neuschwanstein) is a 19th-century historicist palace. It is situated on a rugged hill above the village of Hohenschwangau (near the town of Füssen) in the Allgäu region of southwest Bavaria, Germany. The palace was commissioned by King Ludwig II of Bavaria as a retreat and in honour of Richard Wagner, and began construction in 1869. The castle was intended as a private residence for the king until he died in 1886. It was open to the public shortly after his death. Since then more than 61 million people have visited Neuschwanstein Castle, with over one million visitors annually. It was also an inspiration for the Cinderella Castle in Disney's theme parks.\n\nA Bavarian flag is drawn next to this art.", "links": {"website": ["https://www.neuschwanstein.de/englisch/tourist/index.htm", "https://en.wikipedia.org/wiki/Neuschwanstein_Castle"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"96-166, T:0-1": [[1840, 830], [1840, 834], [1838, 838], [1838, 843], [1836, 845], [1836, 843], [1834, 839], [1832, 843], [1830, 843], [1828, 847], [1828, 851], [1826, 851], [1825, 852], [1822, 852], [1820, 854], [1820, 856], [1819, 856], [1819, 860], [1814, 860], [1814, 869], [1882, 869], [1882, 866], [1877, 866], [1872, 862], [1869, 862], [1868, 861], [1863, 861], [1857, 856], [1856, 857], [1855, 857], [1855, 852], [1856, 852], [1856, 848], [1855, 847], [1855, 844], [1856, 843], [1851, 839], [1847, 843], [1843, 843], [1843, 835], [1842, 834], [1842, 830]]}, "center": {"96-166, T:0-1": [1842, 857]}},
{"id": "twx5ui", "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.\n\nThis is a Countryball of Denmark, made as a collaboration between r/Denmark and r/polandball. The ball is holding a bottle of Tuborg, a popular beer in Denmark.", "links": {"website": ["https://knowyourmeme.com/memes/polandball", "https://en.wikipedia.org/wiki/Countryballs"], "subreddit": ["polandball", "Denmark"]}, "path": {"149-166, T:0-1": [[545, 304], [545, 299], [546, 297], [548, 295], [549, 294], [551, 293], [556, 293], [558, 294], [560, 296], [561, 298], [562, 299], [562, 304], [561, 306], [558, 309], [556, 310], [551, 310], [549, 309], [546, 306]]}, "center": {"149-166, T:0-1": [553, 302]}},
{"id": "twx5ss", "name": "Ipanema sidewalks", "description": "This pattern is commonly depicted on Brazilian sidewalks, like the Ipanema or Copacabana Beach sidewalks in Rio de Janeiro, Brazil.", "links": {"website": ["https://invexo.com.br/blog/calcadao-de-ipanema/", "https://en.wikipedia.org/wiki/Ipanema"], "subreddit": ["brasil"]}, "path": {"158-165, T:0-1": [[1179, 567], [1177, 569], [1178, 578], [1182, 583], [1188, 584], [1188, 601], [1197, 599], [1198, 599], [1202, 602], [1202, 608], [1212, 608], [1212, 612], [1214, 614], [1215, 614], [1215, 574], [1220, 574], [1220, 569], [1217, 567]]}, "center": {"158-165, T:0-1": [1202, 584]}},
{"id": "twx51k", "name": "Thai flag #2", "description": "Flag of Thailand with Thai Tea and Democracy Monument", "links": {"subreddit": ["thaithai"]}, "path": {"109-166, T:0-1": [[490, 1800], [516, 1800], [516, 1814], [490, 1814]]}, "center": {"109-166, T:0-1": [503, 1807]}},
@@ -2532,13 +2525,13 @@
{"id": "twx3wy", "name": "Farfadox", "description": "Argentinian YouTuber's Minecraft skin.", "links": {"website": ["https://www.youtube.com/c/Farfadox"]}, "path": {"109-165, T:0-1": [[1767, 1378], [1774, 1378], [1774, 1385], [1767, 1385]]}, "center": {"109-165, T:0-1": [1771, 1382]}},
{"id": "twx3q1", "name": "Moondye7 Logo", "description": "This is the logo of a German Twitch Streamer and YouTuber, Moondye7", "links": {"website": ["https://www.twitch.tv/moondye7"], "subreddit": ["Moondye7"]}, "path": {"1-165, T:0-1": [[843, 992], [853, 992], [853, 998], [843, 998]]}, "center": {"1-165, T:0-1": [848, 995]}},
{"id": "twx3pu", "name": "DK", "description": "Danila Kashin, often known as DK, is a Russian singer and streamer.", "links": {"website": ["https://www.twitch.tv/dkincc", "https://en.wikipedia.org/wiki/DK_(Russian_artist)"]}, "path": {"58-90": [[1891, 538], [1891, 588], [1999, 588], [1999, 538]], "99-167": [[1892, 539], [1892, 589], [2000, 589], [2004, 539], [1999, 539], [1893, 539], [1891, 546]]}, "center": {"58-90": [1945, 563], "99-167": [1948, 564]}},
-{"id": "twx3ah", "name": "VIVIZ", "description": "Logo of Korean girl group VIVIZ (비비지).", "links": {"website": ["https://en.wikipedia.org/wiki/Viviz"], "subreddit": ["VIVIZ"]}, "path": {"56-166, T:0-1": [[1696, 869], [1706, 869], [1706, 879], [1696, 879]]}, "center": {"56-166, T:0-1": [1701, 874]}},
+{"id": "twx3ah", "name": "VIVIZ", "description": "VIVIZ (비비지) is a Korean girl group.", "links": {"website": ["http://www.bpment.co.kr/bpm/artist/detail.do?artistId=25&groupType=O", "https://en.wikipedia.org/wiki/Viviz"], "subreddit": ["VIVIZ", "kpop"]}, "path": {"125-166, T:0-1": [[1696, 869], [1706, 869], [1706, 879], [1696, 879]]}, "center": {"125-166, T:0-1": [1701, 874]}},
{"id": "twx38z", "name": "Kanto starter Pokémon", "description": "The starter Pokémon of Kanto (Generation I), Squirtle, Charmander, and Bulbasaur.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Starter_Pok%C3%A9mon#Kanto"], "subreddit": ["pokemon"]}, "path": {"109-166, T:0-1": [[779, 1721], [842, 1722], [844, 1748], [777, 1740]]}, "center": {"109-166, T:0-1": [812, 1733]}},
{"id": "twx37e", "name": "La fleur de l'ombre de Ponce (Ponce's shadow flower)", "description": "One of the symbol of the french streamer Ponce, a shadow flower, which represents the part of his community that watches his livestreams but doesn't interact with the chat.", "links": {"website": ["https://www.twitch.tv/ponce"]}, "path": {"109-164, T:0-1": [[274, 1549], [269, 1541], [272, 1540], [274, 1541], [274, 1538], [269, 1537], [265, 1534], [267, 1529], [264, 1526], [265, 1521], [270, 1520], [272, 1517], [278, 1517], [280, 1519], [285, 1522], [285, 1528], [284, 1529], [285, 1534], [283, 1536], [281, 1537], [279, 1540], [275, 1544]]}, "center": {"109-164, T:0-1": [275, 1530]}},
{"id": "twx365", "name": "Toucan", "description": "A toucan (Portuguese: tucano) is a common bird found in the Amazon Rainforest in Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Toucan"], "subreddit": ["brasil"]}, "path": {"60-166, T:0-1": [[1002, 600], [999, 602], [997, 604], [997, 608], [1009, 608], [1009, 611], [1008, 612], [1004, 612], [1004, 618], [1017, 618], [1020, 615], [1020, 612], [1019, 611], [1019, 602], [1017, 600]]}, "center": {"60-166, T:0-1": [1014, 605]}},
{"id": "twx327", "name": "Phosphophyllite", "description": "Phosphophyllite is the main character of Land of the Lustrous (Houseki no Kuni).", "links": {"website": ["https://houseki-no-kuni.fandom.com/wiki/Phosphophyllite"], "subreddit": ["LandoftheLustrous", "HousekiNoKuni"]}, "path": {"68-81": [[1374, 527], [1374, 542], [1377, 542], [1377, 560], [1393, 560], [1393, 527]], "82-166, T:0-1": [[1575, 496], [1579, 500], [1580, 502], [1580, 509], [1578, 509], [1578, 510], [1576, 512], [1576, 515], [1577, 516], [1577, 519], [1575, 521], [1575, 530], [1568, 530], [1566, 528], [1566, 526], [1568, 521], [1567, 521], [1565, 519], [1565, 516], [1566, 515], [1566, 512], [1562, 508], [1562, 502], [1563, 500], [1567, 496]]}, "center": {"68-81": [1384, 536], "82-166, T:0-1": [1571, 505]}},
{"id": "twx31n", "name": "Roxy Migurdia", "description": "Roxy Migurdia is one of the most beloved characters from the hit light novel and anime series Mushoku Tensei: Jobless Reincarnation. She is the mentor of Rudeus Greyrat, the main protagonist of the series.", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Roxy_Migurdia"], "subreddit": ["mushokutensei", "Roxy", "sixfacedworld"]}, "path": {"137-166, T:0-1": [[1892, 664], [1850, 664], [1850, 666], [1841, 666], [1840, 715], [1891, 715]]}, "center": {"137-166, T:0-1": [1866, 690]}},
-{"id": "twx2aa", "name": "Ouro Kronii", "description": "Ouro Kronii is a VTuber for Hololive. She is a warden of time.", "links": {"website": ["https://www.youtube.com/c/OuroKroniiCh", "https://virtualyoutuber.fandom.com/wiki/Ouro_Kronii"], "subreddit": ["OuroKronii", "Hololive"]}, "path": {"32-78": [[271, 730], [275, 725], [279, 725], [283, 730], [283, 731], [282, 732], [282, 737], [272, 737], [272, 732], [271, 731]], "79-166, T:0-1": [[272, 737], [272, 736], [274, 734], [274, 733], [273, 734], [272, 733], [272, 732], [271, 731], [271, 730], [272, 729], [272, 728], [275, 725], [233, 725], [233, 730], [231, 732], [229, 730], [229, 728], [233, 728], [233, 725], [279, 725], [283, 730], [283, 731], [282, 732], [282, 737]]}, "center": {"32-78": [277, 731], "79-166, T:0-1": [277, 730]}},
+{"id": "twx2aa", "name": "Ouro Kronii", "description": "Ouro Kronii is a VTuber for Hololive. She is a warden of time.", "links": {"website": ["https://www.youtube.com/c/OuroKroniiCh", "https://virtualyoutuber.fandom.com/wiki/Ouro_Kronii"], "subreddit": ["OuroKronii", "Hololive"], "discord": ["holofans"]}, "path": {"32-78": [[271, 730], [275, 725], [279, 725], [283, 730], [283, 731], [282, 732], [282, 737], [272, 737], [272, 732], [271, 731]], "79-166, T:0-1": [[272, 737], [272, 736], [274, 734], [274, 733], [273, 734], [272, 733], [272, 732], [271, 731], [271, 730], [272, 729], [272, 728], [275, 725], [233, 725], [233, 730], [231, 732], [229, 730], [229, 728], [233, 728], [233, 725], [279, 725], [283, 730], [283, 731], [282, 732], [282, 737]]}, "center": {"32-78": [277, 731], "79-166, T:0-1": [277, 730]}},
{"id": "twx25l", "name": "Elitecraft 3", "description": "Some of the members of Elitecraft 3 (Minecraft survival multiplayer server): EsVandal, SrAmilcar, Kakytron, KillerCreeper55, Farfadox, Crisgreen, Shadoune666, ElRichMC.", "links": {"website": ["https://twitter.com/EliteCraftSMP"]}, "path": {"109-165, T:0-1": [[1766, 1369], [1766, 1386], [1803, 1386], [1803, 1369]]}, "center": {"109-165, T:0-1": [1785, 1378]}},
{"id": "twx23x", "name": "Immediate Murder Professionals", "description": "The Immediate Murder Professionals (I.M.P.) is a hell-based assassination company from the animated YouTube series Helluva Boss.", "links": {"website": ["https://hazbinhotel.fandom.com/wiki/I.M.P"], "subreddit": ["HelluvaBoss"]}, "path": {"67-76": [[1273, 524], [1273, 534], [1285, 534], [1285, 524]], "77-165, T:0-1": [[1291, 534], [1303, 534], [1303, 544], [1291, 544]]}, "center": {"67-76": [1279, 529], "77-165, T:0-1": [1297, 539]}},
{"id": "twx1p0", "name": "Peeky", "description": "A red gnome from indie rhythm RPG Everhood. This particular gnome was nicknamed Peeky by fans, because they are peeking over Blue Thief.", "links": {"subreddit": ["everhood"]}, "path": {"109-166, T:0-1": [[1307, 1890], [1303, 1890], [1302, 1891], [1301, 1891], [1301, 1890], [1302, 1889], [1302, 1886], [1303, 1885], [1303, 1884], [1304, 1883], [1305, 1884], [1305, 1885], [1306, 1886], [1306, 1889]]}, "center": {"109-166, T:0-1": [1304, 1887]}},
@@ -2575,7 +2568,7 @@
{"id": "twwwx8", "name": "Linux Mint", "description": "Linux Mint is an operating system for desktop and laptop computers. It is designed to work \"out of the box\" and comes fully equipped with the apps most people need.", "links": {"website": ["https://linuxmint.com/", "https://en.wikipedia.org/wiki/Linux_Mint"], "subreddit": ["linuxmint", "placetux"]}, "path": {"3-158": [[48, 680], [48, 688], [50, 690], [58, 690], [60, 688], [60, 683], [58, 681], [51, 681], [51, 680]], "159-165, T:0-1": [[61, 688], [61, 682], [59, 680], [51, 680], [51, 686], [53, 688]]}, "center": {"3-158": [53, 685], "159-165, T:0-1": [56, 684]}},
{"id": "twwww4", "name": "The Rising of the Shield Hero", "description": "Artwork for the anime The Rising of the Shield Hero. The top left is the shield of the main character; the girl on the right is the character Raphtalia.", "links": {"website": ["https://myanimelist.net/anime/35790/Tate_no_Yuusha_no_Nariagari?q=shield%20herp&cat=anime"], "subreddit": ["shieldbro", "RisingOfTheShieldHero"]}, "path": {"109-166, T:0-1": [[796, 1543], [796, 1519], [843, 1519], [843, 1556], [810, 1556], [810, 1543]]}, "center": {"109-166, T:0-1": [821, 1536]}},
{"id": "twwwpq", "name": "Relajao Frog", "description": "Relajao frog it's a meme asociated with a spanish streamer called ChusoMontero, specialized on No Hit", "links": {"website": ["https://twitch.tv/chusommontero"], "subreddit": ["ChusoMMontero"]}, "path": {"109-166, T:0-1": [[1451, 1023], [1475, 1023], [1475, 1043], [1451, 1043]]}, "center": {"109-166, T:0-1": [1463, 1033]}},
-{"id": "twwwpk", "name": "aXoZer", "description": "Logo and Minecraft face of the Spanish streamer aXoZer.", "links": {"website": ["https://www.twitch.tv/axozer"], "subreddit": ["AxoZer"]}, "path": {"56-165, T:0-1": [[1803, 804], [1845, 804], [1845, 830], [1816, 830], [1816, 828], [1810, 828], [1810, 830], [1803, 830], [1803, 828], [1802, 828], [1802, 819], [1803, 819], [1803, 814], [1802, 814], [1802, 805], [1803, 805], [1803, 804], [1804, 804]]}, "center": {"56-165, T:0-1": [1824, 817]}},
+{"id": "twwwpk", "name": "aXoZer", "description": "aXoZer is a Spanish streamer. This art depicts his logo and his skin from the game Minecraft.", "links": {"website": ["https://www.twitch.tv/axozer"], "subreddit": ["aXoZer"]}, "path": {"130-148": [[1802, 804], [1801, 805], [1801, 815], [1802, 815], [1802, 832], [1801, 832], [1801, 834], [1824, 834], [1828, 838], [1830, 838], [1830, 831], [1845, 831], [1845, 804]], "104-129": [[1802, 805], [1802, 831], [1840, 831], [1840, 819], [1845, 819], [1845, 805]], "149-153": [[1801, 804], [1801, 815], [1802, 815], [1802, 832], [1801, 832], [1801, 842], [1846, 842], [1846, 814], [1842, 814], [1842, 815], [1834, 815], [1834, 814], [1833, 814], [1833, 803], [1801, 803]], "154-165, T:0-1": [[1803, 803], [1801, 805], [1801, 815], [1802, 815], [1802, 818], [1801, 818], [1801, 829], [1802, 829], [1802, 831], [1846, 831], [1846, 814], [1842, 814], [1842, 815], [1834, 815], [1834, 814], [1833, 814], [1833, 804]]}, "center": {"130-148": [1821, 819], "104-129": [1824, 818], "149-153": [1820, 825], "154-165, T:0-1": [1819, 817]}},
{"id": "twwwor", "name": "Scuderia Ferrari", "description": "Scuderia Ferrari is a Formula 1 team owned by automobile manufacturer Ferrari. This art depicts the team's emblem and signature Rosso Corsa (red) colour.", "links": {"website": ["https://www.ferrari.com/formula1", "https://en.wikipedia.org/wiki/Scuderia_Ferrari"], "subreddit": ["formula1"]}, "path": {"5-165, T:0-1": [[485, 795], [506, 795], [506, 825], [485, 825]]}, "center": {"5-165, T:0-1": [496, 810]}},
{"id": "twwwea", "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": ["alzheimersgroup"]}, "path": {"109-166, T:0-1": [[1576, 1705], [1590, 1705], [1590, 1711], [1577, 1711], [1576, 1711]]}, "center": {"109-166, T:0-1": [1583, 1708]}},
{"id": "twww7l", "name": "Meto!", "description": "A phrase used in Chiriqui a province of Panama", "links": {"subreddit": ["Panama"]}, "path": {"109-165, T:0-1": [[1523, 1986], [1568, 1986], [1568, 2000], [1523, 2000]]}, "center": {"109-165, T:0-1": [1546, 1993]}},
@@ -2588,7 +2581,7 @@
{"id": "twwujl", "name": "Sims' crystal", "description": "The green Sims crystal- the franchise's logo", "links": {"subreddit": ["thesims"]}, "path": {"109-166, T:0-1": [[538, 1828], [548, 1828], [548, 1848], [538, 1848]]}, "center": {"109-166, T:0-1": [543, 1838]}},
{"id": "twwugc", "name": "Chelsea FC", "description": "the logo of chelsea football club", "links": {"subreddit": ["chelseafc"]}, "path": {"1-165, T:0-1": [[824, 922], [855, 922], [855, 961], [847, 961], [847, 969], [833, 969], [833, 961], [824, 961]]}, "center": {"1-165, T:0-1": [840, 943]}},
{"id": "twwuc1", "name": "Atlus", "description": "Atlus Co., Ltd. is a Japanese video game developer, publisher, arcade manufacturer and distribution company based in Tokyo. A subsidiary of Sega, the company is internationally known for its Megami Tensei, Persona, Etrian Odyssey, and Trauma Center series, among others. On the left is Jack Frost, a famous Atlus character from Megami Tensei who is also featured in others like the Persona series. On the right is the Phantom Thieves of Heart logo from Persona 5.", "links": {"website": ["https://atlus.com/", "https://en.wikipedia.org/wiki/Atlus"], "subreddit": ["atlus", "Persona5"]}, "path": {"79-166, T:0-1": [[1465, 281], [1461, 285], [1461, 286], [1465, 286], [1465, 292], [1464, 293], [1465, 294], [1465, 298], [1466, 299], [1466, 305], [1469, 305], [1469, 308], [1493, 308], [1487, 314], [1487, 317], [1492, 322], [1497, 322], [1500, 325], [1510, 325], [1519, 316], [1520, 316], [1528, 308], [1529, 304], [1531, 304], [1533, 302], [1533, 300], [1529, 294], [1529, 287], [1526, 287], [1518, 295], [1516, 295], [1514, 293], [1514, 289], [1516, 285], [1516, 283], [1512, 279], [1505, 279], [1493, 285], [1491, 286], [1482, 286], [1482, 285], [1478, 281], [1477, 281], [1474, 284], [1469, 284], [1466, 281]]}, "center": {"79-166, T:0-1": [1508, 307]}},
-{"id": "twwubm", "name": "Pogostuck", "description": "Pogostuck is a game developed by Hendrik Felix Pohl. It can be very frustrating", "links": {"website": ["https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/"], "subreddit": ["Pogostuck"]}, "path": {"56-166, T:0-1": [[1575, 831], [1630, 831], [1630, 868], [1576, 868], [1575, 832]]}, "center": {"56-166, T:0-1": [1603, 849]}},
+{"id": "twwubm", "name": "Pogostuck: Rage With Your Friends", "description": "Pogostuck: Rage With Your Friends is a 2019 indie game made by the developer Superku (Hendrik Felix Pohl). It is known for its extreme difficuly.", "links": {"website": ["https://www.pogostuck.com/", "https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/"], "subreddit": ["PogoStuck"]}, "path": {"116-166, T:0-1": [[1575, 847], [1575, 831], [1628, 831], [1628, 847]]}, "center": {"116-166, T:0-1": [1602, 839]}},
{"id": "twwu6x", "name": "ppL nmplol edition", "description": "ppL built by nmplol's offline chat.", "links": {"website": ["https://twitch.tv/nmplol"], "subreddit": ["Nmpx"]}, "path": {"109-165, T:0-1": [[1065, 1658], [1065, 1667], [1054, 1667], [1054, 1658], [1064, 1658]]}, "center": {"109-165, T:0-1": [1060, 1663]}},
{"id": "twwu4i", "name": "Gean", "description": "A character from Kemono Friends who is based on the Gentoo penguin. She is a member of PPP (Penguin Performance Project), an in-franchise idol group.", "links": {"website": ["https://japari-library.com/wiki/Gentoo_Penguin"], "subreddit": ["KemonoFriends"]}, "path": {"109-166, T:0-1": [[1693, 1560], [1693, 1570], [1700, 1570], [1700, 1560]]}, "center": {"109-166, T:0-1": [1697, 1565]}},
{"id": "twwu33", "name": "i_o", "description": "i_o, real name Garrett Lockhart, was a techno music producer & DJ from deadmau5's \"mau5trap\" label. He sadly passed away at age 30 in November 2020 from a sudden arrhythmia caused by Hashimoto's thyroiditis.", "links": {"website": ["https://en.wikipedia.org/wiki/I_o_(musician)"], "subreddit": ["i_o"]}, "path": {"97-104": [[1988, 400], [1988, 422], [2000, 422], [2000, 400]], "71-96": [[1990, 413], [1990, 419], [2000, 419], [2000, 413]], "60-70": [[1981, 413], [1981, 419], [1999, 419], [1999, 413]], "105-166, T:0-1": [[1988, 400], [1988, 421], [2000, 421], [2000, 400]]}, "center": {"97-104": [1994, 411], "71-96": [1995, 416], "60-70": [1990, 416], "105-166, T:0-1": [1994, 411]}},
@@ -2598,7 +2591,7 @@
{"id": "twwt7b", "name": "Monero", "description": "Monero (XMR) is a decentralized cryptocurrency introduced in 2014. It uses a public distributed ledger with privacy-enhancing technologies that obfuscate transactions to achieve anonymity and fungibility. Observers cannot decipher addresses trading monero, transaction amounts, address balances, or transaction histories.", "links": {"website": ["https://www.getmonero.org/", "https://en.wikipedia.org/wiki/Monero"], "subreddit": ["Monero", "monerochan"]}, "path": {"122-132": [[1387, 1233], [1387, 1243], [1450, 1243], [1450, 1233]], "69-78": [[965, 465], [965, 509], [1061, 509], [1061, 497], [1064, 492], [1069, 489], [1078, 489], [1078, 465]], "49-54": [[965, 465], [965, 496], [999, 496], [999, 465]], "40-48": [[968, 492], [968, 509], [1000, 509], [1000, 492]], "18-31": [[960, 469], [960, 483], [922, 483], [922, 494], [925, 494], [925, 488], [934, 488], [934, 500], [938, 500], [938, 489], [957, 489], [957, 498], [945, 498], [945, 499], [952, 506], [952, 512], [999, 512], [999, 469]], "3-17": [[960, 469], [960, 512], [999, 512], [999, 469]], "55-68, 79-107": [[965, 465], [965, 496], [1001, 496], [1001, 509], [1060, 509], [1060, 497], [1065, 490], [1069, 488], [1078, 488], [1078, 465]], "134-166, T:0-1": [[1358, 1238], [1358, 1252], [1365, 1252], [1369, 1256], [1369, 1263], [1382, 1263], [1382, 1269], [1387, 1269], [1387, 1243], [1450, 1243], [1450, 1233], [1363, 1233]]}, "center": {"122-132": [1419, 1238], "69-78": [1022, 487], "49-54": [982, 481], "40-48": [984, 501], "18-31": [979, 491], "3-17": [980, 491], "55-68, 79-107": [1022, 487], "134-166, T:0-1": [1375, 1245]}},
{"id": "twwt1z", "name": "Chinese 12 Zodiac", "description": "Chinese zodiac, or shengxiao (/shnng-sshyao/ 'born resembling'), is represented by 12 zodiac animals. In order, They are the Rat, Ox, Tiger, Rabbit, Dragon, Snake, Horse, Goat, Monkey, Rooster, Dog, and Pig.", "links": {"website": ["https://r/China_irl"], "subreddit": ["China_irl"]}, "path": {"109-166, T:0-1": [[891, 1779], [972, 1778], [973, 1815], [945, 1814], [940, 1809], [939, 1815], [935, 1812], [931, 1813], [922, 1805], [918, 1805], [913, 1809], [911, 1812], [908, 1814], [906, 1813], [905, 1809], [900, 1811], [898, 1813], [896, 1814], [894, 1813], [894, 1789], [890, 1788], [890, 1779]]}, "center": {"109-166, T:0-1": [934, 1795]}},
{"id": "twwssf", "name": "Chico", "description": "My son, my world, my everything. Our bond so unique, beautiful & strong. I'll always treasure our 16 years together, I'll always miss you. Until you meow at me again! Forever in my heart, I love you so much Chico.\n\nHe was the most lovy, sweetest and loved cat ever. THANK YOU, everyone who helped me immortalize Chico in pixel art. You've have no idea how much it meant to me. With love, Mapa.", "links": {"website": ["https://www.instagram.com/chicopulguin/"], "subreddit": ["placeChico"]}, "path": {"109-166, T:0-1": [[1568, 1107], [1568, 1122], [1547, 1122], [1547, 1107]]}, "center": {"109-166, T:0-1": [1558, 1115]}},
-{"id": "twwsrv", "name": "Iguazú Falls", "description": "Waterfalls of the Iguazú River on the border of the Argentine province of Misiones and the Brazilian state of Paraná. Together, they make up the largest waterfall system in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Iguazu_Falls"], "subreddit": ["brasil", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"78-118": [[1043, 605], [1040, 608], [1040, 614], [1038, 618], [1038, 620], [1041, 627], [1043, 630], [1046, 631], [1074, 631], [1083, 623], [1085, 622], [1085, 611], [1086, 611], [1086, 604], [1044, 604]], "119-165, T:0-1": [[1042, 604], [1039, 613], [1039, 614], [1083, 614], [1085, 611], [1087, 611], [1087, 606], [1085, 604]]}, "center": {"78-118": [1062, 618], "119-165, T:0-1": [1063, 609]}},
+{"id": "twwsrv", "name": "Iguazú Falls", "description": "Waterfalls of the Iguazú River on the border of the Argentine province of Misiones and the Brazilian state of Paraná. Together, they make up the largest waterfall system in the world.", "links": {"website": ["https://en.wikipedia.org/wiki/Iguazu_Falls"], "subreddit": ["brasil", "argentina", "Republica_Argentina"]}, "path": {"78-118": [[1043, 605], [1040, 608], [1040, 614], [1038, 618], [1038, 620], [1041, 627], [1043, 630], [1046, 631], [1074, 631], [1083, 623], [1085, 622], [1085, 611], [1086, 611], [1086, 604], [1044, 604]], "119-165, T:0-1": [[1042, 604], [1039, 613], [1039, 614], [1083, 614], [1085, 611], [1087, 611], [1087, 606], [1085, 604]]}, "center": {"78-118": [1062, 618], "119-165, T:0-1": [1063, 609]}},
{"id": "twwspt", "name": "Eye of ender", "description": "An eye of ender is a craftable item in Minecraft, used to locate strongholds and activate the end portals within them.", "links": {"subreddit": ["Minecraft"]}, "path": {"109-166, T:0-1": [[1059, 1951], [1056, 1951], [1056, 1953], [1054, 1953], [1053, 1955], [1052, 1956], [1052, 1960], [1055, 1964], [1059, 1965], [1063, 1962], [1065, 1957], [1063, 1954]]}, "center": {"109-166, T:0-1": [1058, 1958]}},
{"id": "twwshn", "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", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"1-3": [[800, 200], [800, 367], [837, 367], [837, 200]], "4-8": [[800, 252], [800, 429], [837, 429], [837, 252]], "9-16": [[782, 252], [782, 330], [785, 330], [785, 358], [787, 358], [787, 429], [865, 429], [865, 371], [856, 371], [856, 360], [865, 360], [865, 252]], "17-61": [[781, 252], [781, 330], [786, 330], [786, 360], [787, 360], [787, 450], [865, 450], [865, 371], [854, 371], [854, 360], [865, 360], [865, 252]], "62-98": [[781, 250], [781, 330], [786, 330], [786, 360], [787, 360], [787, 450], [865, 450], [865, 371], [854, 371], [854, 360], [865, 360], [865, 250]], "99-166, T:0-1": [[781, 198], [781, 330], [786, 330], [786, 360], [787, 360], [787, 450], [865, 450], [865, 371], [854, 371], [854, 360], [865, 360], [865, 198]]}, "center": {"1-3": [819, 284], "4-8": [819, 341], "9-16": [824, 294], "17-61": [823, 310], "62-98": [823, 310], "99-166, T:0-1": [824, 321]}},
{"id": "twwsej", "name": "Flag of Bangladesh", "description": "Bangladesh is a country in South Asia, to the east of India on the Bay of Bengal. It is marked by lush greenery and many waterways. Its Padma (Ganges), Meghna, and Jamuna rivers create fertile plains, and travel by boat is common.\n\nThis art depicts the flag of Bangladesh with a Bengal tiger, 1971 (its independence year), National Martyrs' Memorial, Martyr Monument, and Bangladesh written in its native language Bengali.", "links": {"website": ["https://en.wikipedia.org/wiki/Bangladesh"], "subreddit": ["bangladesh", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[285, 985], [316, 985], [323, 993], [323, 1042], [285, 1042]]}, "center": {"109-166, T:0-1": [304, 1014]}},
@@ -2607,10 +2600,10 @@
{"id": "twwryi", "name": "MOAbong", "description": "The MOAbong above the TOMORROW X TOGETHER logo is the official light stick of the group. MOA (Moments Of Alwaysness) is the fandom name of the group, and the light stick is used to cheer them on in concerts and other events.", "links": {"website": ["https://moabong.carrd.co/"], "subreddit": ["TomorrowByTogether"]}, "path": {"78-97": [[1550, 201], [1550, 205], [1554, 205], [1554, 204], [1557, 204], [1557, 202], [1554, 202], [1554, 201]], "127-166, 98-123, T:0-1": [[1552, 193], [1550, 195], [1550, 197], [1552, 199], [1552, 204], [1554, 204], [1554, 199], [1556, 197], [1556, 195], [1554, 193]]}, "center": {"78-97": [1552, 203], "127-166, 98-123, T:0-1": [1553, 196]}},
{"id": "twwrsm", "name": "CoreJourney", "description": "CoreJourney is a Minecraft anarchy server where if you die, you get banned for 24 hours. It was founded in March 2020.", "links": {"website": ["https://CoreJourney.org"], "subreddit": ["corejourney"]}, "path": {"13-27, 53-82": [[151, 33], [151, 42], [160, 42], [160, 33]], "94-165, T:0-1": [[153, 33], [153, 39], [155, 41], [161, 41], [162, 40], [162, 33]]}, "center": {"13-27, 53-82": [156, 38], "94-165, T:0-1": [158, 37]}},
{"id": "twwrje", "name": "Leo", "description": "Leo is a major character in the furry visual novel Echo by the Echo project.", "links": {"website": ["https://echoproject.fandom.com/wiki/Leo_Alvarez", "https://echoproject.itch.io/echo"], "subreddit": ["FurryVisualNovels"]}, "path": {"139-166, T:0-1": [[1663, 511], [1663, 515], [1662, 515], [1662, 519], [1664, 519], [1667, 522], [1670, 519], [1672, 519], [1672, 515], [1671, 515], [1671, 511], [1670, 511], [1667, 514], [1664, 511]]}, "center": {"139-166, T:0-1": [1667, 517]}},
-{"id": "twwrib", "name": "French-German allience", "description": "They both like arte so they became friends.", "links": {"subreddit": ["placefrance", "franceplace", "placeFR", "france", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1161, 825], [1163, 825], [1164, 826], [1165, 825], [1167, 825], [1168, 826], [1169, 827], [1169, 830], [1164, 835], [1159, 830], [1159, 827], [1160, 826]]}, "center": {"56-166, T:0-1": [1164, 829]}},
+{"id": "twwrib", "name": "Germany-France heart", "description": "A heart depicting the flags of Germany and France. They both like arte so they became friends.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/France"], "subreddit": ["placeDE", "de", "germany", "placefrance", "franceplace", "placeFR", "france"], "discord": ["placeDE"]}, "path": {"58-66": [[1160, 825], [1157, 828], [1157, 831], [1163, 837], [1169, 831], [1169, 828], [1166, 825]], "74-166, T:0-1": [[1161, 824], [1158, 827], [1158, 830], [1164, 836], [1170, 830], [1170, 827], [1167, 824]]}, "center": {"58-66": [1163, 830], "74-166, T:0-1": [1164, 829]}},
{"id": "twwrhx", "name": "Coxinha", "description": "Coxinha is a popular Brazilian snack usually made of chicken. There is also a vegan option made of jackfruit.", "links": {"website": ["https://en.wikipedia.org/wiki/Coxinha"], "subreddit": ["brasil"]}, "path": {"75-166, T:0-1": [[1110, 604], [1104, 611], [1104, 617], [1107, 619], [1113, 619], [1115, 617], [1115, 610]]}, "center": {"75-166, T:0-1": [1110, 613]}},
{"id": "twzggw", "name": "Cirno", "description": "Cirno (or Chiruno) is a character from the Touhou Project. She is an ice fairy who is well-liked by the community and jokingly regarded as the strongest.\n\nThis small art piece was created early on in the event by pxls.space veterans, and quickly gained a cult following within the Touhou r/place 2022 group Discord. It survived many attacks that targeted osu! and its surrounding area, but was displaced by Alpha-chan on the third day. This design spawned derivative designs for Daiyousei and Clownpiece, both also fairies from the Touhou Project. At one point she became tanned.", "links": {"website": ["https://en.touhouwiki.net/wiki/Cirno", "http://perfectfreeze.art"], "subreddit": ["touhou", "pxlsspace"], "discord": ["UVkWNdhQ"]}, "path": {"3-5": [[785, 727], [785, 730], [786, 730], [786, 733], [785, 733], [782, 734], [779, 734], [778, 731], [777, 731], [778, 731], [778, 729], [777, 729], [778, 729], [778, 727], [779, 726], [781, 727], [782, 727], [784, 726]], "6-106": [[759, 773], [759, 776], [760, 776], [760, 779], [759, 779], [756, 780], [753, 780], [752, 777], [751, 777], [752, 777], [752, 775], [751, 775], [752, 775], [752, 773], [753, 772], [755, 773], [756, 773], [758, 772]], "107-165, T:0-1": [[770, 762], [770, 765], [771, 765], [771, 768], [770, 768], [767, 769], [764, 769], [763, 766], [762, 766], [763, 766], [763, 764], [762, 764], [763, 764], [763, 762], [764, 761], [766, 762], [767, 762], [769, 761]]}, "center": {"3-5": [782, 730], "6-106": [756, 776], "107-165, T:0-1": [767, 765]}},
-{"id": "twwr94", "name": "Volkswagen Golf 1", "description": "The Volkswagen Golf Mk1 is the first generation of a small family car manufactured and marketed by Volkswagen. It's the successor to Volkswagen's Beetle.", "links": {"website": ["https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk1"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1671, 852], [1688, 852], [1693, 857], [1693, 864], [1692, 864], [1692, 866], [1692, 867], [1689, 867], [1689, 866], [1688, 866], [1688, 865], [1678, 866], [1677, 867], [1676, 868], [1674, 869], [1672, 867], [1671, 866], [1661, 867], [1660, 868], [1658, 868], [1657, 867], [1656, 866], [1655, 866], [1654, 866], [1654, 862], [1655, 862], [1656, 859], [1657, 858], [1661, 858], [1661, 857], [1664, 857], [1669, 852]]}, "center": {"56-166, T:0-1": [1675, 860]}},
+{"id": "twwr94", "name": "Volkswagen Golf Mk1", "description": "The Volkswagen Golf Mk1 is the first generation of a small family car manufactured and marketed by German automobile maker Volkswagen. It is the successor to Volkswagen's Beetle model.", "links": {"website": ["https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk1"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"99-166, T:0-1": [[1668, 851], [1663, 856], [1661, 856], [1660, 857], [1654, 857], [1652, 859], [1652, 861], [1657, 866], [1659, 866], [1660, 867], [1672, 867], [1673, 868], [1693, 868], [1693, 865], [1694, 864], [1694, 857], [1691, 853], [1688, 851]]}, "center": {"99-166, T:0-1": [1678, 860]}},
{"id": "twwr6f", "name": "A kockásfülű nyúl", "description": "A kockásfülű nyúl (English: The Rabbit with Checkered Ears) is a Hungarian animated children's series.", "links": {"website": ["https://en.wikipedia.org/wiki/A_kock%C3%A1sf%C3%BCl%C5%B1_ny%C3%BAl"], "subreddit": ["hungary"]}, "path": {"97-156": [[1445, 253], [1438, 260], [1438, 269], [1441, 272], [1443, 272], [1446, 269], [1446, 265], [1448, 263], [1453, 263], [1453, 268], [1455, 271], [1461, 275], [1467, 275], [1472, 272], [1475, 268], [1475, 262], [1483, 265], [1483, 268], [1486, 271], [1488, 271], [1491, 268], [1491, 260], [1484, 253], [1475, 253], [1471, 255], [1470, 256], [1459, 256], [1457, 254], [1454, 253]], "157-166, T:0-1": [[1460, 274], [1468, 274], [1468, 273], [1470, 273], [1470, 272], [1471, 271], [1472, 271], [1473, 270], [1473, 269], [1474, 268], [1474, 263], [1473, 262], [1473, 261], [1478, 261], [1478, 262], [1481, 262], [1483, 264], [1483, 265], [1484, 265], [1484, 270], [1485, 270], [1485, 271], [1486, 271], [1486, 270], [1488, 270], [1488, 269], [1489, 269], [1489, 268], [1490, 268], [1490, 267], [1491, 266], [1491, 265], [1491, 264], [1490, 264], [1490, 262], [1489, 262], [1489, 261], [1488, 261], [1488, 260], [1487, 260], [1487, 259], [1486, 259], [1486, 257], [1485, 257], [1485, 256], [1484, 256], [1484, 254], [1475, 254], [1475, 255], [1474, 255], [1473, 256], [1471, 256], [1470, 257], [1469, 258], [1468, 258], [1467, 258], [1467, 257], [1461, 257], [1461, 258], [1460, 258], [1459, 258], [1458, 258], [1458, 256], [1456, 256], [1456, 255], [1455, 255], [1455, 254], [1445, 254], [1445, 255], [1444, 255], [1444, 256], [1443, 256], [1443, 257], [1441, 257], [1441, 258], [1440, 258], [1440, 259], [1439, 259], [1439, 262], [1440, 262], [1440, 263], [1441, 263], [1441, 264], [1442, 264], [1443, 264], [1443, 265], [1445, 265], [1447, 263], [1448, 262], [1451, 262], [1452, 261], [1452, 260], [1455, 260], [1455, 262], [1455, 263], [1454, 263], [1454, 268], [1455, 268], [1454, 268]]}, "center": {"97-156": [1464, 265], "157-166, T:0-1": [1464, 266]}},
{"id": "twwr5a", "name": "SHAW!", "description": "SHAW! is a battle cry yelled by Hornet during her multiple boss fights in the game Hollow Knight, telegraphing her attacks. It has since become a popular phrase/meme within the Hollow Knight community.", "links": {"subreddit": ["HKPlace", "HollowKnight"], "discord": ["RKWC7ZUVnz"]}, "path": {"18-165, T:0-1": [[276, 391], [276, 399], [299, 399], [299, 391]]}, "center": {"18-165, T:0-1": [288, 395]}},
{"id": "twwqrx", "name": "RotMG-ASCIICKER heart", "description": "A love heart representing the alliance formed between Realm of the Mad God and ASCIICKER.", "links": {"website": ["https://www.realmofthemadgod.com/", "http://www.asciicker.com/"], "subreddit": ["RotMG", "asciicker"]}, "path": {"142-163, T:0-1": [[535, 872], [533, 874], [533, 875], [536, 878], [539, 875], [539, 874], [537, 872]]}, "center": {"142-163, T:0-1": [536, 875]}},
@@ -2720,7 +2713,7 @@
{"id": "tx33w6", "name": "Chicken Person ft. Amongus", "description": "Chick P is the best celestial being a motley crew of adventures could ask for! The blue amongus is riding atop.", "links": {}, "path": {"109-166, T:0-1": [[469, 1440], [471, 1440], [472, 1439], [473, 1438], [473, 1434], [472, 1433], [468, 1433], [467, 1435], [468, 1438]]}, "center": {"109-166, T:0-1": [470, 1436]}},
{"id": "tx33vw", "name": "Soul Knight boar", "description": "Enemy from the mobile game Soul Knight", "links": {"subreddit": ["SoulKnight"]}, "path": {"109-166, T:0-1": [[1700, 1977], [1720, 1977], [1720, 1993], [1700, 1993]]}, "center": {"109-166, T:0-1": [1710, 1985]}},
{"id": "tx33s5", "name": "Murasame", "description": "Murasame is a character from the visual novel Senren*Banka, made by Yuzusoft.\n\nThis art was created by the Yuzusoft fan Discord server as part of Operation YuzuArt.", "links": {"website": ["http://www.yuzu-soft.com/"], "subreddit": ["visualnovels"], "discord": ["jJRNgzh"]}, "path": {"132-166, T:0-1": [[1425, 491], [1433, 491], [1433, 509], [1425, 509]]}, "center": {"132-166, T:0-1": [1429, 500]}},
-{"id": "tx33nw", "name": "Bibi hat", "description": "Bibi, guardian and companion of Hololive Japan 4th Gen. member Tokoyami Towa, in hat form.", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw"], "subreddit": ["tokoyamitowa", "Hololive"]}, "path": {"109-165, T:0-1": [[1428, 1072], [1428, 1066], [1447, 1066], [1447, 1072], [1448, 1072]]}, "center": {"109-165, T:0-1": [1438, 1069]}},
+{"id": "tx33nw", "name": "Bibi hat", "description": "Bibi, guardian and companion of Hololive Japan 4th Gen. member Tokoyami Towa, in hat form.", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw"], "subreddit": ["tokoyamitowa", "Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1428, 1072], [1428, 1066], [1447, 1066], [1447, 1072], [1448, 1072]]}, "center": {"109-165, T:0-1": [1438, 1069]}},
{"id": "tx3386", "name": "DreamNotFound", "description": "DreamNotFound (DNF) is the ship name of content creators Dream and GeorgeNotFound.\n\nThis logo was created as revenge by Dream. George used to have artwork there, which got covered by AMC. Later Dream asked his chat to cover it up with this logo.\n\nAfter this he asked to change it to the Good Mythical Morning logo, which is what remained until the end.", "links": {"website": ["https://shipping.fandom.com/wiki/DreamNotFound"], "subreddit": ["DreamWasTaken", "dreamnotfound2"]}, "path": {"126-130": [[1211, 330], [1211, 398], [1279, 398], [1279, 330]]}, "center": {"126-130": [1245, 364]}},
{"id": "tx3383", "name": "Duke University", "description": "Duke University is a college in Durham, North Carolina, United States. The Duke Blue Devils men's basketball team recently competed against the University of North Carolina at Chapel Hill (UNC) in the Final Four of the 2022 NCAA Tournament.", "links": {"website": ["https://duke.edu/", "https://www.goduke.com", "https://en.wikipedia.org/wiki/Duke_University"], "subreddit": ["duke"]}, "path": {"80-93": [[1785, 623], [1785, 637], [1800, 637], [1800, 623]], "120-164, T:0-1": [[338, 1635], [338, 1648], [348, 1648], [352, 1644], [352, 1635]]}, "center": {"80-93": [1793, 630], "120-164, T:0-1": [345, 1642]}},
{"id": "tx32xi", "name": "Skin thedaarick28", "description": "this is the skin's face of the streamer/YouTuber theDaarick28", "links": {"website": ["https://trovo.live/DaarickOficial"]}, "path": {"109-166, T:0-1": [[1615, 1649], [1615, 1658], [1624, 1658], [1624, 1649]]}, "center": {"109-166, T:0-1": [1620, 1654]}},
@@ -2728,7 +2721,7 @@
{"id": "tx32s7", "name": "Underground hip hop records", "description": "Two very influential experimental hip hop records. On the left is Saturation III released by Brockhampton in 2017. On the right is By the Time I Get To Phoenix released by Injury Reserve in 2021", "links": {}, "path": {"109-166, T:0-1": [[694, 1689], [716, 1689], [715, 1701], [694, 1701]]}, "center": {"109-166, T:0-1": [705, 1695]}},
{"id": "tx32d9", "name": "Trans Kitty", "description": "A little kitty head on a trans flag. I wanted to contribute something cute to this canvas. By MintKuro.", "links": {}, "path": {"109-166, T:0-1": [[1055, 1779], [1055, 1789], [1065, 1789], [1065, 1779]]}, "center": {"109-166, T:0-1": [1060, 1784]}},
{"id": "tx328p", "name": "Cardinal Dynamics", "description": "FRC team 6696, Cardinal Dynamics, is a small FIRST Robotics team located in Corbett, OR.", "links": {"website": ["https://sites.google.com/corbett.k12.or.us/corbett-robotics/"], "subreddit": ["FRC"]}, "path": {"109-166, T:0-1": [[1146, 1632], [1162, 1632], [1162, 1638], [1146, 1638]]}, "center": {"109-166, T:0-1": [1154, 1635]}},
-{"id": "tx327z", "name": "Void Linux", "description": "Minimalist logo of the Void Linux distribution", "links": {"subreddit": ["voidlinux"]}, "path": {"56-166, T:0-1": [[1257, 870], [1257, 878], [1265, 878], [1265, 870]]}, "center": {"56-166, T:0-1": [1261, 874]}},
+{"id": "tx327z", "name": "Void Linux", "description": "Void Linux is a Linux distribution built around the XBPS package manager, and with runit instead of systemd as the init system. Its community is small but loyal.", "links": {"website": ["https://voidlinux.org/", "https://en.wikipedia.org/wiki/Void_Linux"], "subreddit": ["voidlinux"]}, "path": {"67-86": [[1274, 870], [1272, 872], [1272, 878], [1278, 878], [1280, 876], [1280, 870]], "133-165, T:0-1": [[1257, 876], [1259, 878], [1263, 878], [1263, 876], [1265, 876], [1265, 872], [1263, 870], [1259, 870], [1259, 872], [1257, 872]]}, "center": {"67-86": [1276, 874], "133-165, T:0-1": [1262, 873]}},
{"id": "tx321d", "name": "Jellie", "description": "Jellie is the cat of Minecraft YouTuber GoodTimesWithScar, shown just to the left of the heart. She has a bisexual flag collar to honor and acknowledge the bisexual members of Scar's best known SMP, Hermitcraft.", "links": {"website": ["https://hermitcraft.fandom.com/wiki/Jellie"], "subreddit": ["HermitCraft"]}, "path": {"32-33": [[896, 615], [896, 622], [902, 622], [902, 615]], "18-31": [[896, 600], [896, 607], [902, 607], [902, 606], [904, 606], [906, 604], [906, 601], [902, 601], [902, 600]], "34-165, T:0-1": [[895, 614], [893, 616], [896, 619], [896, 623], [902, 623], [902, 615], [898, 615], [897, 614]]}, "center": {"32-33": [899, 619], "18-31": [900, 604], "34-165, T:0-1": [899, 618]}},
{"id": "tx31rr", "name": "Jammies peepo", "description": "A Twitch emote placed on r/place by Twitch streamer Nihachu and her community.", "links": {"website": ["https://www.twitch.tv/nihachu"], "subreddit": ["Nihachu"]}, "path": {"109-165, T:0-1": [[1276, 1114], [1282, 1114], [1282, 1111], [1281, 1108], [1279, 1105], [1279, 1096], [1278, 1095], [1278, 1089], [1280, 1089], [1283, 1094], [1283, 1086], [1279, 1083], [1276, 1083], [1276, 1082], [1277, 1081], [1277, 1076], [1275, 1074], [1271, 1072], [1265, 1072], [1263, 1073], [1261, 1073], [1259, 1075], [1257, 1079], [1258, 1084], [1261, 1085], [1259, 1088], [1257, 1087], [1254, 1086], [1251, 1082], [1250, 1082], [1249, 1084], [1248, 1085], [1251, 1089], [1253, 1091], [1255, 1092], [1257, 1092], [1261, 1092], [1262, 1094], [1262, 1100], [1263, 1101], [1263, 1103], [1262, 1105], [1261, 1107], [1260, 1108], [1259, 1109], [1259, 1110], [1258, 1111], [1258, 1114], [1264, 1114], [1264, 1110], [1269, 1105], [1272, 1105], [1274, 1106], [1275, 1107], [1275, 1113], [1276, 1113]]}, "center": {"109-165, T:0-1": [1268, 1091]}},
{"id": "tx31ok", "name": "Pig", "description": "A pig is a passive mob in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Pig"], "subreddit": ["Minecraft"]}, "path": {"4-8": [[831, 983], [831, 992], [840, 992]], "9-165, T:0-1": [[843, 983], [843, 992], [853, 992], [853, 983]]}, "center": {"4-8": [834, 989], "9-165, T:0-1": [848, 988]}},
@@ -2736,7 +2729,6 @@
{"id": "tx31ek", "name": "Azure Rathalos", "description": "Remnants of an attempt at creating the Azure Rathalos from the Monster Hunter series inside the blue corner. Even while the communities were allied, The art failed because of unaware people placing blue pixels.", "links": {"website": ["https://monsterhunter.fandom.com/wiki/Azure_Rathalos"], "subreddit": ["MonsterHunter"]}, "path": {"109-165, T:0-1": [[1999, 1868], [1992, 1868], [1992, 1874], [1999, 1874]]}, "center": {"109-165, T:0-1": [1996, 1871]}},
{"id": "tx30sx", "name": "Team Quadrant", "description": "Logo for Team Quadrant, a gaming and lifestyle brand founded by McLaren Formula 1 driver Lando Norris.", "links": {"website": ["https://quadrant.gg"], "subreddit": ["formula1"]}, "path": {"109-166, T:0-1": [[481, 1789], [483, 1789], [483, 1787], [495, 1787], [496, 1788], [496, 1795], [497, 1795], [498, 1796], [498, 1797], [497, 1799], [483, 1799], [483, 1797], [481, 1797]]}, "center": {"109-166, T:0-1": [489, 1793]}},
{"id": "tx30if", "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"]}, "path": {"80-165, T:0-1": [[29, 158], [37, 151], [44, 151], [50, 156], [50, 157], [47, 157], [47, 158], [46, 158], [44, 160], [44, 161], [46, 161], [46, 163], [42, 167], [41, 167], [41, 163], [40, 163], [40, 164], [35, 169], [32, 169], [30, 167], [30, 164], [32, 164], [35, 167], [36, 166], [36, 165], [38, 163], [38, 161], [36, 159], [29, 159]]}, "center": {"80-165, T:0-1": [41, 156]}},
-{"id": "tx30eg", "name": "Switch Homebrew Launcher Logo", "description": "Logo of the Homebrew Launcher, a software allowing to run unofficial applications on the Nintendo Switch", "links": {}, "path": {"56-165, T:0-1": [[1210, 897], [1210, 906], [1210, 907], [1220, 907], [1220, 897], [1210, 897], [1210, 907]]}, "center": {"56-165, T:0-1": [1215, 902]}},
{"id": "tx3006", "name": "Soul Knight", "description": "Jeu nommé soul knight où l'on retrouve des monstres a abbatre dans un donjon comme celui présent sur la photo déssiné", "links": {"website": ["https://play.google.com/store/apps/details?id=com.ChillyRoom.DungeonShooter&hl=fr&gl=US"]}, "path": {"109-166, T:0-1": [[1701, 1978], [1720, 1978], [1720, 1992], [1700, 1993]]}, "center": {"109-166, T:0-1": [1710, 1985]}},
{"id": "tx2zv0", "name": "tinakiFlower/tinakiJorts", "description": "Two of the most beloved Twitch emotes made by TinaKitten combined together. TinaKitten is a half-white, half-South-Korean Twitch streamer, known for games such as Among Us, Minecraft, and Tetris. Her amazing humour, drawing skills, and personality keep both her community and her friends entertained, cared for, and welcomed.", "links": {"website": ["https://twitch.tv/tinakitten"]}, "path": {"56-165, T:0-1": [[1161, 1018], [1164, 1018], [1165, 1017], [1165, 1016], [1164, 1015], [1163, 1013], [1163, 1010], [1163, 1008], [1166, 1006], [1169, 1007], [1170, 1008], [1171, 1010], [1171, 1015], [1171, 1017], [1171, 1018], [1173, 1018], [1176, 1017], [1175, 1018], [1175, 1016], [1175, 1015], [1174, 1013], [1174, 1010], [1174, 1009], [1175, 1007], [1175, 1005], [1175, 1002], [1175, 1000], [1176, 999], [1179, 997], [1180, 995], [1179, 993], [1179, 989], [1179, 988], [1182, 987], [1184, 985], [1184, 983], [1183, 981], [1181, 979], [1179, 979], [1177, 979], [1175, 981], [1173, 984], [1174, 986], [1175, 987], [1178, 988], [1179, 989], [1178, 993], [1179, 995], [1176, 995], [1175, 995], [1174, 992], [1174, 990], [1174, 986], [1171, 988], [1170, 988], [1168, 987], [1167, 984], [1164, 985], [1162, 987], [1161, 989], [1160, 993], [1160, 1018]]}, "center": {"56-165, T:0-1": [1170, 997]}},
{"id": "tx2zsj", "name": "Mr. Mew", "description": "A character from the JRPG series, The World Ends With You. Often mistaken for a pig.", "links": {"website": ["https://twewy.fandom.com/wiki/Mr._Mew"], "subreddit": ["TWEWY"]}, "path": {"109-166, T:0-1": [[1807, 1663], [1818, 1663], [1818, 1666], [1817, 1666], [1817, 1669], [1814, 1672], [1810, 1672], [1810, 1670], [1807, 1668]]}, "center": {"109-166, T:0-1": [1812, 1667]}},
@@ -2876,7 +2868,7 @@
{"id": "tx26cz", "name": "Tanizen", "description": "Logo of the Spanish streamer Tanizen made by his community, The Tanilovers.", "links": {"website": ["https://www.twitch.tv/tanizen"]}, "path": {"109-166, T:0-1": [[1724, 1219], [1758, 1219], [1758, 1254], [1724, 1254], [1724, 1219], [1725, 1219]]}, "center": {"109-166, T:0-1": [1741, 1237]}},
{"id": "tx2690", "name": "PearlescentMoon", "description": "PearlescentMoon, or just Pearl, is an Australian gaming YouTuber who primarily uploads Minecraft videos and has been part of the Hermitcraft server since Season 8. She is known for her building skills, especially with organics and structures, and is part of fellow YouTuber Grian's personal build crew. Because she is Australian, her face is depicted upside-down here.", "links": {"website": ["https://www.youtube.com/channel/UC1GJ5aeqpEWklMBQ3oXrPQQ", "https://hermitcraft.fandom.com/wiki/PearlescentMoon"], "subreddit": ["HermitCraft"]}, "path": {"26-35": [[887, 623], [887, 631], [896, 631], [896, 623]], "36-165, T:0-1": [[887, 623], [887, 631], [893, 631], [896, 628], [896, 623]]}, "center": {"26-35": [892, 627], "36-165, T:0-1": [891, 627]}},
{"id": "tx25zh", "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": {"subreddit": ["OmniscientReader"]}, "path": {"109-166, T:0-1": [[1267, 1723], [1287, 1722], [1287, 1751], [1269, 1751], [1268, 1751], [1268, 1748]]}, "center": {"109-166, T:0-1": [1277, 1737]}},
-{"id": "tx25oi", "name": "Oranges on capybara", "description": "A reference to capybaras bathing in hot springs with oranges in Japan. Originally intended to be a single orange on the head, it eventually grew out of control.", "links": {"website": ["https://www.youtube.com/watch?v=0K172kRSNc4"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"89-126": [[927, 659], [927, 662], [918, 662], [918, 665], [920, 667], [923, 667], [924, 666], [924, 662], [927, 662], [929, 664], [943, 664], [943, 665], [944, 666], [944, 667], [948, 667], [949, 666], [949, 663], [946, 663], [945, 662], [943, 662], [943, 664], [933, 664], [933, 661], [932, 660], [930, 660], [930, 659]], "71-88": [[930, 645], [928, 647], [928, 650], [924, 650], [923, 651], [923, 656], [921, 656], [919, 658], [919, 660], [918, 661], [919, 662], [919, 667], [923, 667], [923, 665], [924, 664], [944, 664], [944, 667], [949, 667], [949, 660], [946, 660], [945, 659], [944, 660], [944, 664], [933, 664], [933, 647], [931, 645]], "52-70": [[931, 659], [930, 660], [928, 660], [928, 664], [932, 664], [934, 662], [943, 662], [943, 665], [944, 666], [944, 667], [949, 667], [949, 664], [946, 662], [934, 662], [934, 659]], "42-51": [[931, 659], [930, 660], [928, 660], [928, 664], [932, 664], [934, 662], [934, 659]], "127-166, T:0-1": [[919, 651], [924, 651], [925, 652], [929, 652], [935, 658], [935, 660], [936, 661], [936, 662], [946, 662], [949, 664], [951, 664], [951, 662], [956, 662], [956, 661], [958, 659], [959, 659], [960, 660], [964, 660], [964, 663], [963, 664], [963, 671], [960, 671], [959, 672], [959, 674], [956, 674], [954, 672], [953, 672], [952, 671], [952, 669], [949, 669], [949, 668], [947, 667], [945, 667], [945, 665], [943, 665], [943, 664], [941, 662], [936, 662], [934, 664], [928, 664], [927, 663], [924, 663], [923, 667], [920, 667], [918, 663], [918, 660], [917, 659], [917, 654]]}, "center": {"89-126": [922, 664], "71-88": [928, 658], "52-70": [946, 665], "42-51": [931, 662], "127-166, T:0-1": [923, 657]}},
+{"id": "tx25oi", "name": "Oranges on capybara", "description": "A reference to capybaras bathing in hot springs with oranges in Japan. Originally intended to be a single orange on the head, it eventually grew out of control.", "links": {"website": ["https://www.youtube.com/watch?v=0K172kRSNc4"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"89-126": [[927, 659], [927, 662], [918, 662], [918, 665], [920, 667], [923, 667], [924, 666], [924, 662], [927, 662], [929, 664], [943, 664], [943, 665], [944, 666], [944, 667], [948, 667], [949, 666], [949, 663], [946, 663], [945, 662], [943, 662], [943, 664], [933, 664], [933, 661], [932, 660], [930, 660], [930, 659]], "71-88": [[930, 645], [928, 647], [928, 650], [924, 650], [923, 651], [923, 656], [921, 656], [919, 658], [919, 660], [918, 661], [919, 662], [919, 667], [923, 667], [923, 665], [924, 664], [944, 664], [944, 667], [949, 667], [949, 660], [946, 660], [945, 659], [944, 660], [944, 664], [933, 664], [933, 647], [931, 645]], "52-70": [[931, 659], [930, 660], [928, 660], [928, 664], [932, 664], [934, 662], [943, 662], [943, 665], [944, 666], [944, 667], [949, 667], [949, 664], [946, 662], [934, 662], [934, 659]], "42-51": [[931, 659], [930, 660], [928, 660], [928, 664], [932, 664], [934, 662], [934, 659]], "127-166, T:0-1": [[919, 651], [924, 651], [925, 652], [929, 652], [935, 658], [935, 660], [936, 661], [936, 662], [946, 662], [949, 664], [951, 664], [951, 662], [956, 662], [956, 661], [958, 659], [959, 659], [960, 660], [964, 660], [964, 663], [963, 664], [963, 671], [960, 671], [959, 672], [959, 674], [956, 674], [954, 672], [953, 672], [952, 671], [952, 669], [949, 669], [949, 668], [947, 667], [945, 667], [945, 665], [943, 665], [943, 664], [941, 662], [936, 662], [934, 664], [928, 664], [927, 663], [924, 663], [923, 667], [920, 667], [918, 663], [918, 660], [917, 659], [917, 654]]}, "center": {"89-126": [922, 664], "71-88": [928, 658], "52-70": [946, 665], "42-51": [931, 662], "127-166, T:0-1": [923, 657]}},
{"id": "tx25lf", "name": "Aston Martin", "description": "Aston Martin, officially Aston Martin Aramco Cognizant F1, is a Formula 1 team based in Silverstone, United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/Aston_Martin_in_Formula_One"], "subreddit": ["formula1"]}, "path": {"10-15": [[449, 796], [449, 825], [466, 825], [466, 796]], "16-166, T:0-1": [[546, 783], [570, 783], [570, 795], [546, 795]]}, "center": {"10-15": [458, 811], "16-166, T:0-1": [558, 789]}},
{"id": "tx25jf", "name": "The Strokes logo", "description": "The Strokes is a New York rock band.", "links": {"subreddit": ["TheStrokes"]}, "path": {"109-165, T:0-1": [[1130, 1280], [1160, 1280], [1160, 1286], [1130, 1286]]}, "center": {"109-165, T:0-1": [1145, 1283]}},
{"id": "tx25e0", "name": "ESISAR", "description": "A French engineering school specializing in information technology, electrical engineering, embedded systems, and cybersecurity. Also depicted is school mascot Poulpy, a purple octopus.", "links": {"website": ["https://esisariens.org/"]}, "path": {"109-166, T:0-1": [[1359, 1251], [1358, 1251], [1358, 1269], [1383, 1269], [1381, 1264], [1373, 1263], [1370, 1259], [1369, 1257], [1369, 1255], [1367, 1255], [1366, 1253], [1363, 1251], [1360, 1251]]}, "center": {"109-166, T:0-1": [1367, 1262]}},
@@ -2973,7 +2965,7 @@
{"id": "tx1k39", "name": "LaserShield", "description": "Mizkif's mute, VRChat streamer, and internet meme lord.", "links": {"website": ["https://www.twitch.tv/lasershieldvr"], "subreddit": ["lasershield"]}, "path": {"109-166, T:0-1": [[610, 1027], [624, 1027], [624, 1040], [610, 1040]]}, "center": {"109-166, T:0-1": [617, 1034]}},
{"id": "tx1jzi", "name": "Flag of Colombia", "description": "Colombia is a country on the northwest coast of South America.\n\nThis flag is decorated with artwork celebrating Colombia's culture and wildlife.", "links": {"website": ["https://en.wikipedia.org/wiki/Colombia", "https://en.wikipedia.org/wiki/Flag_of_Colombia"], "subreddit": ["Colombia"]}, "path": {"13": [[175, 582], [255, 582], [255, 561], [226, 561], [226, 552], [175, 552]], "3-5": [[177, 581], [177, 567], [143, 567], [143, 581]], "6-7": [[175, 582], [210, 582], [210, 561], [175, 561]], "8-12": [[175, 582], [255, 582], [255, 561], [186, 561], [186, 552], [175, 552]], "14-66": [[175, 582], [256, 582], [256, 568], [254, 568], [252, 567], [250, 565], [250, 563], [249, 563], [249, 552], [226, 552], [226, 547], [193, 547], [193, 552], [175, 552]], "67-151": [[175, 582], [256, 582], [256, 568], [254, 568], [252, 567], [250, 565], [250, 563], [249, 563], [249, 552], [224, 552], [224, 547], [193, 547], [193, 552], [175, 552]], "1-2": [[300, 640], [300, 644], [290, 648], [290, 651], [291, 655], [293, 655], [293, 661], [300, 661], [300, 664], [326, 659], [333, 656], [339, 656], [339, 652], [348, 650], [348, 647], [333, 647], [328, 641]], "152-166, T:0-1": [[175, 582], [257, 582], [257, 568], [254, 568], [251, 566], [249, 563], [249, 553], [225, 553], [225, 547], [193, 547], [193, 553], [175, 553]]}, "center": {"13": [190, 567], "3-5": [160, 574], "6-7": [193, 572], "8-12": [213, 571], "14-66": [214, 565], "67-151": [212, 565], "1-2": [308, 651], "152-166, T:0-1": [212, 565]}},
{"id": "tx1jpp", "name": "Pennsylvania State University", "description": "Pennsylvania State University, commonly known as Penn State, is a university in the state of Pennsylvania, United States. The Penn State community and athletic teams are known as the Nittany Lions.", "links": {"website": ["https://www.psu.edu/", "https://en.wikipedia.org/wiki/Pennsylvania_State_University"], "subreddit": ["PennStateUniversity", "TheB1G"]}, "path": {"16-165, T:0-1": [[257, 629], [257, 604], [223, 604], [223, 610], [220, 610], [220, 618], [221, 619], [221, 622], [224, 625], [224, 629]]}, "center": {"16-165, T:0-1": [239, 617]}},
-{"id": "tx1jp7", "name": "Yuppie Psycho", "description": "Pixel art of protagonist Brian Pasternack from the 2019 survival horror office game Yuppie Psycho.", "links": {}, "path": {"56-166, T:0-1": [[1402, 807], [1418, 807], [1418, 814], [1412, 814], [1412, 816], [1402, 816]]}, "center": {"56-166, T:0-1": [1410, 811]}},
+{"id": "tx1jp7", "name": "Brian Pasternack", "description": "Brian Pasternack is the protagonist of the 2019 survival horror office game Yuppie Psycho.", "links": {"website": ["https://yuppiepsycho.fandom.com/wiki/Brian_Pasternack"]}, "path": {"58-96": [[1403, 807], [1403, 813], [1401, 816], [1401, 819], [1405, 819], [1405, 829], [1409, 829], [1409, 823], [1412, 823], [1412, 819], [1411, 818], [1411, 814], [1410, 813], [1410, 807]], "97-134": [[1403, 806], [1403, 813], [1402, 814], [1402, 817], [1411, 817], [1411, 815], [1410, 814], [1410, 806]], "135-166, T:0-1": [[1403, 806], [1403, 812], [1402, 812], [1402, 817], [1410, 817], [1410, 814], [1417, 814], [1419, 812], [1419, 811], [1416, 811], [1416, 812], [1410, 812], [1410, 806]]}, "center": {"58-96": [1407, 816], "97-134": [1407, 812], "135-166, T:0-1": [1406, 811]}},
{"id": "tx1jmj", "name": "Rook a4", "description": "\"Rook a4\" is an inside joke among r/AnarchyChess users. A chess diss track was released by musician \"Young ELO\" that had the line, \"I saw Rook a4, I just didn't like it\", in response to popular chess YouTuber GothamChess saying that he should have seen the move Rook a4 (i.e., move the rook to square a4 on the chessboard) in a game he was playing, which would have trapped the opponent's queen. The double question marks indicate that this is a critically bad move in chess.", "links": {"website": ["https://www.youtube.com/watch?v=BBy5JzZy0ZY"], "subreddit": ["AnarchyChess"]}, "path": {"16-27": [[71, 648], [71, 656], [74, 659], [78, 659], [80, 657], [80, 648]], "28-166, T:0-1": [[78, 640], [76, 642], [76, 646], [71, 646], [71, 656], [74, 659], [78, 659], [80, 656], [80, 648], [82, 648], [84, 646], [84, 642], [82, 640]]}, "center": {"16-27": [76, 654], "28-166, T:0-1": [76, 654]}},
{"id": "tx1jk7", "name": "Pôle Emploi", "description": "A French organisation for unemployment. They're >supposed< to help people find a new job, but really their only real use is about giving monthly allowances", "links": {}, "path": {"109-166, T:0-1": [[1071, 1742], [1079, 1742], [1079, 1754], [1071, 1754]]}, "center": {"109-166, T:0-1": [1075, 1748]}},
{"id": "tx1jk5", "name": "AC Milan", "description": "A heart made with the colour scheme of AC Milan football club, and the abbreviation of the name on top. Made by members of r/ACMilan and the Rossoneri Discord server.", "links": {"website": ["https://en.wikipedia.org/wiki/A.C._Milan"], "subreddit": ["ACMilan"]}, "path": {"109-165, T:0-1": [[1041, 1113], [1047, 1107], [1047, 1098], [1035, 1098], [1035, 1107]]}, "center": {"109-165, T:0-1": [1041, 1104]}},
@@ -2983,7 +2975,7 @@
{"id": "tx1j0m", "name": "Denmark's flag", "description": "Small flag made by the denmark community", "links": {"subreddit": ["Denmark"]}, "path": {"109-165, T:0-1": [[789, 1302], [811, 1302], [811, 1311], [789, 1312]]}, "center": {"109-165, T:0-1": [800, 1307]}},
{"id": "tx1i61", "name": "MWM x BKFAD", "description": "A build site created by a collaboration between Mashup Week: Megamix and the Bootleg King For Another Day Tournament, with additional help from Duck World's community. The build site features both tournaments' emblems as well as Duck World's flag.", "links": {"website": ["https://mashupweek.cloud", "https://bkfadtojo.webflow.io"], "subreddit": ["MashupWeek"]}, "path": {"56-166, T:0-1": [[1730, 122], [1730, 148], [1731, 148], [1731, 152], [1733, 155], [1738, 159], [1742, 159], [1745, 157], [1749, 152], [1749, 150], [1755, 150], [1755, 141], [1760, 141], [1760, 132], [1763, 132], [1765, 130], [1765, 128], [1760, 128], [1760, 122]]}, "center": {"56-166, T:0-1": [1743, 135]}},
{"id": "tx1i4y", "name": "VEGETTA777", "description": "VEGETTA777 is a Spanish YouTuber. This art depicts the face used by VEGETTA777 in the game Minecraft.", "links": {"website": ["https://www.youtube.com/user/vegetta777", "https://www.twitch.tv/vegetta777"]}, "path": {"113-166, T:0-1": [[1566, 613], [1577, 613], [1577, 627], [1566, 627]]}, "center": {"113-166, T:0-1": [1572, 620]}},
-{"id": "tx1hje", "name": "Tinny", "description": "Tinny was the main protagonist and character of the object show \"Tinny Object Show\". However, Tinny Object Show was changed to be called \"Brawl To End Grim\" and the tincan-like characters were replaced with biscuits. The main plot of BTEG is for the main protagonist \"Dry biscuit\" to save his twin brother and other characters from the main antagonist, \"Grimmy\".", "links": {"website": ["https://twitter.com/BrawlToEndGrim?t=4FiDgI-Lh6cDVxuZxQMPIQ&s=09"], "subreddit": ["Fincunder"]}, "path": {"56-166, T:0-1": [[1216, 885], [1215, 884], [1216, 885], [1216, 883], [1215, 883], [1215, 882], [1218, 882], [1219, 882], [1220, 882], [1221, 884], [1221, 886], [1218, 886], [1215, 886], [1214, 883], [1215, 883]]}, "center": {"56-166, T:0-1": [1218, 884]}},
+{"id": "tx1hje", "name": "Tinny", "description": "Tinny is a small tin can full of beans who was formerly the main protagonist of the object show \"Tinny Object Show\". Tinny Object Show was later rebranded as \"Brawl To End Grim\" (BTEG), and the tin-can-like characters were replaced with biscuits. The main plot of BTEG is the main protagonist \"Dry biscuit\" attempting to save his twin brother and other characters from the main antagonist, Grimmy.", "links": {"website": ["https://twitter.com/BrawlToEndGrim"], "subreddit": ["Fincunder"]}, "path": {"100-166, T:0-1": [[1214, 881], [1214, 885], [1213, 885], [1213, 887], [1215, 887], [1215, 888], [1220, 888], [1220, 887], [1222, 887], [1222, 885], [1221, 885], [1221, 881]]}, "center": {"100-166, T:0-1": [1218, 885]}},
{"id": "tx1hit", "name": "Flag of Lithuania", "description": "Lithuania is a country in Northeastern Europe and one of the Baltic states.\n\nThis was the fourth flag of Lithuania to be added to the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania"]}, "path": {"56-60": [[1523, 501], [1521, 503], [1521, 505], [1535, 505], [1535, 501]], "109-166, T:0-1": [[525, 1624], [525, 1646], [624, 1646], [624, 1623], [602, 1623], [602, 1624]]}, "center": {"56-60": [1528, 503], "109-166, T:0-1": [611, 1635]}},
{"id": "tx1hf5", "name": "BattleBots", "description": "BattleBots is a robotic combat show which ran from 2000-2002, 2015-2016, and 2018 through present.\n\nThe first Battlebots logo was once accompanied by the Giant Nut (trophy for the champion of the show) to the left and Rusty (a fan-favorite bot) on the land now occupied by Westminster Palace. Despite being wiped multiple times due to its proximity to the UK, this logo was present at the conclusion with the help of r/TemplinInstitute, albeit rotated 90 degrees. A larger and more well-defined BattleBots logo can be found a bit below Germany's Among Us column.", "links": {"website": ["https://battlebots.com/", "https://en.wikipedia.org/wiki/BattleBots"], "subreddit": ["battlebots"]}, "path": {"86": [[678, 557], [678, 564], [687, 564], [687, 557]], "66-85": [[678, 560], [678, 566], [687, 566], [687, 560]], "13-65": [[680, 560], [680, 566], [687, 566], [687, 560]], "131-165, 95-124, T:0-1": [[678, 557], [678, 566], [684, 566], [684, 557]]}, "center": {"86": [683, 561], "66-85": [683, 563], "13-65": [684, 563], "131-165, 95-124, T:0-1": [681, 562]}},
{"id": "tx1h84", "name": "r/2007scape", "description": "A subreddit dedicated to discussing Old School RuneScape, the official legacy version of the MMO video game RuneScape.", "links": {"website": ["https://oldschool.runescape.com/"], "subreddit": ["2007scape"]}, "path": {"131-164, T:0-1": [[87, 55], [122, 55], [122, 61], [87, 61]]}, "center": {"131-164, T:0-1": [105, 58]}},
@@ -3003,13 +2995,13 @@
{"id": "tx1cy9", "name": "Ariana Grande", "description": "Ariana Grande is an American singer and pop star.\n\nThis art was created by Ariana Grande's fanbase, known as the Arianators.", "links": {"website": ["https://arianagrande.com/", "https://en.wikipedia.org/wiki/Ariana_Grande"], "subreddit": ["ariheads"]}, "path": {"74-167, T:0-1": [[1980, 276], [1980, 286], [1999, 286], [1999, 276]]}, "center": {"74-167, T:0-1": [1990, 281]}},
{"id": "tx1cq8", "name": "Halo Création", "description": "French Halo community with a love for tricks and glitches.", "links": {"website": ["https://twitter.com/halocreation"]}, "path": {"103-167, T:0-1": [[1194, 66], [1208, 66], [1208, 75], [1194, 75]]}, "center": {"103-167, T:0-1": [1201, 71]}},
{"id": "tx1cip", "name": "Puzzle Agent and Robbaz twitch emote", "description": "A Gnome from Puzzle Agent. Used by twitch streamer Robbaz as an emote, built here by his community.", "links": {"website": ["https://store.steampowered.com/app/31270/Puzzle_Agent/"]}, "path": {"109-165, T:0-1": [[376, 1183], [396, 1183], [396, 1201], [376, 1201]]}, "center": {"109-165, T:0-1": [386, 1192]}},
-{"id": "tx1bzx", "name": "Dino Gura", "description": "Hololive English's VTuber, Gawr Gura, in her dinosaur costume! Gawr!", "links": {"website": ["https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g"], "subreddit": ["GawrGura", "Hololive"]}, "path": {"56-166, T:0-1": [[1404, 918], [1404, 903], [1420, 904], [1420, 919], [1420, 920], [1419, 920], [1419, 923]]}, "center": {"56-166, T:0-1": [1412, 912]}},
+{"id": "tx1bzx", "name": "Dino Gura", "description": "Hololive English's VTuber, Gawr Gura, in her dinosaur costume! Gawr!", "links": {"website": ["https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g"], "subreddit": ["GawrGura", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1404, 918], [1404, 903], [1420, 904], [1420, 919], [1420, 920], [1419, 920], [1419, 923]]}, "center": {"56-166, T:0-1": [1412, 912]}},
{"id": "tx1boo", "name": "Alterhuman flag", "description": "The flag for alterhumanity, in which someone has an alternative human experience or is nonhuman.", "links": {"website": ["https://alterhuman.miraheze.org/wiki/Alterhuman"], "subreddit": ["alterhuman"]}, "path": {"109-118": [[1867, 652], [1867, 653], [1868, 654], [1868, 658], [1863, 663], [1863, 664], [1890, 664], [1890, 652]], "119-166, T:0-1": [[1850, 648], [1850, 664], [1890, 664], [1890, 652], [1867, 652], [1867, 653], [1868, 654], [1868, 658], [1862, 664], [1858, 664], [1852, 658], [1852, 654], [1857, 649], [1857, 648]]}, "center": {"109-118": [1877, 658], "119-166, T:0-1": [1881, 658]}},
{"id": "tx1bk0", "name": "JRPG Alliance", "description": "A small community of JRPG (Japanese role-playing game) fans including: Kingdom Hearts, Final Fantasy, Nier, Pokémon, Dragon Quest, Mega Man, Paper Mario, and more!", "links": {"subreddit": ["BattleNetwork", "FinalFantasyVII", "megaten", "papermario", "pokemon", "TWEWY"]}, "path": {"109-166, T:0-1": [[1785, 1646], [1825, 1647], [1828, 1681], [1785, 1684]]}, "center": {"109-166, T:0-1": [1805, 1665]}},
{"id": "tx1bd6", "name": "Agender axolotl", "description": "An axolotl is a type of salamander. This axolotl sprite is from the game Minecraft, except it is in the colors of the agender flag.\n\nAgender, 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://minecraft.fandom.com/wiki/Axolotl", "https://lgbta.miraheze.org/wiki/Agender"], "subreddit": ["transplace", "Minecraft"]}, "path": {"101-165, T:0-1": [[547, 459], [548, 460], [549, 461], [550, 461], [551, 461], [552, 461], [553, 460], [554, 459], [555, 460], [556, 460], [557, 461], [557, 462], [556, 463], [557, 464], [556, 465], [555, 465], [554, 466], [554, 467], [555, 468], [555, 469], [554, 470], [553, 470], [552, 469], [551, 468], [550, 468], [549, 469], [548, 470], [547, 469], [546, 468], [547, 467], [547, 466], [546, 465], [545, 465], [544, 464], [545, 463], [544, 462], [544, 461], [545, 460], [546, 460]]}, "center": {"101-165, T:0-1": [551, 465]}},
{"id": "tx1bao", "name": "Anna", "description": "Anna is a recurring character in the Fire Emblem series who traditionally appears in the games as a guide, cameo, shopkeeper, etc. This sprite is of Anna from Fire Emblem Awakening (released in 2013), where she first became a recruitable character.", "links": {"website": ["https://fireemblem.fandom.com/wiki/Anna"], "subreddit": ["fireemblem"]}, "path": {"109-166, T:0-1": [[494, 1370], [492, 1370], [490, 1372], [490, 1375], [491, 1376], [491, 1378], [492, 1379], [492, 1381], [493, 1382], [491, 1384], [490, 1387], [489, 1388], [489, 1390], [491, 1392], [494, 1392], [494, 1394], [495, 1394], [496, 1392], [497, 1392], [499, 1394], [500, 1394], [500, 1392], [506, 1392], [508, 1394], [510, 1394], [510, 1392], [503, 1385], [503, 1384], [502, 1383], [502, 1378], [501, 1377], [501, 1374], [499, 1372], [494, 1372]]}, "center": {"109-166, T:0-1": [497, 1384]}},
{"id": "tx1bad", "name": "Connecticut College Gaming Club", "description": "A small emblem created by members of Connecticut College's Gaming Club.", "links": {}, "path": {"109-166, T:0-1": [[1002, 1882], [1002, 1896], [1015, 1896], [1015, 1882]]}, "center": {"109-166, T:0-1": [1009, 1889]}},
-{"id": "tx1b0p", "name": "Flipnote Studio Frog", "description": "The mascot of the Flipnote Studio application for the Nintendo DSi, created by Sudomemo, a Flipnote Hatena revival service.", "links": {"website": ["https://www.sudomemo.net"], "subreddit": ["sudomemo"]}, "path": {"56-166, T:0-1": [[1986, 879], [1986, 875], [1987, 875], [1987, 873], [1988, 873], [1988, 870], [1989, 870], [1989, 869], [1992, 869], [1992, 870], [1993, 870], [1993, 869], [1996, 869], [1996, 870], [1997, 870], [1997, 873], [1998, 873], [1998, 875], [1999, 875], [1999, 880], [1986, 880]]}, "center": {"56-166, T:0-1": [1993, 875]}},
+{"id": "tx1b0p", "name": "Flipnote Frog", "description": "Flipnote Frog is the mascot of the Flipnote Studio application and Flipnote Hatena service for the Nintendo DSi. The application was revived by Sudomemo after its official closure.", "links": {"website": ["https://flipnote.fandom.com/wiki/Frog", "https://en.wikipedia.org/wiki/Flipnote_Studio", "https://www.sudomemo.net"], "subreddit": ["FlipnoteStudio3D", "sudomemo"]}, "path": {"161-166, 96-143, T:0-1": [[1986, 879], [1986, 875], [1987, 875], [1987, 873], [1988, 873], [1988, 870], [1989, 870], [1989, 869], [1992, 869], [1992, 870], [1993, 870], [1993, 869], [1996, 869], [1996, 870], [1997, 870], [1997, 873], [1998, 873], [1998, 875], [1999, 875], [1999, 880], [1986, 880]]}, "center": {"161-166, 96-143, T:0-1": [1993, 875]}},
{"id": "tx1at1", "name": "Music To Be Murdered By", "description": "Music to Be Murdered By is the eleventh studio album by American rapper Eminem. It was released on January 17, 2020, by Shady Records, Aftermath Entertainment, and Interscope Records.", "links": {"website": ["https://eminem.com"], "subreddit": ["Eminem"]}, "path": {"1-165, T:0-1": [[863, 984], [868, 984], [868, 989], [863, 989]]}, "center": {"1-165, T:0-1": [866, 987]}},
{"id": "tx1ajn", "name": "Niki Lauda", "description": "A red halo in honor of Niki Lauda, a star Formula 1 driver who died in 2019. The red halo is a callback to the 2019 Monaco Grand Prix held shortly after Lauda's death, where a red-painted halo device displayed \"Niki we miss you\" prior to the race.", "links": {"website": ["https://en.wikipedia.org/wiki/Niki_Lauda"], "subreddit": ["formula1"]}, "path": {"12-166, T:0-1": [[552, 763], [552, 766], [550, 768], [550, 769], [551, 769], [553, 767], [555, 769], [556, 769], [556, 768], [554, 766], [554, 763]]}, "center": {"12-166, T:0-1": [553, 766]}},
{"id": "tx1ahc", "name": "The Rust Programming Language", "description": "The symbol of the Rust programming language, a black cog with an R inside.\nAllied with r/waifubartending (Va11halla)'s Jill drawing early on the 3rd day.", "links": {"website": ["https://rust-lang.org"], "subreddit": ["rust"]}, "path": {"109-166, T:0-1": [[493, 1579], [502, 1579], [502, 1588], [493, 1588]]}, "center": {"109-166, T:0-1": [498, 1584]}},
@@ -3043,7 +3035,7 @@
{"id": "tx15h4", "name": "Bisexual flag", "description": "A pride flag representing the bisexual community. Bisexual people are sexually attracted to both males and females.\n\nAs the bisexual flag previously under Titanfall's BT got invaded, the Team Fortress 2 community offered to help the bisexuals reconstruct the flag behind Spy.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["bisexual"]}, "path": {"109-166, T:0-1": [[1599, 1982], [1599, 1962], [1589, 1963], [1591, 1964], [1592, 1969], [1592, 1971], [1591, 1975], [1590, 1979], [1590, 1982], [1571, 1982], [1571, 1981], [1571, 1976], [1571, 1962], [1583, 1962], [1582, 1963], [1580, 1964], [1580, 1965], [1579, 1965], [1579, 1967], [1578, 1966], [1577, 1966], [1575, 1964], [1572, 1966], [1572, 1969], [1571, 1975], [1575, 1975], [1577, 1978], [1580, 1978], [1581, 1979], [1581, 1980], [1583, 1980], [1583, 1982], [1583, 1981], [1583, 1982], [1584, 1981], [1591, 1982], [1595, 1982]]}, "center": {"109-166, T:0-1": [1631, 1970]}},
{"id": "tx1516", "name": "Gaugepunk Games", "description": "Gaugepunk Games is the developer of the model railway sim game Rolling Line.", "links": {"website": ["https://www.gaugepunk.com/"], "subreddit": ["rollingline"]}, "path": {"22-118": [[184, 328], [184, 335], [191, 335], [191, 328]], "119-165, T:0-1": [[191, 336], [184, 336], [184, 343], [191, 343]]}, "center": {"22-118": [188, 332], "119-165, T:0-1": [188, 340]}},
{"id": "tx150n", "name": "Metroid", "description": "One of the titular alien parasites from the Metroid video game series. This art is a small Metroid sprite in the colors of the Argentina flag added to the country's garden area.", "links": {"website": ["https://www.metroidwiki.org/wiki/Metroid_(species)"], "subreddit": ["Metroid"]}, "path": {"52-165, T:0-1": [[960, 669], [957, 672], [957, 674], [960, 677], [962, 677], [965, 674], [965, 672], [962, 669]]}, "center": {"52-165, T:0-1": [961, 673]}},
-{"id": "tx14ty", "name": "Alain Prost helmet", "description": "Alain Prost is a French Formula 1 racing driver and a four-time world champion with 51 Grand Prix victories.", "links": {"website": ["https://en.wikipedia.org/wiki/Alain_Prost"], "subreddit": ["alainprost", "formula1", "placefrance", "franceplace", "placeFR", "france"]}, "path": {"147-166, T:0-1": [[1173, 776], [1178, 769], [1185, 769], [1190, 773], [1190, 779], [1187, 781], [1174, 781], [1173, 779]]}, "center": {"147-166, T:0-1": [1182, 775]}},
+{"id": "tx14ty", "name": "Alain Prost helmet", "description": "Alain Prost is a French Formula 1 racing driver and a four-time world champion with 51 Grand Prix victories.", "links": {"website": ["https://en.wikipedia.org/wiki/Alain_Prost"], "subreddit": ["alainprost", "formula1", "placefrance", "franceplace", "placeFR", "france"]}, "path": {"102-127": [[1177, 870], [1174, 873], [1171, 878], [1171, 880], [1173, 882], [1188, 882], [1188, 880], [1190, 878], [1190, 877], [1187, 872], [1186, 872], [1183, 870]], "147-166, T:0-1": [[1173, 776], [1178, 769], [1185, 769], [1190, 773], [1190, 779], [1187, 781], [1174, 781], [1173, 779]]}, "center": {"102-127": [1181, 876], "147-166, T:0-1": [1182, 775]}},
{"id": "tx13x6", "name": "University of Texas at Dallas", "description": "The University of Texas at Dallas is a university in Dallas, Texas, United States. This art depicts the university's mascot, Temoc the Comet.", "links": {"website": ["https://www.utdallas.edu/", "https://en.wikipedia.org/wiki/University_of_Texas_at_Dallas"], "subreddit": ["utdallas"]}, "path": {"81-84": [[731, 0], [731, 17], [745, 17], [745, 0]], "57-68": [[1852, 447], [1852, 466], [1868, 466], [1868, 447]], "69-73": [[1883, 447], [1883, 466], [1894, 466], [1894, 452], [1899, 450], [1899, 447]], "114-166, T:0-1": [[1257, 1865], [1289, 1865], [1289, 1874], [1257, 1874]]}, "center": {"81-84": [738, 9], "57-68": [1860, 457], "69-73": [1889, 453], "114-166, T:0-1": [1273, 1870]}},
{"id": "tx13rn", "name": "Micaiah", "description": "Micaiah is one of the protagonists in Fire Emblem: Radiant Dawn (released in 2007). She is a magic user and the de facto leader of the Dawn Brigade.", "links": {"website": ["https://fireemblem.fandom.com/wiki/Micaiah"], "subreddit": ["fireemblem"]}, "path": {"109-166, T:0-1": [[490, 1375], [486, 1375], [486, 1374], [484, 1372], [479, 1372], [477, 1374], [477, 1377], [478, 1378], [476, 1380], [475, 1380], [473, 1378], [472, 1378], [472, 1379], [474, 1381], [475, 1381], [476, 1382], [477, 1382], [477, 1383], [476, 1384], [475, 1384], [474, 1385], [473, 1385], [472, 1386], [471, 1387], [471, 1391], [477, 1385], [478, 1385], [479, 1386], [476, 1389], [480, 1390], [480, 1391], [481, 1392], [481, 1394], [482, 1394], [484, 1392], [484, 1391], [483, 1390], [484, 1389], [485, 1390], [486, 1390], [487, 1391], [488, 1390], [489, 1390], [489, 1388], [490, 1387], [490, 1385], [488, 1383], [489, 1382], [489, 1380], [487, 1378]]}, "center": {"109-166, T:0-1": [482, 1382]}},
{"id": "tx13qt", "name": "Colorado Avalanche", "description": "The Colorado Avalanche is a team in the National Hockey League (NHL). They are based in Denver, Colorado, United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Colorado_Avalanche"], "subreddit": ["ColoradoAvalanche"]}, "path": {"77-111": [[1432, 35], [1432, 63], [1467, 63], [1467, 35]], "57-76": [[1437, 33], [1437, 62], [1477, 62], [1477, 52], [1467, 52], [1467, 35], [1478, 35], [1478, 33]], "124-125": [[1421, 35], [1421, 80], [1467, 80], [1467, 35]], "112-123, 126-166, T:0-1": [[1432, 63], [1467, 63], [1467, 35], [1442, 35], [1432, 44]]}, "center": {"77-111": [1450, 49], "57-76": [1452, 48], "124-125": [1444, 58], "112-123, 126-166, T:0-1": [1450, 49]}},
@@ -3057,12 +3049,12 @@
{"id": "tx11o9", "name": "NTS Sessions 1-4", "description": "NTS Sessions 1-4 is a 2018 studio album by British electronic music duo Autechre. The duo is from Rochdale, United Kingdom, and they've had a large influence within the intelligent dance music (IDM) and glitch music genres. They're also known to use MaxMSP, a visual programming language for creating music.", "links": {"website": ["https://en.wikipedia.org/wiki/NTS_Sessions_1%E2%80%934", "https://autechre.warp.net/", "https://autechre.ws", "https://en.wikipedia.org/wiki/Autechre"], "subreddit": ["autechre"]}, "path": {"76-166, T:0-1": [[1287, 503], [1299, 503], [1299, 511], [1287, 511]]}, "center": {"76-166, T:0-1": [1293, 507]}},
{"id": "tx11nt", "name": "KGBTR", "description": "KGBTR is a Turkish meme group. The name stands for \"Kardes Grup Bura Ne Bekliyon TR\", Turkish for \"Bro, this is only a group without purpose; what are you looking for?\n\nThis logo was incomplete before the whiteout began.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=kgbtr"], "subreddit": ["KGBTR"]}, "path": {"156-164": [[655, 1122], [655, 1128], [668, 1128], [668, 1122]], "61-94": [[1778, 2], [1778, 13], [1834, 13], [1834, 2]]}, "center": {"156-164": [662, 1125], "61-94": [1806, 8]}},
{"id": "tx119i", "name": "pxls.space", "description": "pxls.space is a clone of r/place running since 2017. This art has characters featured based on community culture.\n\nThe pxls.space group was one of the closest allies with osu!.", "links": {"website": ["https://pxls.space"], "subreddit": ["pxlsspace"]}, "path": {"1-5": [[796, 278], [786, 287], [786, 290], [788, 290], [788, 308], [847, 308], [847, 283], [844, 278], [837, 276], [837, 290], [801, 289], [801, 278]], "6-164, T:0-1": [[777, 735], [836, 735], [836, 734], [840, 734], [840, 728], [839, 728], [839, 720], [835, 718], [835, 710], [832, 707], [830, 707], [830, 692], [823, 692], [823, 697], [824, 698], [824, 710], [822, 710], [820, 712], [809, 712], [809, 710], [806, 707], [802, 707], [802, 710], [804, 712], [804, 713], [797, 713], [797, 712], [792, 712], [789, 707], [787, 707], [784, 711], [784, 712], [783, 712], [782, 713], [779, 713], [777, 715]]}, "center": {"1-5": [798, 298], "6-164, T:0-1": [824, 723]}},
-{"id": "tx10v1", "name": "Purple Kiss", "description": "Logo of the K-pop girl group Purple Kiss who debuted in 2021 under RBW.", "links": {"website": ["https://en.wikipedia.org/wiki/Purple_Kiss"], "subreddit": ["PurpleKiss"]}, "path": {"56-166, T:0-1": [[1524, 890], [1524, 896], [1532, 896], [1532, 890]]}, "center": {"56-166, T:0-1": [1528, 893]}},
+{"id": "tx10v1", "name": "Purple Kiss", "description": "Purple Kiss is a K-pop girl group who debuted in 2021 under RBW.", "links": {"website": ["http://www.rbbridge.com/?page_id=25130", "https://en.wikipedia.org/wiki/Purple_Kiss"], "subreddit": ["PurpleKiss", "kpop"]}, "path": {"68-166, T:0-1": [[1523, 889], [1523, 897], [1533, 897], [1533, 889]]}, "center": {"68-166, T:0-1": [1528, 893]}},
{"id": "tx10pe", "name": "Vancouver Canucks", "description": "The Vancouver Canucks are a National Hockey League (NHL) team located in Vancouver, British Columbia, Canada. The 33 and 22 are homage to the Sedin twins who played from 2000-2018. The 16 pays tribute to long-time Canucks captain Trevor Linden. The banners above the orca are the jersey colors of the six Canucks to get their numbers retired.", "links": {"website": ["https://canucks.com", "https://en.wikipedia.org/wiki/Vancouver_Canucks"], "subreddit": ["canucks"]}, "path": {"56-115": [[865, 449], [865, 486], [912, 486], [912, 449]], "7-55": [[872, 449], [872, 486], [912, 486], [912, 449]], "116-164, T:0-1": [[865, 449], [865, 486], [905, 486], [905, 510], [912, 510], [912, 449]]}, "center": {"56-115": [889, 468], "7-55": [892, 468], "116-164, T:0-1": [890, 468]}},
{"id": "tx10go", "name": "Chessboard", "description": "A chessboard made by r/AnarchyChess, a chess meme subreddit. Many inside jokes from the subreddit are included on the board, as well as various other subreddits.", "links": {"website": ["https://en.wikipedia.org/wiki/Chessboard"], "subreddit": ["AnarchyChess", "chess"]}, "path": {"1-166, T:0-1": [[81, 607], [151, 607], [151, 609], [174, 609], [174, 712], [71, 712], [71, 643], [77, 643], [77, 631], [73, 631], [73, 632], [72, 632], [72, 633], [71, 633], [71, 634], [71, 631], [72, 631], [73, 631], [73, 630], [74, 630], [75, 630], [75, 629], [76, 629], [76, 628], [77, 628], [77, 627], [78, 627], [78, 626], [79, 626], [79, 625], [80, 625], [80, 622], [81, 622], [81, 620], [82, 620], [82, 612], [81, 612], [81, 608], [80, 608], [80, 607]]}, "center": {"1-166, T:0-1": [124, 661]}},
{"id": "tx0zj4", "name": "Régie Finale", "description": "RF sur mire de barres nPar la régie finale (FR)", "links": {}, "path": {"109-165, T:0-1": [[1277, 1255], [1285, 1255], [1285, 1262], [1277, 1262]]}, "center": {"109-165, T:0-1": [1281, 1259]}},
{"id": "tx0zih", "name": "Yuzusoft", "description": "Yuzusoft is a visual novel company based in Japan, specializing in fluffy romance with interesting plots. Yuzusoft's games include Senren*Banka, Riddle Joker, and Café Stella and the Reaper's Butterflies.\n\nThis art was created by the Yuzusoft fan Discord server as part of Operation YuzuArt.", "links": {"website": ["http://www.yuzu-soft.com/", "https://twitter.com/yuzusoft"], "subreddit": ["visualnovels"]}, "path": {"130-132": [[1425, 501], [1425, 509], [1473, 509], [1473, 501]], "90-129": [[1433, 501], [1473, 501], [1473, 509], [1433, 509]], "133-165, T:0-1": [[1432, 501], [1473, 501], [1473, 509], [1432, 509]]}, "center": {"130-132": [1449, 505], "90-129": [1453, 505], "133-165, T:0-1": [1453, 505]}},
-{"id": "tx0ykn", "name": "Polyamory heart", "description": "A heart with three colors in reference to polyamory, consensual and intimate relationships involving more than one partner.", "links": {"website": ["https://en.wikipedia.org/wiki/Polyamory"]}, "path": {"60-166, T:0-1": [[714, 298], [714, 301], [717, 304], [720, 301], [720, 298]]}, "center": {"60-166, T:0-1": [717, 300]}},
+{"id": "tx0ykn", "name": "Polyamory heart", "description": "A heart with three colors in reference to polyamory, consensual and intimate relationships involving more than one partner.", "links": {"website": ["https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory"]}, "path": {"60-166, T:0-1": [[714, 298], [714, 301], [717, 304], [720, 301], [720, 298]]}, "center": {"60-166, T:0-1": [717, 300]}},
{"id": "tx0ye0", "name": "Forest King Emperor", "description": "Charaxes xiphares, The forest king emperor or forest king charaxes, is a butterfly native to Nigeria. The one here also stands for the spirit butterfly from Life is Strange. It is fitting as Nigeria is the best country in Africa for butterflies. It was built by r/LifeisStrange and maintained with help from r/Nigeria.", "links": {"website": ["https://en.wikipedia.org/wiki/Charaxes_xiphares"], "subreddit": ["LifeisStrange"]}, "path": {"109-165, T:0-1": [[782, 1097], [783, 1098], [784, 1098], [785, 1099], [786, 1098], [787, 1097], [787, 1095], [789, 1093], [790, 1093], [791, 1094], [791, 1097], [792, 1097], [792, 1100], [791, 1100], [791, 1101], [788, 1101], [788, 1102], [787, 1103], [786, 1103], [782, 1099]]}, "center": {"109-165, T:0-1": [788, 1098]}},
{"id": "tx0ydf", "name": "Termacious Trickocity", "description": "Halo tricking community.", "links": {"website": ["https://www.youtube.com/user/TermaciousTrickocity"]}, "path": {"108-166, T:0-1": [[1207, 75], [1207, 67], [1215, 67], [1215, 75]]}, "center": {"108-166, T:0-1": [1211, 71]}},
{"id": "tx0y92", "name": "A duck from Duck Game", "description": "A duck made by /r/duckgame users.", "links": {"subreddit": ["duckgame"]}, "path": {"1-165, T:0-1": [[840, 971], [837, 971], [837, 973], [839, 975], [839, 976], [841, 976], [842, 973], [841, 971]]}, "center": {"1-165, T:0-1": [840, 973]}},
@@ -3077,7 +3069,7 @@
{"id": "tx0wjy", "name": "xXxTheFocuSxXx", "description": "xXxTheFocuSxXx (Focus) is a Spanish streamer, known for video game content, include Minecraft and Grand Theft Auto V role-playing. This art depicts Focus's Minecraft skin, a crow, which Focus uses in the YouTube series TortillaLand.", "links": {"website": ["https://www.twitch.tv/xxxthefocusxxx"]}, "path": {"101-166, T:0-1": [[1577, 625], [1577, 627], [1576, 628], [1577, 629], [1577, 637], [1587, 637], [1587, 629], [1588, 628], [1587, 627], [1587, 625]]}, "center": {"101-166, T:0-1": [1582, 631]}},
{"id": "tx0whb", "name": "Raspberry Pi", "description": "Raspberry Pi is a series of pocket-size computers for learning and tinkering. These computers run Raspberry Pi OS (formerly Raspbian), a Debian-based Linux distribution.", "links": {"website": ["https://raspberrypi.org", "https://en.wikipedia.org/wiki/Raspberry_Pi"], "subreddit": ["raspberrypi", "placetux"]}, "path": {"144-157": [[65, 704], [65, 709], [67, 711], [69, 709], [69, 704]], "116-143, 158-165, T:0-1": [[68, 716], [70, 714], [70, 709], [66, 709], [66, 714]]}, "center": {"144-157": [67, 707], "116-143, 158-165, T:0-1": [68, 712]}},
{"id": "tx0wfo", "name": "Great Britain", "description": "Great Britain is the main island of the United Kingdom. The term Great Britain is often used to refer to England, Scotland and Wales, sometimes including their component adjoining islands.", "links": {"website": ["https://en.wikipedia.org/wiki/Great_Britain"], "subreddit": ["ukplace", "unitedkingdom"]}, "path": {"64-74": [[671, 558], [669, 560], [669, 568], [666, 571], [666, 572], [674, 572], [678, 569], [678, 568], [675, 565], [675, 558]], "132-165, 94-121, T:0-1": [[616, 489], [626, 489], [626, 495], [625, 495], [625, 497], [624, 497], [624, 499], [623, 499], [623, 501], [621, 501], [621, 502], [620, 502], [621, 502], [621, 503], [621, 504], [620, 504], [620, 505], [619, 505], [622, 505], [622, 506], [623, 506], [623, 507], [624, 507], [624, 508], [625, 508], [625, 514], [626, 514], [626, 517], [629, 517], [629, 520], [630, 520], [630, 521], [631, 521], [631, 524], [632, 524], [632, 529], [630, 529], [633, 529], [633, 534], [636, 534], [636, 535], [640, 535], [640, 543], [639, 543], [639, 544], [639, 545], [638, 545], [638, 546], [634, 546], [634, 548], [637, 548], [637, 549], [638, 549], [638, 550], [638, 551], [635, 551], [635, 552], [633, 552], [633, 556], [635, 556], [635, 557], [636, 557], [633, 557], [633, 556], [632, 556], [632, 551], [631, 551], [631, 550], [632, 550], [632, 549], [632, 548], [631, 548], [630, 548], [630, 549], [629, 549], [629, 550], [600, 550], [601, 549], [601, 548], [602, 548], [602, 547], [602, 546], [603, 546], [611, 546], [604, 546], [604, 545], [603, 545], [603, 543], [602, 544], [601, 544], [600, 544], [600, 542], [601, 542], [599, 542], [599, 541], [598, 541], [598, 540], [598, 539], [599, 539], [599, 538], [602, 538], [602, 537], [603, 537], [603, 536], [604, 536], [604, 535], [606, 535], [606, 534], [607, 534], [607, 533], [604, 533], [604, 530], [606, 530], [606, 529], [605, 529], [604, 529], [604, 528], [603, 528], [603, 527], [603, 526], [608, 526], [608, 528], [609, 528], [609, 527], [612, 527], [612, 525], [613, 525], [613, 524], [614, 524], [613, 524], [613, 522], [612, 522], [612, 521], [611, 521], [611, 517], [610, 517], [610, 516], [609, 516], [609, 517], [608, 517], [607, 517], [607, 516], [603, 516], [603, 515], [603, 514], [604, 514], [604, 512], [605, 512], [605, 511], [606, 510], [607, 510], [603, 510], [603, 504], [602, 504], [602, 502], [602, 500], [602, 499], [601, 499], [600, 498], [598, 499], [598, 498], [597, 498], [597, 496], [598, 496], [598, 495], [602, 495], [596, 495], [596, 491], [596, 490], [598, 490], [598, 488], [600, 488], [597, 488], [597, 485], [599, 485], [599, 483], [601, 483], [601, 482], [603, 482], [603, 481], [605, 481], [605, 480], [607, 480], [607, 481], [607, 482], [606, 482], [606, 484], [605, 484], [605, 485], [604, 485], [604, 486], [601, 486], [601, 488], [602, 488], [602, 487], [606, 487], [606, 485], [608, 485], [608, 483], [609, 483], [609, 482], [610, 482], [610, 481], [610, 480], [611, 480], [611, 479], [614, 479], [614, 481], [618, 481], [619, 480], [619, 478], [621, 476], [625, 476], [625, 477], [622, 481], [622, 482], [623, 483], [618, 488]]}, "center": {"64-74": [673, 568], "132-165, 94-121, T:0-1": [620, 537]}},
-{"id": "tx0w66", "name": "Blaseball", "description": "Blaseball is a text based absurdist baseball simulator game, That can also be described as a horror game, developed by The Game Band.\n\nAlso Go Pies.", "links": {"website": ["https://www.blaseball.com/landing"], "subreddit": ["Blaseball"]}, "path": {"56-166, T:0-1": [[1449, 810], [1474, 810], [1474, 822], [1474, 824], [1484, 824], [1484, 829], [1460, 829], [1460, 822], [1449, 822]]}, "center": {"56-166, T:0-1": [1465, 819]}},
+{"id": "tx0w66", "name": "Blaseball", "description": "Blaseball is a text-based, community-driven, absurdist baseball simulator game that can also be described as a horror game. It was developed by The Game Band. The minimalist website tells you what you need to know; the fans fill in the rest. Watch live, simulated games on the website while you strategize against the Gods and help lead your team to victory (or destruction). The community brings the world of Blaseball to life. Through song, art, stats, oral histories, and desperate plots, we build this experience together.\n\nThis art contains a collection of Blaseball icons, including the title, base diagram with a fifth base, the supernova, the \"we are all love Blaseball\" heart, \"the noodle\", and a rat in honor of the player Rat Mason.\n\nAlso Go Pies.", "links": {"website": ["https://www.blaseball.com/landing", "https://en.wikipedia.org/wiki/Blaseball"], "subreddit": ["Blaseball"]}, "path": {"56-102": [[1449, 810], [1449, 822], [1471, 822], [1473, 820], [1473, 813], [1475, 811], [1475, 809], [1469, 809], [1469, 810]], "103-166, T:0-1": [[1449, 810], [1449, 822], [1459, 822], [1459, 824], [1460, 824], [1460, 829], [1465, 829], [1466, 830], [1467, 829], [1476, 829], [1478, 831], [1482, 831], [1484, 828], [1484, 826], [1481, 826], [1481, 824], [1473, 824], [1473, 813], [1475, 811], [1475, 809], [1469, 809], [1469, 810]]}, "center": {"56-102": [1455, 816], "103-166, T:0-1": [1465, 818]}},
{"id": "tx0w2t", "name": "White Lotus", "description": "The Order of the White Lotus, also known simply as the White Lotus, is an ancient and formerly secret society in the TV series Avatar: The Last Airbender. The society transcends the boundaries of the four nations, seeking philosophy, beauty, and truth.", "links": {"website": ["https://avatar.fandom.com/wiki/Order_of_the_White_Lotus", "https://www.youtube.com/channel/UCN_u5w69V9wUZYG8WeJWuNg", "https://en.wikipedia.org/wiki/Avatar:_The_Last_Airbender"], "subreddit": ["ATLA"]}, "path": {"151-166, T:0-1": [[708, 804], [708, 828], [732, 828], [732, 804]]}, "center": {"151-166, T:0-1": [720, 816]}},
{"id": "tx0w21", "name": "Tanya von Degurechaff", "description": "Tanya von Degurechaff is the protagonist of the anime Youjo Senki.", "links": {"website": ["https://youjo-senki.fandom.com/wiki/Tanya_von_Degurechaff"], "subreddit": ["YoujoSenki"]}, "path": {"149-164, T:0-1": [[1102, 523], [1102, 531], [1104, 533], [1106, 533], [1106, 535], [1108, 537], [1110, 537], [1112, 535], [1112, 533], [1111, 532], [1111, 530], [1109, 528], [1108, 528], [1108, 526], [1106, 524], [1105, 524], [1105, 523]]}, "center": {"149-164, T:0-1": [1105, 530]}},
{"id": "tx0vxd", "name": "VŠB-TUO logo", "description": "Logo of VŠB - Technical University of Ostrava, Czech Republic.", "links": {"website": ["https://www.vsb.cz/"]}, "path": {"109-166, T:0-1": [[1936, 1368], [1936, 1353], [1950, 1353], [1950, 1368]]}, "center": {"109-166, T:0-1": [1943, 1361]}},
@@ -3097,7 +3089,6 @@
{"id": "tx0tj4", "name": "The Hub", "description": "A secret place for the community of Twitch streamer Kollaba.", "links": {"website": ["https://twitch.tv/kollaba"], "subreddit": ["kollaba"]}, "path": {"72-123": [[1494, 119], [1494, 138], [1518, 138], [1518, 119]], "125-166, T:0-1": [[1494, 118], [1518, 118], [1518, 131], [1494, 131]]}, "center": {"72-123": [1506, 129], "125-166, T:0-1": [1506, 125]}},
{"id": "tx0tdw", "name": "Cats", "description": "Created on a whim to fill up space between Niko and Lea, these cats started off as Baba (from indie puzzle game Baba is You); however, passersby and other users thought the sprite eyes were misplaced pixels. After attempting to fix them for a while, most gave up as they didn't want a repeat of the Niko Roomba situation.", "links": {"website": ["https://en.wikipedia.org/wiki/Cat"]}, "path": {"107-166, T:0-1": [[892, 273], [889, 276], [889, 281], [915, 281], [915, 280], [914, 279], [914, 277], [910, 273], [906, 273], [905, 276], [905, 278], [906, 279], [906, 281], [896, 281], [896, 279], [897, 278], [897, 276], [895, 273]]}, "center": {"107-166, T:0-1": [909, 277]}},
{"id": "tx0td5", "name": "South Africa National Rugby Union team", "description": "The national rugby union team of South Africa, nicknamed as the Springboks, are the currently title holders as world champions in the international Rugby World Cup competition, which the team has won three times. Both the Boks and the sport of rugby union hold a special place in South Africa's culture and history.", "links": {"website": ["https://www.sarugby.co.za/"], "subreddit": ["SouthAfrica"]}, "path": {"1-165, T:0-1": [[757, 997], [766, 983], [760, 967], [751, 981]]}, "center": {"1-165, T:0-1": [759, 982]}},
-{"id": "tx0t1z", "name": "KonoSuba", "description": "The two characters Aqua and Kazuma from the anime KonoSuba painted on the German flag on day 3.", "links": {"website": ["https://en.wikipedia.org/wiki/KonoSuba"], "subreddit": ["Konosuba"]}, "path": {"56-166, T:0-1": [[1594, 858], [1593, 858], [1593, 859], [1593, 860], [1591, 860], [1591, 866], [1592, 866], [1592, 868], [1599, 868], [1599, 867], [1600, 867], [1600, 859], [1597, 859]]}, "center": {"56-166, T:0-1": [1596, 863]}},
{"id": "tx0szc", "name": "Technische Universität Dortmund", "description": "The logo of the Technical University Dortmund (Germany)", "links": {}, "path": {"109-166, T:0-1": [[959, 1649], [970, 1649], [970, 1657], [959, 1657]]}, "center": {"109-166, T:0-1": [965, 1653]}},
{"id": "tx0sz1", "name": "Den-Haag", "description": "a small community of good friends (and riddy)", "links": {}, "path": {"109-165, T:0-1": [[1469, 1755], [1469, 1749], [1458, 1749], [1458, 1755], [1463, 1755]]}, "center": {"109-165, T:0-1": [1464, 1752]}},
{"id": "tx0sx4", "name": "Chocopouce Among Us crewmate", "description": "Among Us crewmate created by the Chocopouce server.", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"109-165, T:0-1": [[1052, 1169], [1054, 1169], [1054, 1165], [1051, 1165], [1051, 1169], [1059, 1168]]}, "center": {"109-165, T:0-1": [1052, 1167]}},
@@ -3118,7 +3109,7 @@
{"id": "tx0plv", "name": "Flag of Armenia", "description": "Armenia is a country in the Caucasus region of Eastern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia"]}, "path": {"11": [[355, 264], [352, 267], [355, 270], [358, 267]], "103-109": [[372, 179], [372, 193], [396, 193], [396, 179]], "91-93": [[385, 179], [385, 186], [396, 186], [396, 179]], "65-88": [[893, 165], [893, 176], [902, 176], [902, 197], [949, 197], [949, 165]], "48-64": [[893, 165], [893, 176], [902, 176], [902, 187], [949, 187], [949, 165]], "29-47": [[847, 166], [847, 187], [949, 187], [949, 165], [893, 165], [893, 166]], "4-6": [[248, 409], [248, 413], [254, 413], [254, 409]], "149-165, T:0-1": [[1334, 1948], [1334, 1958], [1365, 1958], [1365, 1948]]}, "center": {"11": [355, 267], "103-109": [384, 186], "91-93": [391, 183], "65-88": [921, 181], "48-64": [921, 176], "29-47": [898, 176], "4-6": [251, 411], "149-165, T:0-1": [1350, 1953]}},
{"id": "tx0pki", "name": "Brockhampton", "description": "The album cover of SATURATION III by Brockhampton.", "links": {"subreddit": ["brockhampton"]}, "path": {"109-166, T:0-1": [[694, 1688], [705, 1688], [705, 1700], [694, 1700]]}, "center": {"109-166, T:0-1": [700, 1694]}},
{"id": "tx0pf1", "name": "Sharingan", "description": "Kekkei Genkai or eye color from the Naruto (anime).", "links": {"website": ["https://naruto.fandom.com/wiki/Sharingan"], "subreddit": ["PlaceNaruto"]}, "path": {"109-166, T:0-1": [[436, 1582], [451, 1582], [451, 1597], [436, 1597]]}, "center": {"109-166, T:0-1": [444, 1590]}},
-{"id": "tx0pb0", "name": "Fursona of Riley Winters", "description": "The fursona of Riley Winters,a mountain lion.", "links": {"website": ["https://twitter.com/Horsefur1"]}, "path": {"56-166, T:0-1": [[1482, 982], [1482, 997], [1483, 998], [1496, 998], [1499, 993], [1524, 992], [1524, 988], [1515, 982], [1482, 983]]}, "center": {"56-166, T:0-1": [1500, 989]}},
+{"id": "tx0pb0", "name": "Riley Winters", "description": "This art depicts the fursona of user Riley Winters, a mountain lion.", "links": {"website": ["https://twitter.com/Horsefur1"]}, "path": {"82-86": [[1334, 855], [1331, 858], [1331, 869], [1335, 873], [1345, 873], [1349, 869], [1376, 869], [1376, 866], [1375, 866], [1375, 863], [1365, 863], [1365, 860], [1366, 859], [1366, 858], [1364, 856], [1347, 856], [1346, 855], [1345, 855], [1342, 858], [1338, 858], [1335, 855]], "87-166, T:0-1": [[1484, 981], [1482, 983], [1482, 988], [1481, 989], [1481, 994], [1483, 996], [1483, 998], [1497, 998], [1497, 996], [1499, 994], [1499, 993], [1525, 993], [1525, 988], [1522, 988], [1516, 982], [1497, 982], [1496, 981], [1492, 984], [1488, 984], [1485, 981]]}, "center": {"82-86": [1342, 865], "87-166, T:0-1": [1489, 991]}},
{"id": "tx0p7b", "name": "Diamond shovel", "description": "A diamond shovel is a tool from the game Minecraft. It is used in the minigame Spleef to dig holes under opposing players.", "links": {"website": ["https://minecraft.fandom.com/wiki/Shovel"], "subreddit": ["Minecraft"]}, "path": {"106-166, T:0-1": [[1743, 341], [1739, 345], [1739, 347], [1735, 351], [1733, 351], [1733, 355], [1737, 355], [1737, 353], [1741, 349], [1743, 349], [1747, 345], [1747, 343], [1745, 341]]}, "center": {"106-166, T:0-1": [1742, 346]}},
{"id": "tx0p3o", "name": "Rick Roll QR Code", "description": "While it doesn't appear in this screencap, The Rick Roll QR Code was rebuilt here just a couple minutes before the end.", "links": {"subreddit": ["placeQRcode"]}, "path": {"56-166, T:0-1": [[1869, 917], [1905, 917], [1905, 948], [1869, 949]]}, "center": {"56-166, T:0-1": [1887, 933]}},
{"id": "tx0oa2", "name": "Christ the Redeemer", "description": "Christ the Redeemer (Portuguese: Cristo Redentor) is an Art Deco statue of Jesus Christ in Rio de Janeiro, Brazil made out of reinforced concrete and soapstone. It was designed by French sculptor Paul Landowski, and built by Brazilian engineer Heitor da Silva Costa in collaboration with French engineer Albert Caquot. Romanian sculptor Gheorghe Leonida fashioned the face. The statue was constructed between 1922 and 1931. The statue is 30 meters (90 feet) high, excluding its 8-meter (26-foot) pedestal., and its arms stretch out 28 meters (92 feet).\n\nIn this art, the statue is wearing a cangaceiro hat.", "links": {"website": ["https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)"], "subreddit": ["brasil"]}, "path": {"60-73": [[1080, 589], [1080, 598], [1072, 598], [1070, 600], [1070, 602], [1072, 604], [1075, 604], [1076, 605], [1080, 605], [1080, 619], [1090, 619], [1090, 605], [1092, 604], [1097, 604], [1099, 602], [1099, 598], [1090, 598], [1090, 596], [1088, 593], [1088, 590], [1086, 588], [1083, 588], [1082, 589]], "74-165, T:0-1": [[1074, 576], [1071, 579], [1074, 582], [1080, 583], [1085, 586], [1085, 593], [1086, 594], [1086, 610], [1084, 610], [1084, 612], [1082, 615], [1081, 617], [1081, 619], [1101, 619], [1101, 614], [1100, 613], [1100, 610], [1098, 610], [1098, 594], [1099, 593], [1099, 586], [1102, 584], [1108, 582], [1110, 582], [1113, 579], [1113, 577], [1110, 577], [1109, 576], [1108, 576], [1107, 577], [1097, 577], [1096, 576], [1096, 574], [1094, 572], [1090, 572], [1088, 574], [1088, 576], [1087, 577], [1077, 577], [1076, 576]]}, "center": {"60-73": [1085, 601], "74-165, T:0-1": [1092, 583]}},
@@ -3174,8 +3165,8 @@
{"id": "tx0bxo", "name": "D12", "description": "D12 is an American Hip-Hop group", "links": {}, "path": {"1-165, T:0-1": [[901, 991], [898, 991], [898, 998], [901, 998]]}, "center": {"1-165, T:0-1": [900, 995]}},
{"id": "tx0bsv", "name": "Vulfpeck", "description": "An American funk group.nFunky and low volume!", "links": {"website": ["https://vulfpeck.com/"], "subreddit": ["Vulfpeck"]}, "path": {"109-166, T:0-1": [[1153, 1850], [1162, 1850], [1162, 1857], [1153, 1857]]}, "center": {"109-166, T:0-1": [1158, 1854]}},
{"id": "tx0blr", "name": "Tennessee Titans", "description": "Led by members of r/Tennesseetitans, This features the Titans main and secondary logos as well the numbers for current Titans Derrick Henry(22), AJ Brown(11), and Kevin Byard(31). Tits is a funny nickname for Titans.", "links": {"subreddit": ["Tennesseetitans"]}, "path": {"109-165, T:0-1": [[1201, 1175], [1201, 1247], [1203, 1238], [1216, 1220], [1218, 1206], [1232, 1204], [1233, 1199], [1224, 1199], [1223, 1189], [1218, 1187], [1217, 1178], [1223, 1175]]}, "center": {"109-165, T:0-1": [1211, 1202]}},
-{"id": "tx0b4h", "name": "STAYC", "description": "STAYC (Star To A Young Culture, 스테이씨) is a 6-member girl group from South Korea under High Up Entertainment. They consist of: Sieun, Seeun, Sumin, J, Isa and Yoon. They debuted on November 12, 2020 with their first single album \"Star To A Young Culture\".", "links": {"website": ["https://en.wikipedia.org/wiki/STAYC"]}, "path": {"56-166, T:0-1": [[1532, 889], [1532, 880], [1499, 880], [1499, 889]]}, "center": {"56-166, T:0-1": [1516, 885]}},
-{"id": "tx0avo", "name": "Anthrofractal", "description": "An interactive webcomic story.", "links": {"website": ["https://anthrofractal.com/"], "subreddit": ["ANTHROFRACTAL"]}, "path": {"56-166, T:0-1": [[1276, 896], [1275, 896], [1275, 899], [1276, 899], [1276, 900], [1279, 900], [1279, 899], [1280, 899], [1280, 896], [1279, 896], [1279, 895], [1276, 895]]}, "center": {"56-166, T:0-1": [1278, 898]}},
+{"id": "tx0b4h", "name": "STAYC", "description": "STAYC (Star To A Young Culture, 스테이씨) is a 6-member girl group from South Korea under High Up Entertainment. They consist of: Sieun, Seeun, Sumin, J, Isa, and Yoon. They debuted on November 12, 2020 with their first single album \"Star To A Young Culture\".", "links": {"website": ["http://www.highup-ent.com/stayc/", "https://en.wikipedia.org/wiki/STAYC"], "subreddit": ["kpop"]}, "path": {"61-166, T:0-1": [[1501, 880], [1499, 882], [1499, 885], [1498, 885], [1498, 887], [1500, 889], [1529, 889], [1531, 887], [1531, 884], [1532, 883], [1532, 882], [1530, 880]]}, "center": {"61-166, T:0-1": [1515, 885]}},
+{"id": "tx0avo", "name": "Anthrofractal", "description": "Anthrofractal is an interactive webcomic story.", "links": {"website": ["https://anthrofractal.com/"], "subreddit": ["ANTHROFRACTAL"]}, "path": {"100-166, T:0-1": [[1277, 895], [1275, 897], [1275, 898], [1277, 900], [1278, 900], [1280, 898], [1280, 897], [1278, 895]]}, "center": {"100-166, T:0-1": [1278, 898]}},
{"id": "tx0aou", "name": "Kotoha Tanaka", "description": "Character from iDOLM@STER Million Live!", "links": {"website": ["https://million-live.fandom.com/wiki/Kotoha_Tanaka"], "subreddit": ["idolmaster"]}, "path": {"109-166, T:0-1": [[1719, 1746], [1719, 1744], [1720, 1744], [1720, 1742], [1719, 1742], [1719, 1738], [1720, 1737], [1721, 1736], [1722, 1735], [1730, 1734], [1731, 1735], [1732, 1736], [1733, 1737], [1733, 1740], [1734, 1740], [1734, 1746], [1734, 1747], [1719, 1747], [1719, 1744], [1720, 1744]]}, "center": {"109-166, T:0-1": [1726, 1741]}},
{"id": "tx0aic", "name": "Nervyr", "description": "Nervyr is a Path of Exile YouTuber and streamer, popular for the Before You Buy videos showcasing microtransactions.", "links": {"website": ["https://www.youtube.com/c/Nervyr"], "subreddit": ["pathofexile"]}, "path": {"80-165, T:0-1": [[1384, 473], [1392, 473], [1392, 481], [1384, 481]]}, "center": {"80-165, T:0-1": [1388, 477]}},
{"id": "tx0a8a", "name": "fcfm", "description": "Logo of the Faculty of Physical and Mathematical Sciences of Universidad de Chile", "links": {"website": ["https://ingenieria.uchile.cl/"]}, "path": {"109-164, T:0-1": [[1240, 1628], [1240, 1638], [1254, 1638], [1254, 1628]]}, "center": {"109-164, T:0-1": [1247, 1633]}},
@@ -3230,7 +3221,7 @@
{"id": "tx6sfu", "name": "Godzilla Quebecois", "description": "A collaboration between r/Godzilla and r/Quebec. Depicts Godzilla with a toque and scarf coming out of the water and destroying the nearby bridge and JX van. Design by u/NateZilla10000.", "links": {"website": ["https://www.reddit.com/r/GODZILLA/comments/twih20/thanks_to_all_rplace_collaborators/"], "subreddit": ["GODZILLA", "Quebec"]}, "path": {"109-165, T:0-1": [[1049, 1019], [1052, 1020], [1053, 1021], [1057, 1022], [1060, 1024], [1062, 1027], [1062, 1030], [1064, 1033], [1063, 1036], [1067, 1041], [1071, 1044], [1072, 1041], [1078, 1044], [1079, 1051], [1078, 1053], [1084, 1058], [1086, 1054], [1092, 1056], [1089, 1062], [1087, 1067], [1085, 1072], [1079, 1065], [1075, 1060], [1073, 1057], [1070, 1052], [1070, 1048], [1064, 1043], [1060, 1038], [1057, 1036], [1056, 1042], [1056, 1046], [1053, 1047], [1053, 1049], [1060, 1047], [1064, 1048], [1063, 1051], [1061, 1052], [1056, 1052], [1053, 1055], [1053, 1062], [1053, 1065], [1034, 1065], [1035, 1055], [1030, 1049], [1025, 1050], [1028, 1045], [1023, 1047], [1023, 1045], [1027, 1042], [1026, 1036], [1025, 1032], [1028, 1034], [1034, 1035], [1036, 1037], [1036, 1034], [1034, 1032], [1037, 1029], [1038, 1031], [1040, 1030], [1041, 1031], [1044, 1028], [1046, 1030], [1050, 1029], [1052, 1028], [1051, 1025], [1048, 1024], [1047, 1023]]}, "center": {"109-165, T:0-1": [1053, 1046]}},
{"id": "tx6sd9", "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://www.reddit.com/r/waifubartending/comments/tua7tf/operation_bad_touch_was_a_success/", "https://merch.ysbryd.net/products/slut-shirt"], "subreddit": ["waifubartending"]}, "path": {"99-101": [[1765, 779], [1765, 785], [1781, 785], [1781, 779]], "27-38": [[145, 897], [145, 905], [162, 905], [162, 897]], "102-166, T:0-1": [[1765, 778], [1765, 784], [1781, 784], [1781, 778]]}, "center": {"99-101": [1773, 782], "27-38": [154, 901], "102-166, T:0-1": [1773, 781]}},
{"id": "tx6rrd", "name": "Eldercord", "description": "The symbol for the discord server Eldercord, which is dedicated for the adult members of the MCYT fandom.", "links": {}, "path": {"109-164, T:0-1": [[347, 1835], [353, 1835], [353, 1841], [347, 1841]]}, "center": {"109-164, T:0-1": [350, 1838]}},
-{"id": "tx6rq2", "name": "Nintendo Homebrew Logo", "description": "Logo from the Nintendo Homebrew discord server based on the Homebrew Launcher logo for the Nintendo Switch and the Nintendo 3DS. Made by members of the Nintendo Homebrew Discord", "links": {"discord": ["dQgV6ZG"]}, "path": {"56-165, T:0-1": [[1210, 897], [1220, 897], [1220, 907], [1210, 907]]}, "center": {"56-165, T:0-1": [1215, 902]}},
+{"id": "tx6rq2", "name": "Homebrew Launcher", "description": "Homebrew Launcher is an application for the Nintendo Switch and 3DS game consoles that allows running unofficial applications on these consoles.\n\nThis art was made by members of the Nintendo Homebrew Discord server.", "links": {"discord": ["dQgV6ZG"]}, "path": {"98-110": [[1210, 895], [1210, 905], [1220, 905], [1220, 895]], "89-97": [[1209, 895], [1209, 905], [1219, 905], [1219, 895]], "133-165, T:0-1": [[1210, 897], [1220, 897], [1220, 907], [1210, 907]]}, "center": {"98-110": [1215, 900], "89-97": [1214, 900], "133-165, T:0-1": [1215, 902]}},
{"id": "tx6rmj", "name": "Apothisexual flag", "description": "A pride flag representing the apothisexual community. Apothisexual people are on the asexual spectrum, and are repulsed by the concept of sex.\n\nThe black cross on the flag was removed in the r/place version because the resolution of the flag was too low. The black stripe was changed to dark gray so that it doesn't look like two separate flags.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Apothisexual"], "subreddit": ["PlacePride"]}, "path": {"157-162, T:0-1": [[457, 568], [465, 568], [465, 574], [457, 574]]}, "center": {"157-162, T:0-1": [461, 571]}},
{"id": "tx6rg0", "name": "rivers_gg", "description": "rivers_gg is a Mexican female Twitch streamer.\n\nThis logo was drawn by Rivers_gg's community, Pollitos de Colores (English: Colorful Chicks).", "links": {"website": ["https://www.twitch.tv/rivers_gg"]}, "path": {"109-165, T:0-1": [[1785, 50], [1808, 50], [1808, 67], [1785, 67]]}, "center": {"109-165, T:0-1": [1797, 59]}},
{"id": "tx6r8b", "name": "Stress Level Zero", "description": "Stress Level Zero is a VR game development company, creators of Boneworks, Hover Junkers, and Duck Season.", "links": {"website": ["https://www.stresslevelzero.com"], "subreddit": ["boneworks"]}, "path": {"79-166, T:0-1": [[1530, 205], [1530, 222], [1550, 222], [1550, 205]]}, "center": {"79-166, T:0-1": [1540, 214]}},
@@ -3328,7 +3319,7 @@
{"id": "tx6985", "name": "F-22 air superiority fighter", "description": "The F-22 air superiority fighter jet. The most advanced 5th-generation fighter aircraft ever constructed.", "links": {"website": ["https://en.wikipedia.org/wiki/Lockheed_Martin_F-22_Raptor"], "subreddit": ["AmericanFlagInPlace", "AmericanFlagPlace", "MURICA"]}, "path": {"109-165, T:0-1": [[1826, 1834], [1826, 1837], [1822, 1835], [1817, 1839], [1806, 1825], [1796, 1821], [1781, 1813], [1779, 1809], [1790, 1809], [1798, 1813], [1805, 1807], [1814, 1815], [1819, 1811], [1822, 1823], [1827, 1823], [1859, 1837], [1859, 1838]]}, "center": {"109-165, T:0-1": [1815, 1823]}},
{"id": "tx693p", "name": "Dream", "description": "Dream is a pseudonym of an American YouTuber and Twitch streamer who is known primarily for creating Minecraft content.\n\nDream gained substantial popularity in 2019 and 2020 having uploaded videos based around the game Minecraft. He is known for his YouTube series Minecraft Manhunt and his speedruns of Minecraft. Content created in his Dream SMP (survival multiplayer) Minecraft server has also attracted considerable attention. As of January 26, 2022, his seven YouTube channels have collectively reached over 39 million subscribers and over 2.9 billion total views. YouTube awarded Dream the Streamy Award for Gaming in 2020 and 2021.", "links": {"website": ["https://www.youtube.com/c/dream"], "subreddit": ["DreamWasTaken"]}, "path": {"38-120": [[173, 944], [182, 944], [182, 953], [173, 953]], "121-165, T:0-1": [[182, 944], [191, 944], [191, 953], [182, 953]]}, "center": {"38-120": [178, 949], "121-165, T:0-1": [187, 949]}},
{"id": "tx68ts", "name": "Minecraft map-making communities", "description": "MCMD is a hub to the Realms, Minecraft Commands, and Minecraft Map Testing communities. These logos represent two communities surrounding Minecraft map making. The left logo represents the Minecraft Commands community, and the right logo represents the Minecraft Realms community. These logos were originally created at (809, 243) at time 1648907244966, until they were wiped out by a streamer expanding the Poland flag. The creation of these logos was a joint effort between the Realms, Minecraft Commands (https://discord.gg/QAFXFtZ), and Minecraft Map Testing (https://discord.gg/QRE99eS) communities.", "links": {"subreddit": ["mcmd", "MinecraftCommands", "realms"], "discord": ["QAFXFtZ"]}, "path": {"109-165, T:0-1": [[322, 1579], [322, 1594], [322, 1595], [323, 1595], [323, 1596], [324, 1596], [324, 1600], [352, 1600], [352, 1579]]}, "center": {"109-165, T:0-1": [337, 1589]}},
-{"id": "tx68sh", "name": "Julian Gomez Gomez", "description": "Pequeña firma de un desarrollador Español.", "links": {"website": ["https://www.linkedin.com/in/jg2dev/"]}, "path": {"56-166, T:0-1": [[1560, 833], [1544, 833], [1544, 838], [1560, 838]]}, "center": {"56-166, T:0-1": [1552, 836]}},
+{"id": "tx68sh", "name": "Julian Gomez Gomez", "description": "The small firm of a Spanish software developer.", "links": {"website": ["https://www.linkedin.com/in/jg2dev/"]}, "path": {"149-166, T:0-1": [[1543, 831], [1543, 839], [1560, 839], [1560, 831]]}, "center": {"149-166, T:0-1": [1552, 835]}},
{"id": "tx68ru", "name": "Northern Ireland", "description": "Northern Ireland is a part of the United Kingdom on the island of Ireland. Northern Ireland has historically been involved in disputes with the neighboring Republic of Ireland, leading some Irish Redditors to attempt to remove this art.", "links": {"website": ["https://en.wikipedia.org/wiki/Northern_Ireland"], "subreddit": ["ukplace", "unitedkingdom"]}, "path": {"133-164, 95-121, T:0-1": [[593, 508], [593, 511], [592, 511], [588, 515], [588, 516], [592, 520], [595, 520], [598, 522], [599, 522], [604, 517], [604, 516], [602, 514], [602, 510], [600, 508]]}, "center": {"133-164, 95-121, T:0-1": [597, 515]}},
{"id": "tx68d3", "name": "MoaiGr", "description": "MoaiGr is a Chilean Streamer and YouTuber", "links": {"website": ["https://www.youtube.com/c/MoaiGr"], "subreddit": ["MoaiGreddit"]}, "path": {"109-165, T:0-1": [[991, 1926], [991, 1949], [1010, 1947], [1010, 1927]]}, "center": {"109-165, T:0-1": [1000, 1937]}},
{"id": "tx684t", "name": "Flag of Alberta", "description": "Alberta is a province in western Canada, established in 1905. It is Canada's fourth largest province and home to six UNESCO world heritage sites.", "links": {"website": ["https://en.wikipedia.org/wiki/Alberta", "https://en.wikipedia.org/wiki/Flag_of_Alberta"], "subreddit": ["alberta", "placecanada", "canada"]}, "path": {"154-161": [[175, 470], [175, 480], [191, 480], [191, 470]], "162-165, T:0-1": [[191, 482], [191, 472], [175, 472], [175, 482]]}, "center": {"154-161": [183, 475], "162-165, T:0-1": [183, 477]}},
@@ -3375,7 +3366,7 @@
{"id": "tx63oo", "name": "Pisa Baptistery", "description": "The Pisa Baptistery of St. John (Italian: Battistero di San Giovanni) is a Roman Catholic ecclesiastical building in Pisa, Italy. Construction started in 1152 to replace an older baptistery, and when it was completed in 1363, it became the second building, in chronological order, in the Piazza dei Miracoli, near the Duomo di Pisa and the cathedral's free-standing campanile, The famous Leaning Tower of Pisa.", "links": {"website": ["https://en.wikipedia.org/wiki/Pisa_Baptistery"], "subreddit": ["italy"]}, "path": {"109-165, T:0-1": [[796, 1034], [797, 1031], [801, 1036], [800, 1039], [804, 1045], [804, 1070], [783, 1071], [782, 1035]]}, "center": {"109-165, T:0-1": [793, 1053]}},
{"id": "tx63kh", "name": "2B butt", "description": "During an incursion into the French-controlled corner. North American Twitch streamers xQc and Mizkif deployed their communities to construct a gigantic tribute to the android booty of 2B from Nier: Automata. During the construction of this effigy, Reddit admins censored the image using a gigantic black box. Not deterred, The community again built the effigy to once again be censored by Reddit admins. During construction many members of both North American communities received 15-year bans on placing pixels. Up to 20 percent of Mizkif's 80,000 live viewers were banned during this attack.", "links": {"website": ["https://en.wikipedia.org/wiki/2B_(Nier:_Automata)"]}, "path": {"109-164, T:0-1": [[185, 1928], [183, 1602], [76, 1600], [75, 1930]]}, "center": {"109-164, T:0-1": [130, 1766]}},
{"id": "tx63fj", "name": "Baby chickens", "description": "Small but important to someone. My wonderful husband doodled these on day 2, and I kept them alive till the end. There were once 5-7 chicks and a mother chicken someone drew alongside them. These chickens, mistaken as ducks by some, initially roamed free until the ACC Alliance came for their land. The survivors were maintained by the ACC Alliance.", "links": {"website": ["https://en.wikipedia.org/wiki/Chicken"]}, "path": {"164": [[1742, 599], [1742, 604], [1744, 606], [1759, 606], [1759, 599], [1755, 599], [1753, 597], [1752, 598], [1749, 598], [1748, 597], [1746, 597], [1746, 599]], "130-132": [[1769, 586], [1767, 588], [1767, 589], [1766, 589], [1766, 591], [1768, 593], [1769, 593], [1771, 591], [1771, 590], [1772, 589], [1771, 588], [1771, 586]], "123-127": [[1754, 596], [1754, 600], [1765, 600], [1765, 591], [1774, 591], [1774, 562], [1763, 562], [1763, 564], [1767, 568], [1768, 568], [1768, 578], [1766, 580], [1763, 588], [1755, 596]], "103-122": [[1754, 596], [1754, 600], [1774, 600], [1774, 562], [1762, 562], [1762, 563], [1767, 568], [1768, 568], [1768, 578], [1766, 580], [1762, 589], [1755, 596]], "67-102": [[1758, 593], [1763, 593], [1764, 594], [1764, 600], [1774, 600], [1774, 598], [1775, 597], [1774, 596], [1774, 566], [1770, 566], [1765, 569], [1765, 582], [1763, 584], [1763, 586], [1758, 591]], "60-66": [[1767, 566], [1765, 568], [1763, 568], [1763, 587], [1762, 587], [1762, 588], [1763, 589], [1763, 594], [1764, 594], [1764, 599], [1777, 599], [1777, 603], [1780, 606], [1781, 605], [1787, 605], [1790, 598], [1790, 594], [1792, 594], [1796, 589], [1796, 584], [1787, 584], [1782, 579], [1774, 579], [1774, 566]], "133-163, T:0-1": [[1745, 592], [1742, 595], [1742, 602], [1741, 602], [1741, 605], [1743, 605], [1743, 606], [1759, 606], [1759, 593], [1758, 593], [1754, 597], [1750, 597]]}, "center": {"164": [1751, 602], "130-132": [1769, 590], "123-127": [1769, 585], "103-122": [1767, 593], "67-102": [1768, 590], "60-66": [1778, 589], "133-163, T:0-1": [1747, 601]}},
-{"id": "tx63bg", "name": "Ninomae Ina'nis", "description": "Ninomae Ina'nis, Vtuber from Hololive", "links": {"website": ["https://www.youtube.com/channel/UCMwGHR0BTZuLsmjY_NT5Pwg"], "subreddit": ["NinomaeInanis", "Hololive"]}, "path": {"109-166, T:0-1": [[1526, 1051], [1537, 1051], [1537, 1063], [1526, 1063]]}, "center": {"109-166, T:0-1": [1532, 1057]}},
+{"id": "tx63bg", "name": "Ninomae Ina'nis", "description": "Ninomae Ina'nis, Vtuber from Hololive", "links": {"website": ["https://www.youtube.com/channel/UCMwGHR0BTZuLsmjY_NT5Pwg"], "subreddit": ["NinomaeInanis", "Hololive"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1526, 1051], [1537, 1051], [1537, 1063], [1526, 1063]]}, "center": {"109-166, T:0-1": [1532, 1057]}},
{"id": "tx6397", "name": "Quebec heart", "description": "A heart depicting the flag of Quebec, where streamer DomCassé is from. Our compatriots, our allies, our province.", "links": {"website": ["https://www.twitch.tv/domcasse"]}, "path": {"109-165, T:0-1": [[889, 1035], [885, 1038], [885, 1042], [893, 1050], [894, 1050], [902, 1042], [902, 1039], [898, 1035], [896, 1035], [894, 1037], [893, 1037], [891, 1035]]}, "center": {"109-165, T:0-1": [893, 1041]}},
{"id": "tx6365", "name": "Pepe Head", "description": "A small pixelated pepe frog head", "links": {"website": ["https://en.wikipedia.org/wiki/Pepe_the_Frog"], "subreddit": ["pepethefrog"]}, "path": {"109-165, T:0-1": [[1114, 1225], [1115, 1225], [1115, 1227], [1116, 1226], [1117, 1225], [1118, 1225], [1118, 1226], [1119, 1226], [1119, 1227], [1118, 1227], [1118, 1228], [1118, 1229], [1117, 1229], [1117, 1230], [1117, 1231], [1116, 1231], [1111, 1231], [1111, 1229], [1112, 1229], [1112, 1227], [1113, 1226], [1114, 1226]]}, "center": {"109-165, T:0-1": [1115, 1228]}},
{"id": "tx633e", "name": "Sly Fest", "description": "Virtual Reality Festival held annually to raise ocean conservation awareness and immerse users in hyper-surreal ways. https://discord.gg/H5QhfhFnn", "links": {"website": ["https://www.slyfest.com/"], "subreddit": ["VRChat"]}, "path": {"109-166, T:0-1": [[180, 1226], [200, 1226], [200, 1246], [180, 1246]]}, "center": {"109-166, T:0-1": [190, 1236]}},
@@ -3416,7 +3407,7 @@
{"id": "tx5v38", "name": "Utah U", "description": "The Block U logo for the University of Utah plus feathers.", "links": {"website": ["https://www.utah.edu/"], "subreddit": ["uofu"]}, "path": {"109-166, T:0-1": [[1563, 1397], [1563, 1416], [1575, 1416], [1575, 1421], [1580, 1421], [1581, 1422], [1582, 1422], [1583, 1421], [1583, 1397]]}, "center": {"109-166, T:0-1": [1574, 1408]}},
{"id": "tx5u7b", "name": "Flag of Costa Rica", "description": "Costa Rica is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "costa_rica"]}, "path": {"109-165, T:0-1": [[1069, 1607], [1069, 1612], [1090, 1612], [1090, 1607]]}, "center": {"109-165, T:0-1": [1080, 1610]}},
{"id": "tx5tiz", "name": "Neema \"Nuchuu\" Dreamer", "description": "A transgender music producer and digital artist who worked with r/transplace to maintain an overlay for r/transplace and all allied factions.", "links": {"website": ["https://twitter.com/Neema_Dreamer"], "subreddit": ["transplace"]}, "path": {"101-165, T:0-1": [[571, 466], [569, 468], [569, 476], [578, 476], [578, 468], [576, 466], [574, 468], [573, 468]]}, "center": {"101-165, T:0-1": [573, 472]}},
-{"id": "tx5tf3", "name": "Hackmud", "description": "Hackmud is a cyberpunk online multiplayer text-based game. It is a puzzle and coding game that simulates hacking in a virtual environment, and is available on Steam.", "links": {"website": ["https://www.hackmud.com/", "https://en.wikipedia.org/wiki/Hackmud"], "subreddit": ["hackmud"]}, "path": {"88-167, T:0-1": [[1730, 116], [1730, 122], [1760, 122], [1760, 114], [1764, 108], [1764, 106], [1763, 106], [1763, 102], [1761, 100], [1749, 100], [1746, 103], [1746, 105], [1744, 107], [1744, 116]]}, "center": {"88-167, T:0-1": [1752, 111]}},
+{"id": "tx5tf3", "name": "Hackmud", "description": "Hackmud is a cyberpunk online multiplayer text-based game. It is a puzzle and coding game that simulates hacking in a virtual environment, and is available on Steam.", "links": {"website": ["https://www.hackmud.com/", "https://en.wikipedia.org/wiki/Hackmud"], "subreddit": ["hackmud"]}, "path": {"74-87": [[1722, 836], [1719, 840], [1719, 842], [1717, 842], [1717, 858], [1745, 858], [1747, 856], [1747, 854], [1745, 852], [1732, 852], [1737, 844], [1736, 843], [1736, 838], [1734, 836], [1745, 836], [1747, 834], [1747, 832], [1745, 830], [1733, 830], [1730, 834], [1730, 836]], "88-167, T:0-1": [[1730, 116], [1730, 122], [1760, 122], [1760, 114], [1764, 108], [1764, 106], [1763, 106], [1763, 102], [1761, 100], [1749, 100], [1746, 103], [1746, 105], [1744, 107], [1744, 116]]}, "center": {"74-87": [1727, 845], "88-167, T:0-1": [1752, 111]}},
{"id": "tx5sxn", "name": "Wolverhampton Wonderers F.C.", "description": "WWFC, known commonly as wolves, are an English football team in the premier league", "links": {"subreddit": ["WWFC"]}, "path": {"109-166, T:0-1": [[607, 1718], [608, 1725], [632, 1725], [632, 1718], [605, 1718], [605, 1724], [608, 1724], [608, 1719]]}, "center": {"109-166, T:0-1": [619, 1721]}},
{"id": "tx5scw", "name": "TotalBiscuit", "description": "This area is dedicated to John Peter Bain, better known as TotalBiscuit, who passed away in 2018. He was an English YouTuber who did video game commentary and criticism. He was known for his role in professional shoutcasting and esports, and also known for his gaming commentary audio work on WCradio.com.\n\nBecause he passed after the first r/place took place, it felt only fitting to memorialize The Cynical Brit on the 2022 event using the LUL Twitch emote which uses his likeness. The memorial started very early in the second and final expansion of r/place's canvas; streamer Asmongold quickly took the opportunity to claim the area with the aid of his viewers. The area included a purple box around the head which fit the shape of the emote. Later people started to add things in the purple such as TotalBiscuit's name in the top-left, The RIP just below it, as well as the top hat. Near the end of the event, before the whiteout, the site was under constant threat of griefing from the void as it moved up along the right, easily taking the hair and making its way across his face. This is all that remains of the memorial site after other communities started making art in the purple area.", "links": {"website": ["https://www.youtube.com/channel/UCy1Ms_5qBTawC-k7PVjHXKQ", "https://en.wikipedia.org/wiki/TotalBiscuit"]}, "path": {"116-158": [[906, 1179], [906, 1202], [930, 1202], [936, 1196], [936, 1190], [988, 1190], [969, 1206], [946, 1241], [937, 1263], [934, 1290], [923, 1302], [922, 1308], [929, 1314], [935, 1338], [947, 1348], [954, 1341], [1041, 1307], [1058, 1289], [1058, 1283], [1068, 1265], [1073, 1232], [1067, 1206], [1043, 1179], [1036, 1176], [1015, 1176], [998, 1187], [998, 1179]], "109-115": [[901, 1176], [901, 1364], [951, 1364], [951, 1339], [1083, 1339], [1083, 1176]], "159-165, T:0-1": [[905, 1176], [994, 1176], [994, 1177], [1000, 1177], [1000, 1179], [1006, 1179], [1006, 1181], [1008, 1183], [1013, 1181], [1016, 1180], [1022, 1180], [1038, 1181], [1052, 1187], [1057, 1194], [1061, 1203], [1059, 1222], [1055, 1243], [1047, 1259], [1039, 1276], [1024, 1293], [1005, 1307], [986, 1315], [961, 1325], [948, 1326], [942, 1321], [928, 1306], [934, 1301], [933, 1297], [938, 1293], [939, 1290], [944, 1287], [946, 1284], [936, 1272], [943, 1266], [938, 1261], [949, 1238], [965, 1217], [966, 1212], [983, 1194], [979, 1192], [978, 1192], [977, 1193], [976, 1193], [974, 1190], [970, 1190], [968, 1192], [965, 1194], [963, 1192], [960, 1192], [958, 1194], [956, 1197], [950, 1199], [945, 1199], [941, 1197], [933, 1197], [929, 1201], [906, 1201], [906, 1184], [905, 1183]]}, "center": {"116-158": [1005, 1257], "109-115": [989, 1258], "159-165, T:0-1": [996, 1254]}},
{"id": "tx5ryl", "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": ["vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"109-165, T:0-1": [[1065, 1598], [1065, 1605], [1090, 1605], [1090, 1598]]}, "center": {"109-165, T:0-1": [1078, 1602]}},
@@ -3474,10 +3465,10 @@
{"id": "tx5ey3", "name": "Hyperdub", "description": "British electronic music record label formed in 2004.", "links": {"website": ["https://hyperdub.net", "https://en.wikipedia.org/wiki/Hyperdub"]}, "path": {"119-165, T:0-1": [[1297, 529], [1297, 533], [1303, 533], [1303, 529]]}, "center": {"119-165, T:0-1": [1300, 531]}},
{"id": "tx5eot", "name": "tud_geekhub", "description": "tud_geekhub is the unofficial student Discord of the computer science department at Technische Universität Darmstadt (TUD; English: Technical University of Darmstadt).\n\nTo the left of the logo, the tud_geekhub community made some new friends, including the \"humble heart\" and cat lamp, birthing a wholesome alliance.", "links": {"website": ["https://tud-geekhub.com/", "https://www.informatik.tu-darmstadt.de/fb20/index.en.jsp", "https://en.wikipedia.org/wiki/Technische_Universit%C3%A4t_Darmstadt"], "discord": ["XZq8H8JqGC"]}, "path": {"61-66": [[1822, 57], [1822, 67], [1848, 67], [1848, 57]], "56-60": [[1827, 53], [1827, 61], [1848, 61], [1848, 53]], "9-26": [[0, 157], [0, 166], [27, 166], [27, 157]], "43-49": [[705, 829], [701, 833], [705, 837], [723, 837], [727, 833], [723, 829]], "67-166, T:0-1": [[1817, 57], [1817, 67], [1844, 67], [1844, 57]]}, "center": {"61-66": [1835, 62], "56-60": [1838, 57], "9-26": [14, 162], "43-49": [714, 833], "67-166, T:0-1": [1831, 62]}},
{"id": "tx5emh", "name": "Among Us crewmates", "description": "Two Among Us crewmates built in conjunction with the surrounding builds. Many deals/defense agreements were made to protect the surrounding Kirby, Turtle, and penguins. thanks for the support! o7", "links": {"subreddit": ["pingd"]}, "path": {"109-166, T:0-1": [[472, 1493], [472, 1487], [482, 1487], [482, 1493]]}, "center": {"109-166, T:0-1": [477, 1490]}},
-{"id": "tx5ejc", "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.\n\nThis flag was made by r/ArgPixelArt, Argentine redditors, and our allies!", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["ArgPixelArt", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"109-165, T:0-1": [[1533, 1819], [1773, 1819], [1774, 1917], [1532, 1916]]}, "center": {"109-165, T:0-1": [1653, 1868]}},
+{"id": "tx5ejc", "name": "Flag of Argentina", "description": "Argentina, officially the Argentine Republic, is a country in the southern part of South America.\n\nThis flag was made by r/ArgPixelArt, Argentine redditors, and our allies!", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"], "subreddit": ["ArgPixelArt", "argentina", "Republica_Argentina"]}, "path": {"109-165, T:0-1": [[1533, 1819], [1773, 1819], [1774, 1917], [1532, 1916]]}, "center": {"109-165, T:0-1": [1653, 1868]}},
{"id": "tx5eb7", "name": "Chivito", "description": "Chivito is Uruguay's national dish. It is a sandwich with thin slices of beefsteak and lots of toppings.", "links": {"website": ["https://en.wikipedia.org/wiki/Chivito_(sandwich)"], "subreddit": ["uruguay"]}, "path": {"75-166, T:0-1": [[1142, 672], [1139, 674], [1136, 678], [1136, 680], [1140, 684], [1150, 684], [1154, 680], [1154, 678], [1151, 674], [1148, 672], [1146, 672], [1147, 670], [1145, 668], [1143, 670], [1144, 672]]}, "center": {"75-166, T:0-1": [1146, 678]}},
{"id": "tx5e8d", "name": "Sound Space", "description": "A small, 3D scrolling rhythm game on Roblox.", "links": {"website": ["https://www.roblox.com/games/2677609345/"], "subreddit": ["Soundspace"]}, "path": {"109-166, T:0-1": [[1793, 1255], [1793, 1257], [1792, 1257], [1792, 1258], [1791, 1258], [1791, 1272], [1792, 1272], [1792, 1273], [1794, 1273], [1794, 1274], [1801, 1274], [1801, 1275], [1808, 1275], [1808, 1274], [1809, 1273], [1810, 1273], [1810, 1272], [1812, 1272], [1812, 1258], [1811, 1258], [1811, 1256], [1809, 1256], [1809, 1255]]}, "center": {"109-166, T:0-1": [1802, 1265]}},
-{"id": "tx5e6o", "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", "Republica_Argentina", "dankargentina"]}, "path": {"109-165, T:0-1": [[1062, 1579], [1062, 1588], [1090, 1588], [1090, 1579]]}, "center": {"109-165, T:0-1": [1076, 1584]}},
+{"id": "tx5e6o", "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", "Republica_Argentina"]}, "path": {"109-165, T:0-1": [[1062, 1579], [1062, 1588], [1090, 1588], [1090, 1579]]}, "center": {"109-165, T:0-1": [1076, 1584]}},
{"id": "tx5e34", "name": "Welsknight", "description": "Welsknight is a YouTuber & Twitch streamer who plays on Hermitcraft. he also posts videos of Pixelmon and the Binding of Isaac.", "links": {"website": ["https://www.youtube.com/c/welsknightgaming", "https://hermitcraft.fandom.com/wiki/Welsknight"], "subreddit": ["HermitCraft"]}, "path": {"19-165, T:0-1": [[878, 615], [878, 623], [887, 623], [887, 615]]}, "center": {"19-165, T:0-1": [883, 619]}},
{"id": "tx5dw4", "name": "FlashStash98", "description": "The 'A' represents the first letter of Reddit user FlashStash98's real name. Originally placed by itself, Twitch streamer Aurateur used the 'A' when spelling out his name, and the 'A' was changed to a different shade of red to distinguish it. Had to be moved many times for other designs, and had to be fixed from being turned into an Among Us plenty as well.", "links": {"website": ["https://www.reddit.com/user/FlashStash98"]}, "path": {"109-165, T:0-1": [[1960, 1548], [1964, 1548], [1964, 1553], [1960, 1553]]}, "center": {"109-165, T:0-1": [1962, 1551]}},
{"id": "tx5dro", "name": "ENTPE", "description": "A French engineering school", "links": {}, "path": {"109-165, T:0-1": [[1276, 1221], [1276, 1227], [1285, 1227], [1285, 1221]]}, "center": {"109-165, T:0-1": [1281, 1224]}},
@@ -3552,7 +3543,7 @@
{"id": "tx4tan", "name": "ARK: Survival Evolved", "description": "Ark: Survival Evolved (stylized as ARK) is a 2017 action-adventure survival video game developed by Studio Wildcard. In the game, players must survive being stranded on one of several maps filled with roaming dinosaurs, fictional fantasy monsters and other prehistoric animals, natural hazards, and potentially hostile human players.", "links": {"website": ["https://survivetheark.com", "https://en.wikipedia.org/wiki/Ark:_Survival_Evolved"], "subreddit": ["ARK"]}, "path": {"146-158": [[1904, 1247], [1904, 1227], [1884, 1227], [1884, 1228], [1883, 1228], [1883, 1247]], "134-138": [[1879, 623], [1870, 635], [1870, 636], [1872, 638], [1877, 638], [1879, 636], [1879, 635], [1881, 635], [1881, 636], [1883, 638], [1888, 638], [1890, 636], [1890, 635], [1881, 623]], "81-86": [[287, 790], [282, 799], [282, 802], [288, 802], [288, 799], [291, 799], [293, 801], [298, 801], [298, 799], [291, 790]], "159-166, T:0-1": [[1883, 1250], [1904, 1250], [1904, 1227], [1884, 1227], [1884, 1228], [1883, 1228]]}, "center": {"146-158": [1894, 1237], "134-138": [1880, 630], "81-86": [289, 795], "159-166, T:0-1": [1894, 1239]}},
{"id": "tx4sy5", "name": "Comedy Club Sofia", "description": "Bulgarian based comedy club", "links": {"website": ["https://comedy.bg"]}, "path": {"56-166, T:0-1": [[1998, 869], [1998, 879], [1987, 879], [1987, 869]]}, "center": {"56-166, T:0-1": [1993, 874]}},
{"id": "tx4stg", "name": "Lelouch vi Britannia's Geass", "description": "Lelouch's eye containing his Power of Absolute Obedience Geass from the anime Code Geass.", "links": {"website": ["https://codegeass.fandom.com/wiki/Geass#Lelouch_vi_Britannia.27s_Geass"], "subreddit": ["CodeGeass"]}, "path": {"109-166, T:0-1": [[1229, 1881], [1233, 1881], [1233, 1882], [1235, 1882], [1235, 1884], [1236, 1884], [1236, 1888], [1235, 1888], [1235, 1890], [1233, 1890], [1233, 1891], [1229, 1891], [1229, 1890], [1227, 1890], [1227, 1888], [1226, 1888], [1226, 1884], [1227, 1884], [1227, 1882], [1229, 1882]]}, "center": {"109-166, T:0-1": [1231, 1886]}},
-{"id": "tx4slo", "name": "Claire", "description": "The protagonist of the beautiful game A Short Hike.", "links": {"website": ["https://ashorthike.com/"], "subreddit": ["aShortHike"]}, "path": {"56-165, T:0-1": [[1006, 875], [1008, 875], [1008, 876], [1009, 876], [1009, 877], [1010, 877], [1010, 878], [1012, 878], [1012, 879], [1013, 879], [1012, 879], [1012, 880], [1011, 880], [1010, 880], [1010, 881], [1009, 881], [1009, 882], [1009, 883], [1010, 883], [1010, 884], [1011, 884], [1012, 884], [1012, 883], [1012, 884], [1013, 884], [1013, 885], [1006, 885], [1006, 884], [1005, 884], [1005, 883], [1004, 883], [1005, 883], [1005, 882], [1005, 881], [1004, 881], [1004, 880], [1003, 880], [1003, 878], [1004, 878], [1004, 877], [1005, 877], [1005, 876], [1006, 876]]}, "center": {"56-165, T:0-1": [1008, 880]}},
+{"id": "tx4slo", "name": "Claire", "description": "The protagonist of the beautiful game A Short Hike.", "links": {"website": ["https://ashorthike.fandom.com/wiki/Characters#Claire", "https://ashorthike.com/", "https://en.wikipedia.org/wiki/A_Short_Hike"], "subreddit": ["aShortHike"]}, "path": {"75-165, T:0-1": [[1006, 874], [1002, 878], [1002, 880], [1005, 883], [1005, 886], [1014, 886], [1014, 884], [1012, 882], [1012, 881], [1013, 881], [1015, 879], [1013, 877], [1011, 877], [1008, 874]]}, "center": {"75-165, T:0-1": [1008, 880]}},
{"id": "tx4s8o", "name": "W", "description": "a W for u/Will_McBride_", "links": {"website": ["https://www.reddit.com/user/Will_McBride_"]}, "path": {"109-165, T:0-1": [[475, 1493], [482, 1493], [482, 1494], [483, 1494], [483, 1497], [483, 1499], [475, 1499]]}, "center": {"109-165, T:0-1": [479, 1496]}},
{"id": "tx4s6b", "name": "Amano Pikamee", "description": "A small depiction of Pikamee, a VTuber from the VOMS VTuber group. Known for her kettle laugh.", "links": {"website": ["https://www.youtube.com/c/天野ピカミィPikamee"], "subreddit": ["VOMS"]}, "path": {"109-166, T:0-1": [[1474, 1064], [1474, 1074], [1484, 1074], [1484, 1064]]}, "center": {"109-166, T:0-1": [1479, 1069]}},
{"id": "tx4rxs", "name": "St. Louis Cardinals Logo", "description": "The St. Louis Cardinals are a baseball team based in St. Louis, Missouri. The Numbers on the Left and bottom are tributes; Adam Wainwright, Yadier Molina and Albert Pujols for their last season with the Cardinals.", "links": {"website": ["https://www.mlb.com/cardinals"], "subreddit": ["Cardinals"]}, "path": {"109-166, T:0-1": [[1574, 1037], [1590, 1037], [1590, 1058], [1581, 1057], [1581, 1052], [1574, 1052], [1574, 1042]]}, "center": {"109-166, T:0-1": [1583, 1046]}},
@@ -3565,7 +3556,7 @@
{"id": "tx4on4", "name": "Safemoon", "description": "A human-focused technology and innovation business expanding blockchain technologies for a brighter tomorrow.", "links": {"website": ["https://safemoon.com/"], "subreddit": ["SafeMoon"]}, "path": {"109-166, T:0-1": [[342, 1222], [408, 1222], [408, 1265], [378, 1265], [368, 1256], [364, 1254], [358, 1256], [342, 1265], [342, 1250], [342, 1222], [408, 1221]]}, "center": {"109-166, T:0-1": [376, 1242]}},
{"id": "tx4od6", "name": "p-p", "description": "An emoji that is supposed to be a crying face", "links": {}, "path": {"109-166, T:0-1": [[833, 1608], [844, 1608], [844, 1614], [833, 1614]]}, "center": {"109-166, T:0-1": [839, 1611]}},
{"id": "tx4nhv", "name": "SimRC", "description": "SimRC is a German SimRacing community in the F1 games, IRacing and Assetto Corsa Competizione.", "links": {"website": ["https://simrc.de/forum/"]}, "path": {"109-166, T:0-1": [[1704, 1675], [1714, 1675], [1714, 1681], [1704, 1681]]}, "center": {"109-166, T:0-1": [1709, 1678]}},
-{"id": "tx4mog", "name": "WJSN Logo", "description": "WJSN (우주소녀; Uju Sonyeo; 宇宙少女), also known as Cosmic Girls, is a South Korean-Chinese girl group formed by Starship Entertainment and Yuehua Entertainment on February 25, 2016", "links": {}, "path": {"56-166, T:0-1": [[1512, 878], [1513, 870], [1523, 870], [1523, 878]]}, "center": {"56-166, T:0-1": [1518, 874]}},
+{"id": "tx4mog", "name": "WJSN", "description": "WJSN (우주소녀; Uju Sonyeo; 宇宙少女), also known as Cosmic Girls, is a South Korean-Chinese girl group formed by Starship Entertainment and Yuehua Entertainment on February 25, 2016.", "links": {"website": ["http://starship-ent.com/profile/musician/wjsn.php", "https://en.wikipedia.org/wiki/WJSN"], "subreddit": ["kpop"]}, "path": {"64-166, T:0-1": [[1512, 869], [1512, 879], [1524, 879], [1524, 869]]}, "center": {"64-166, T:0-1": [1518, 874]}},
{"id": "tx4mkb", "name": "Pop!_OS", "description": "Pop!_OS is an Ubuntu-based Linux distribution with a modern look. It was created by System76 for use with their hardware, but became a popular choice outside of that.", "links": {"website": ["https://pop.system76.com/", "https://en.wikipedia.org/wiki/Pop!_OS"], "subreddit": ["placetux"]}, "path": {"75-79": [[21, 733], [21, 741], [23, 741], [23, 740], [27, 740], [27, 734], [25, 734], [25, 733]], "95-165, T:0-1": [[21, 733], [27, 733], [27, 739], [21, 739]]}, "center": {"75-79": [24, 737], "95-165, T:0-1": [24, 736]}},
{"id": "tx4mf6", "name": "Reindeer antlers", "description": "Reindeer husbandry has been and still is an important aspect of Sámi culture. Traditionally the Sámi lived and worked in reindeer-herding groups which consist of several families and their herds.", "links": {"website": ["https://en.wikipedia.org/wiki/Reindeer_herding"], "subreddit": ["place_nordicunion", "SaamiPeople"]}, "path": {"20-99": [[481, 35], [476, 37], [475, 45], [475, 50], [483, 58], [492, 62], [499, 62], [509, 56], [518, 44], [518, 42], [513, 35], [509, 35], [499, 42], [492, 42], [491, 35]], "100-166, T:0-1": [[476, 38], [477, 52], [491, 62], [500, 62], [514, 53], [516, 39], [496, 50], [495, 50]]}, "center": {"20-99": [495, 52], "100-166, T:0-1": [498, 56]}},
{"id": "tx4leh", "name": "Gold Bunny", "description": "The Gold Bunny is a harmless Critter in the game Terraria. It is a recolor of an ordinary Bunny, with a 1/400 chance of spawning in place of the ordinary version. As with all other gold critters, it can be caught with a Bug Net and sold for 10 gold.", "links": {"website": ["https://terraria.fandom.com/wiki/Gold_Bunny"], "subreddit": ["Terraria"]}, "path": {"110-165, T:0-1": [[416, 13], [414, 13], [412, 9], [412, 6], [415, 1], [417, 1], [418, 5], [421, 6], [425, 8], [425, 10], [424, 13]]}, "center": {"110-165, T:0-1": [417, 9]}},
@@ -3579,12 +3570,12 @@
{"id": "tx4jvh", "name": "Los Angeles Kings", "description": "The Kings are a professional Ice Hockey team based out of Los Angeles. The Kings are apart of of the NHL, and play in the Pacific Divison.", "links": {"website": ["https://www.nhl.com/kings"], "subreddit": ["losangeleskings"]}, "path": {"109-166, T:0-1": [[327, 1251], [325, 1251], [325, 1248], [322, 1247], [319, 1248], [317, 1251], [317, 1260], [321, 1264], [323, 1264], [327, 1260]]}, "center": {"109-166, T:0-1": [322, 1255]}},
{"id": "tx4juz", "name": "TH Aschaffenburg", "description": "The Technical University of Aschaffenburg is a university of applied sciences in Aschaffenburg, Bavaria, which was founded in 1995.", "links": {"website": ["https://th-ab.de"]}, "path": {"109-165, T:0-1": [[969, 1171], [988, 1171], [988, 1175], [969, 1175]]}, "center": {"109-165, T:0-1": [979, 1173]}},
{"id": "tx4jt8", "name": "The Gateway Arch", "description": "The Gateway Arch is a 630-foot tall monument in St. Louis, Missouri, United States. Clad in stainless steel and built in the form of a weighted catenary arch, it is the world's tallest arch. The Gateway Arch reflects St. Louis's role in the westward expansion of the United States during the nineteenth century.", "links": {"website": ["https://www.gatewayarch.com/"], "subreddit": ["AmericanFlagInPlace", "AmericanFlagPlace", "MURICA"]}, "path": {"109-165, T:0-1": [[1829, 1867], [1830, 1860], [1831, 1856], [1831, 1855], [1832, 1853], [1833, 1850], [1835, 1848], [1837, 1845], [1841, 1843], [1844, 1842], [1847, 1843], [1848, 1846], [1850, 1847], [1852, 1851], [1854, 1854], [1855, 1858], [1857, 1862], [1857, 1867], [1849, 1867], [1849, 1861], [1848, 1858], [1846, 1854], [1845, 1850], [1843, 1849], [1841, 1850], [1838, 1855], [1837, 1859], [1836, 1861], [1836, 1864], [1836, 1867]]}, "center": {"109-165, T:0-1": [1843, 1855]}},
-{"id": "tx4jgr", "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", "Republica_Argentina", "dankargentina"]}, "path": {"109-166, T:0-1": [[1769, 1111], [1769, 1121], [1789, 1121], [1789, 1111]]}, "center": {"109-166, T:0-1": [1779, 1116]}},
+{"id": "tx4jgr", "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", "Republica_Argentina"]}, "path": {"109-166, T:0-1": [[1769, 1111], [1769, 1121], [1789, 1121], [1789, 1111]]}, "center": {"109-166, T:0-1": [1779, 1116]}},
{"id": "tx4j5f", "name": "Sonic and Knuckles", "description": "This Sonic and Knuckles art represents the love between the Colombian YouTuber Tijex and her boyfriend.", "links": {}, "path": {"109-166, T:0-1": [[282, 1226], [297, 1226], [297, 1238], [282, 1238]]}, "center": {"109-166, T:0-1": [290, 1232]}},
{"id": "tx4iy9", "name": "LIEP International Highschool", "description": "A famous International Highschool located in France , near Paris. The French and American flags are depicted just below the Acronym, standing for Lycée International de l'Est Parisien", "links": {"website": ["https://liep.fr/"]}, "path": {"109-165, T:0-1": [[760, 1722], [777, 1722], [777, 1711], [760, 1711]]}, "center": {"109-165, T:0-1": [769, 1717]}},
-{"id": "tx4isr", "name": "Hololive-NIJISANJI heart", "description": "A heart with the colors of the logos for VTuber agencies Hololive and NIJISANJI.", "links": {"website": ["https://www.hololive.tv/", "https://www.nijisanji.jp/"], "subreddit": ["Hololive", "Nijisanji"]}, "path": {"26-166, T:0-1": [[193, 715], [191, 717], [191, 719], [196, 724], [201, 719], [201, 717], [199, 715]]}, "center": {"26-166, T:0-1": [196, 719]}},
+{"id": "tx4isr", "name": "Hololive-NIJISANJI heart", "description": "A heart with the colors of the logos for VTuber agencies Hololive and NIJISANJI.", "links": {"website": ["https://www.hololive.tv/", "https://www.nijisanji.jp/"], "subreddit": ["Hololive", "Nijisanji"], "discord": ["holofans"]}, "path": {"26-166, T:0-1": [[193, 715], [191, 717], [191, 719], [196, 724], [201, 719], [201, 717], [199, 715]]}, "center": {"26-166, T:0-1": [196, 719]}},
{"id": "tx4ipd", "name": "ゴ", "description": "ゴ is Japanese katakana for the syllable \"go\", and is Japanese onomatopoeia that translates to the word \"menacing\". It is used in the manga and anime JoJo's Bizarre Adventure to present danger or tensions in a scene, and has become an internet meme.", "links": {"website": ["https://knowyourmeme.com/memes/menacing-%E3%82%B4%E3%82%B4%E3%82%B4%E3%82%B4"], "subreddit": ["ShitPostCrusaders", "StardustCrusaders", "wholesomejojo"]}, "path": {"124-143, 148-166, T:0-1": [[67, 901], [64, 904], [64, 905], [62, 907], [62, 908], [61, 909], [61, 917], [63, 919], [65, 919], [66, 918], [69, 918], [70, 917], [72, 917], [72, 919], [71, 920], [71, 921], [70, 921], [67, 924], [67, 927], [69, 929], [72, 929], [75, 926], [75, 924], [76, 923], [76, 922], [78, 920], [76, 918], [72, 918], [72, 917], [75, 914], [75, 908], [76, 907], [76, 905], [78, 903], [78, 901], [79, 900], [78, 899], [75, 899], [74, 898], [74, 897], [127, 897], [126, 898], [124, 900], [122, 901], [120, 903], [121, 906], [120, 907], [121, 908], [122, 909], [124, 909], [125, 910], [127, 909], [126, 908], [128, 907], [128, 903], [129, 903], [130, 902], [130, 900], [129, 899], [128, 899], [127, 897], [74, 897], [71, 900], [70, 902], [71, 903], [69, 904]]}, "center": {"124-143, 148-166, T:0-1": [68, 911]}},
-{"id": "tx4igv", "name": "Brave Girls", "description": "Brave Girls is a South Korean girl group, currently consisting of members Minyoung, Yujeong, Eunji and Yuna. Their 2017 song Rollin' unexpectedly went viral in 2021, leading to a massive chart resurgence and propelling them to household names. As of April 2022 they are on the reality competition show Queendom 2, where six rising female acts compete to determine the real queen.", "links": {"website": ["https://www.youtube.com/playlist?list=PLW6Zv3RcLxTDhF1TqJ50lpgshE3P6ojLL"], "subreddit": ["bravegirls"]}, "path": {"56-166, T:0-1": [[1680, 879], [1697, 879], [1697, 891], [1680, 891]]}, "center": {"56-166, T:0-1": [1689, 885]}},
+{"id": "tx4igv", "name": "Brave Girls", "description": "Brave Girls is a South Korean girl group, currently consisting of members Minyoung, Yujeong, Eunji, and Yuna. Their 2017 song Rollin' unexpectedly went viral in 2021, leading to a massive chart resurgence and propelling them to household names. As of April 2022, they are on the reality competition show Queendom 2, where six rising female acts compete to determine the real queen.", "links": {"website": ["http://www.bravesound.com/bbs/content.php?co_id=brave_girls", "https://www.youtube.com/playlist?list=PLW6Zv3RcLxTDhF1TqJ50lpgshE3P6ojLL", "https://en.wikipedia.org/wiki/BB_Girls"], "subreddit": ["bravegirls", "kpop"]}, "path": {"132-166, T:0-1": [[1680, 879], [1697, 879], [1697, 891], [1680, 891]]}, "center": {"132-166, T:0-1": [1689, 885]}},
{"id": "tx4idf", "name": "Tour de France", "description": "The Tour de France is an annual men multiple-stage bicycle race primarily held in France, while also occasionally passing through nearby countries. It consists of 21 stages, each a day long, over the course of 23 days.", "links": {"website": ["https://en.wikipedia.org/wiki/Tour_de_France"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-164, T:0-1": [[0, 1968], [249, 1968], [247, 1961], [198, 1961], [194, 1964], [178, 1964], [177, 1960], [175, 1960], [173, 1964], [149, 1963], [149, 1958], [69, 1957], [1, 1955], [0, 1969], [11, 1971]]}, "center": {"109-164, T:0-1": [105, 1963]}},
{"id": "tx4i99", "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": {"109-166, T:0-1": [[1769, 1064], [1769, 1099], [1789, 1099], [1789, 1064]]}, "center": {"109-166, T:0-1": [1779, 1082]}},
{"id": "tx4geb", "name": "Pena Palace", "description": "The National Pena Palace (Portuguese: Palácio da Pena) is a palace located in Sintra, Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Pena_Palace"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"65-92": [[936, 322], [933, 325], [930, 330], [930, 342], [928, 342], [928, 338], [924, 334], [923, 334], [923, 340], [922, 341], [922, 360], [995, 360], [992, 354], [992, 345], [989, 342], [987, 342], [987, 331], [986, 331], [986, 330], [980, 330], [980, 329], [975, 329], [974, 327], [973, 323], [973, 320], [972, 320], [967, 324], [967, 331], [966, 332], [966, 334], [959, 334], [958, 333], [953, 333], [951, 335], [951, 336], [946, 336], [945, 335], [945, 330], [938, 322]], "93-166, T:0-1": [[923, 328], [923, 337], [922, 337], [922, 356], [919, 359], [919, 360], [996, 360], [996, 358], [991, 353], [991, 351], [992, 351], [992, 346], [990, 343], [987, 341], [987, 331], [990, 331], [990, 325], [986, 325], [986, 324], [984, 324], [984, 323], [980, 323], [980, 322], [977, 322], [977, 319], [973, 319], [973, 318], [971, 318], [971, 323], [967, 323], [967, 330], [966, 330], [966, 334], [959, 334], [958, 333], [953, 333], [951, 335], [945, 335], [945, 330], [944, 329], [944, 327], [942, 325], [942, 317], [938, 317], [938, 316], [936, 316], [936, 323], [931, 327], [931, 329], [925, 329], [925, 328]]}, "center": {"65-92": [974, 346], "93-166, T:0-1": [974, 346]}},
@@ -3600,13 +3591,13 @@
{"id": "tx4brg", "name": "Mayichi", "description": "Mayichi is a Spanish Twitch streamer. This art depicts Mayichi's skin from the game Minecraft. She has many nicknames, including Marichuy Mayitek, Abuelichi, Brujichi, Mashichi, Machichi, Mayoxxiz, Marruchi, Mayicho, etc. She also owes 20€ of polen to the streamer IlloJuan.\n\nThis art was drawn by Mayichi's community. She said that she wanted it, and we just built it. YOUR WORDS ARE ORDERS MY QUEEN. 😺💜", "links": {"website": ["https://www.twitch.tv/mayichi"]}, "path": {"114-121": [[1578, 637], [1587, 637], [1587, 636], [1600, 636], [1600, 659], [1578, 659]], "80-101": [[1577, 660], [1577, 636], [1601, 636], [1601, 660]], "102-112": [[1600, 659], [1577, 659], [1577, 637], [1587, 637], [1587, 636], [1600, 636]], "122-166, T:0-1": [[1578, 637], [1587, 637], [1587, 636], [1600, 636], [1600, 658], [1578, 658]]}, "center": {"114-121": [1589, 648], "80-101": [1589, 648], "102-112": [1589, 648], "122-166, T:0-1": [1589, 647]}},
{"id": "tx4bi4", "name": "Unturned", "description": "Unturned is a free-to-play, open-world, zombie survival sandbox game. It is developed solely by Canadian indie developer Nelson Sexton of Smartly Dressed Games. Unturned first became available on Steam in 2014 under Early Access, and fully released in 2017. It has since received a steady stream of updates and content, and remains one of the most successful free-to-play titles in the platform's history.", "links": {"website": ["https://store.steampowered.com/app/304930/Unturned/", "https://en.wikipedia.org/wiki/Unturned"], "subreddit": ["unturned"]}, "path": {"117-122, 57-62, 90-98": [[661, 557], [678, 557], [678, 591], [661, 591]], "130-165, 99-116, T:0-1": [[648, 587], [661, 587], [661, 557], [678, 557], [678, 591], [648, 591]]}, "center": {"117-122, 57-62, 90-98": [670, 574], "130-165, 99-116, T:0-1": [669, 574]}},
{"id": "tx4az6", "name": "Aldi Gaming", "description": "A gaming and streaming service by popular German discounter Aldi Nord and Süd.", "links": {"website": ["https://aldi.gg/"], "subreddit": ["placestart"]}, "path": {"109-166, T:0-1": [[540, 1973], [540, 1996], [569, 1996], [567, 1974], [555, 1974]]}, "center": {"109-166, T:0-1": [554, 1985]}},
-{"id": "tx4arp", "name": "MarineAhoy", "description": "Houshou Marine, member of the 3rd Generation of Hololive's Japan branch. Her greetings always start with an \"Ahoy!\", hence why this specific depiction is of a Discord fan emote called :MarineAhoy:, popular within the Hololive Fan Server and Marine's own fan server. Also the logo of the infamous sub-group Holopirates, known to distribute Hololive-related content.\n\nArtwork source: https://twitter.com/tottori_saq/status/1194089413401284609", "links": {"website": ["https://en.hololive.tv/portfolio/items/houshou-marine"], "subreddit": ["Hololive"]}, "path": {"109-165, T:0-1": [[1380, 1044], [1400, 1044], [1400, 1063], [1380, 1063]]}, "center": {"109-165, T:0-1": [1390, 1054]}},
+{"id": "tx4arp", "name": "MarineAhoy", "description": "Houshou Marine, member of the 3rd Generation of Hololive's Japan branch. Her greetings always start with an \"Ahoy!\", hence why this specific depiction is of a Discord fan emote called :MarineAhoy:, popular within the Hololive Fan Server and Marine's own fan server. Also the logo of the infamous sub-group Holopirates, known to distribute Hololive-related content.\n\nArtwork source: https://twitter.com/tottori_saq/status/1194089413401284609", "links": {"website": ["https://en.hololive.tv/portfolio/items/houshou-marine"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1380, 1044], [1400, 1044], [1400, 1063], [1380, 1063]]}, "center": {"109-165, T:0-1": [1390, 1054]}},
{"id": "tx4am1", "name": "DP", "description": "Our college course :)", "links": {}, "path": {"109-166, T:0-1": [[1057, 1790], [1057, 1800], [1072, 1800], [1072, 1790]]}, "center": {"109-166, T:0-1": [1065, 1795]}},
{"id": "tx4aa2", "name": "Flag 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.\n\nThis Austro-Hungarian flag was created jointly by r/Austria, r/hungary, and r/austriahungary, which tore down the border and proposed the project.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria-Hungary", "https://en.wikipedia.org/wiki/Flags_of_Austria-Hungary"], "subreddit": ["austriahungary", "Austria", "hungary"]}, "path": {"59-166, T:0-1": [[1148, 252], [1148, 281], [1193, 281], [1193, 252]]}, "center": {"59-166, T:0-1": [1171, 267]}},
{"id": "tx4a0u", "name": "Inserter", "description": "An inserter is a machine from the game Factorio.", "links": {"website": ["https://wiki.factorio.com/Inserter"], "subreddit": ["factorio"], "discord": ["factorio"]}, "path": {"95": [[1572, 553], [1572, 557], [1575, 560], [1576, 560], [1579, 557], [1579, 555], [1576, 552], [1575, 552], [1574, 553]], "96-159, T:0-1": [[1565, 562], [1565, 559], [1566, 559], [1566, 556], [1569, 553], [1570, 553], [1573, 556], [1573, 559], [1574, 559], [1574, 562], [1571, 562], [1571, 563], [1573, 564], [1573, 565], [1572, 566], [1571, 565], [1568, 565], [1567, 566], [1566, 565], [1566, 564], [1568, 563], [1568, 562]]}, "center": {"95": [1576, 556], "96-159, T:0-1": [1570, 558]}},
{"id": "tx49uu", "name": "Lancer", "description": "Lancer is one of the antagonists of Chapter 1 of Toby Fox's game Deltarune.", "links": {"website": ["https://deltarune.fandom.com/wiki/Lancer"], "subreddit": ["Deltarune"]}, "path": {"23-91": [[980, 166], [972, 175], [972, 182], [967, 182], [965, 184], [965, 185], [968, 185], [968, 186], [970, 188], [973, 188], [973, 196], [970, 199], [973, 199], [974, 200], [975, 200], [979, 195], [982, 195], [987, 199], [992, 199], [992, 198], [989, 195], [989, 194], [992, 194], [994, 192], [994, 190], [989, 184], [989, 176]], "126-166, T:0-1": [[1507, 1536], [1498, 1545], [1498, 1567], [1522, 1567], [1522, 1558], [1516, 1553], [1517, 1545]]}, "center": {"23-91": [981, 180], "126-166, T:0-1": [1508, 1558]}},
{"id": "tx49f5", "name": "Plan P", "description": "Plan P was originally an effort to help save YouTuber PewDiePie's subscriber count in his war against the Indian record label T-Series in 2019 to be the most-subscribed YouTube channel. It developed a community, who later made this art.", "links": {"website": ["https://en.wikipedia.org/wiki/PewDiePie_vs_T-Series"], "subreddit": ["PlanP"], "discord": ["planp"]}, "path": {"133-166, T:0-1": [[1343, 446], [1343, 457], [1364, 457], [1364, 446]]}, "center": {"133-166, T:0-1": [1354, 452]}},
-{"id": "tx49cv", "name": "Ho-kago Tea Time", "description": "The logo for the fictional band Ho-kago Tea Time in the anime series K-on!", "links": {"subreddit": ["k_on"]}, "path": {"56-166, T:0-1": [[1491, 898], [1491, 912], [1508, 912], [1508, 898], [1491, 898], [1491, 912]]}, "center": {"56-166, T:0-1": [1500, 905]}},
+{"id": "tx49cv", "name": "Ho-kago Tea Time", "description": "Ho-kago Tea Time (HTT) is a fictional band in the anime series K-on!", "links": {"website": ["https://k-on.fandom.com/wiki/Ho-kago_Tea_Time"], "subreddit": ["k_on"]}, "path": {"158-166, T:0-1": [[1491, 897], [1491, 912], [1507, 912], [1507, 897]]}, "center": {"158-166, T:0-1": [1499, 905]}},
{"id": "tx48mx", "name": "Overgamers", "description": "Little group of friends trying to have a corner in the history of internet.\nJorge, Elias, Nico y Santi <3", "links": {}, "path": {"134-164, T:0-1": [[72, 982], [93, 982], [93, 992], [72, 992]]}, "center": {"134-164, T:0-1": [83, 987]}},
{"id": "tx48d4", "name": "Nether portals", "description": "A Nether portal is a manufactured structure that acts as a gateway between the Overworld and the Nether dimensions in the game Minecraft.\n\nThis pair of Nether portals allows for the GME stock price line to pass the Hermitcraft logo without interference.", "links": {"website": ["https://minecraft.fandom.com/wiki/Nether_portal"], "subreddit": ["Minecraft", "HermitCraft", "Superstonk"]}, "path": {"129-166, 90-126, T:0-1": [[905, 579], [905, 597], [910, 597], [910, 591], [905, 591], [905, 584], [910, 584], [910, 579]]}, "center": {"129-166, 90-126, T:0-1": [908, 582]}},
{"id": "tx47p4", "name": "SpleefLeague", "description": "SpleefLeague is a server for the game Minecraft mainly dedicated to the minigame Spleef. Spleef is a competitive minigame where the objective is to dig holes under other players to make them fall before they can do the same to you. The diamond shovel above is the most important tool used for Spleef.", "links": {"website": ["https://spleefleague.com/"]}, "path": {"119-151": [[1730, 355], [1730, 360], [1732, 362], [1739, 362], [1739, 361], [1737, 359], [1737, 355]], "152-166, T:0-1": [[1731, 354], [1731, 360], [1738, 360], [1738, 354]]}, "center": {"119-151": [1734, 359], "152-166, T:0-1": [1735, 357]}},
@@ -3617,7 +3608,7 @@
{"id": "tx465v", "name": "Car Mouth Kirby", "description": "One of Kirby's Mouthful Mode transformations from Kirby and the Forgotten Land. A guy who tried to build Kirby got griefed multiple times, until he got in touch with alt:V Multiplayer for GTA V. They protected 'Karby' and built a street for him.", "links": {"website": ["https://www.reddit.com/r/place/comments/tx3igh/the_rplace_kirby_car_saga/"], "subreddit": ["altv"]}, "path": {"109-166, T:0-1": [[507, 1414], [525, 1414], [524, 1423], [524, 1424], [510, 1423], [507, 1424]]}, "center": {"109-166, T:0-1": [516, 1419]}},
{"id": "tx4614", "name": "A-SOUL emotes", "description": "A collection of emotes for the members of Chinese VTuber group A-SOUL.", "links": {"website": ["https://space.bilibili.com/703007996"], "subreddit": ["ASOUL"]}, "path": {"109-165, T:0-1": [[1179, 1280], [1179, 1301], [1280, 1300], [1279, 1279]]}, "center": {"109-165, T:0-1": [1229, 1290]}},
{"id": "tx45sf", "name": "Technical University of Darmstadt", "description": "The TU (Technical University) Darmstadt is located in Hesse, Germany. It's the world's first university to teach electrical engineering, established 1883. Made in part with the effort from the tud_geekhub community also located in the top right corner of r/place with their logo ''. The chosen colors where inspired by the original colors of the tud_geekhub logo.", "links": {"website": ["https://www.tu-darmstadt.de"], "subreddit": ["TU_Darmstadt"]}, "path": {"109-166, T:0-1": [[889, 1725], [889, 1735], [983, 1735], [983, 1725]]}, "center": {"109-166, T:0-1": [936, 1730]}},
-{"id": "tx45p8", "name": "Onigiri", "description": "The onigiri (Japanese rice ball) is the oshi mark (fan symbol) of Hololiver Nekomata Okayu, which fans commonly put after their nicknames on Twitter or other social media to show their support for her.", "links": {"website": ["https://en.hololive.tv/portfolio/items/nekomata-okayu"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1395, 955], [1395, 952], [1396, 952], [1396, 950], [1397, 950], [1397, 949], [1398, 949], [1398, 948], [1399, 948], [1399, 949], [1400, 949], [1400, 950], [1401, 950], [1401, 952], [1402, 952], [1402, 955]]}, "center": {"56-166, T:0-1": [1399, 952]}},
+{"id": "tx45p8", "name": "Onigiri", "description": "The onigiri (Japanese rice ball) is the oshi mark (fan symbol) of Hololiver Nekomata Okayu, which fans commonly put after their nicknames on Twitter or other social media to show their support for her.", "links": {"website": ["https://en.hololive.tv/portfolio/items/nekomata-okayu"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1395, 955], [1395, 952], [1396, 952], [1396, 950], [1397, 950], [1397, 949], [1398, 949], [1398, 948], [1399, 948], [1399, 949], [1400, 949], [1400, 950], [1401, 950], [1401, 952], [1402, 952], [1402, 955]]}, "center": {"56-166, T:0-1": [1399, 952]}},
{"id": "tx45ka", "name": "Flag of Bavaria", "description": "Bavaria, officially the Free State of Bavaria, is a state in Germany. Its largest city is Munich.\n\nThis flag was placed on the Brandenburg Gate to symbolize the deep friendship between Berlin and Munich.", "links": {"website": ["https://en.wikipedia.org/wiki/Bavaria", "https://en.wikipedia.org/wiki/Flag_of_Bavaria"], "subreddit": ["bavaria", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"159-161": [[704, 845], [702, 847], [702, 855], [706, 855], [706, 847]], "164, T:0-1": [[703, 847], [703, 855], [707, 855], [707, 847], [705, 845]]}, "center": {"159-161": [704, 850], "164, T:0-1": [705, 850]}},
{"id": "tx43jh", "name": "The fargo sign", "description": "The Fargo sign from Downtown Fargo ND's theatre", "links": {"website": ["https://fargotheatre.org/"], "subreddit": ["Fargo"]}, "path": {"109-166, T:0-1": [[1488, 1304], [1484, 1304], [1484, 1337], [1488, 1337]]}, "center": {"109-166, T:0-1": [1486, 1321]}},
{"id": "tx43c3", "name": "Jimmy the Wooper", "description": "Jimmy the Wooper is the mascot of the Banana Cult. This is a small community of ~30 members.\n\nWooper (Japanese: ウパー Upah) is a dual-type Water/Ground Pokémon introduced in Generation II. It evolves into Quagsire starting at level 20.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wooper_(Pok%C3%A9mon)"], "subreddit": ["JimmyResistance"]}, "path": {"109-166, T:0-1": [[613, 1680], [628, 1680], [631, 1685], [622, 1686], [620, 1693], [611, 1683]]}, "center": {"109-166, T:0-1": [620, 1684]}},
@@ -3626,9 +3617,9 @@
{"id": "tx42rr", "name": "Magmite", "description": "A magmite is a small creature from Starlight River, a mod for the game Terraria.", "links": {"website": ["https://github.com/ProjectStarlight/StarlightRiver"], "subreddit": ["Terraria"]}, "path": {"23-166, T:0-1": [[3, 701], [0, 705], [0, 709], [0, 710], [0, 712], [2, 714], [8, 714], [11, 709], [11, 705], [10, 704], [10, 701]]}, "center": {"23-166, T:0-1": [6, 708]}},
{"id": "tx42p4", "name": "Azumanga Daioh", "description": "best slice of life anime eva", "links": {}, "path": {"109-165, T:0-1": [[840, 1947], [847, 1947], [847, 1940], [840, 1940]]}, "center": {"109-165, T:0-1": [844, 1944]}},
{"id": "tx42aj", "name": "xFaRgAnx", "description": "xFaRgAnx (Fargan) is a Spanish-speaking streamer/YouTuber. This art depicts Fargan's face in the game Minecraft.", "links": {"website": ["https://youtube.com/c/xFaRgAnxYTube", "https://www.twitch.tv/xfarganx", "https://www.facebook.com/farganfb"], "subreddit": ["xFaRgAnx"]}, "path": {"103-166, T:0-1": [[1577, 617], [1586, 617], [1586, 626], [1577, 626]]}, "center": {"103-166, T:0-1": [1582, 622]}},
-{"id": "tx428c", "name": "Nightmare", "description": "Nightmare is a face drawn by VTuber Nanashi Mumei of Hololive EN Council during a stream of the game Passpartout, the third painting in that stream. Originally meant to be a drawing of fellow VTuber Hoshimachi Suisei, it quickly morphed into something far less idol-like. The face, now known as Nightmare, is used as an emote in Mumei's chat to depict her dark thoughts.", "links": {"website": ["https://www.youtube.com/watch?v=m42h-F5zhng"], "subreddit": ["NanashiMumei", "Hololive"]}, "path": {"17-166, T:0-1": [[219, 763], [219, 765], [221, 767], [221, 768], [222, 769], [224, 769], [226, 771], [235, 763], [235, 756], [234, 756]]}, "center": {"17-166, T:0-1": [226, 765]}},
+{"id": "tx428c", "name": "Nightmare", "description": "Nightmare is a face drawn by VTuber Nanashi Mumei of Hololive EN Council during a stream of the game Passpartout, the third painting in that stream. Originally meant to be a drawing of fellow VTuber Hoshimachi Suisei, it quickly morphed into something far less idol-like. The face, now known as Nightmare, is used as an emote in Mumei's chat to depict her dark thoughts.", "links": {"website": ["https://www.youtube.com/watch?v=m42h-F5zhng"], "subreddit": ["NanashiMumei", "Hololive"], "discord": ["holofans"]}, "path": {"17-166, T:0-1": [[219, 763], [219, 765], [221, 767], [221, 768], [222, 769], [224, 769], [226, 771], [235, 763], [235, 756], [234, 756]]}, "center": {"17-166, T:0-1": [226, 765]}},
{"id": "tx41tl", "name": "Melodrama", "description": "The cover from Melodrama, The 2nd album by New Zealand singer-songwriter Lorde", "links": {"website": ["https://www.lorde.co.nz/"], "subreddit": ["lorde"]}, "path": {"109-166, T:0-1": [[941, 1624], [941, 1648], [964, 1648], [964, 1625]]}, "center": {"109-166, T:0-1": [952, 1636]}},
-{"id": "tx41gk", "name": "Blue portal", "description": "A blue portal, a reference to the Portal games. It was built by the Germans and the Portal community to connect the split flags after the first canvas expansion because they didn't want to destroy the artworks in between.", "links": {"website": ["https://www.thinkwithportals.com/"], "subreddit": ["placeDE", "de", "germany", "Portal"], "discord": ["placeDE"]}, "path": {"56-165, T:0-1": [[1067, 829], [1066, 828], [1064, 828], [1062, 829], [1061, 831], [1060, 833], [1059, 838], [1058, 839], [1057, 845], [1057, 850], [1058, 853], [1059, 854], [1060, 856], [1061, 860], [1062, 863], [1069, 869], [1063, 869], [1062, 868], [1061, 867], [1060, 865], [1058, 863], [1057, 861], [1056, 857], [1056, 855], [1056, 845], [1064, 863], [1062, 861]]}, "center": {"56-165, T:0-1": [1063, 825]}},
+{"id": "tx41gk", "name": "Blue portal", "description": "This blue portal is a reference to Portal, a game series where players use a \"portal gun\" to manipulate portals and solve puzzles. It was built by the Germans and the Portal community with assistance from the OMORI and Celeste communities to connect the split German flags after the first canvas expansion and avoid destroying the artworks in between. This brought along an alliance of mutual defence aimed at protecting each other's artworks. A dachshund was later drawn traveling through the portal.", "links": {"website": ["https://www.thinkwithportals.com/", "https://en.wikipedia.org/wiki/Portal_(video_game)"], "subreddit": ["Portal", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"65-165, T:0-1": [[1063, 826], [1060, 828], [1058, 831], [1058, 835], [1056, 838], [1056, 843], [1055, 844], [1055, 849], [1054, 850], [1054, 858], [1058, 866], [1062, 871], [1069, 871], [1071, 869], [1071, 868], [1066, 864], [1063, 850], [1065, 841], [1068, 832], [1069, 829], [1066, 826]]}, "center": {"65-165, T:0-1": [1059, 856]}},
{"id": "tx41dx", "name": "Inky", "description": "Inky is one of the enemy ghosts in the arcade game Pac-Man. Made by u/Ghostieclone and friends.", "links": {"website": ["https://en.wikipedia.org/wiki/Ghosts_(Pac-Man)"]}, "path": {"109-165, T:0-1": [[1041, 1115], [1038, 1115], [1036, 1115], [1036, 1120], [1041, 1120]]}, "center": {"109-165, T:0-1": [1039, 1118]}},
{"id": "tx40ya", "name": "r/2balkan4you", "description": "r/2balkan4you was a subreddit where people from the Eastern European Balkans region could joke together. The subreddit was banned by Reddit admin u/Chtorrr in the beginning of 2022.\n\nMany new subreddits have tried to reconstruct the community of around 200k members, but the majority of them have become empty.", "links": {"website": ["https://subredditstats.com/r/2balkan4you"], "subreddit": ["balkans_irl"]}, "path": {"60-75": [[1918, 324], [1918, 334], [1944, 334], [1944, 324]], "157-166, T:0-1": [[1918, 322], [1918, 334], [1936, 334], [1936, 322]]}, "center": {"60-75": [1931, 329], "157-166, T:0-1": [1927, 328]}},
{"id": "tx40nh", "name": "Void Linux", "description": "Void Linux is a Linux distribution built around the XBPS package manager, and with runit instead of systemd as the init system. Its community is small but loyal.", "links": {"website": ["https://voidlinux.org/", "https://en.wikipedia.org/wiki/Void_Linux"], "subreddit": ["voidlinux", "placetux"]}, "path": {"73-165, T:0-1": [[26, 733], [29, 730], [29, 728], [26, 725], [24, 725], [21, 728], [21, 730], [24, 733]]}, "center": {"73-165, T:0-1": [25, 729]}},
@@ -3636,7 +3627,7 @@
{"id": "tx3zy5", "name": "o kama pona, ale li pona", "description": "A row of text in sitelen pona, a writing system for the Toki Pona language. Translated to English, it roughly means \"welcome, everything is good\" or \"welcome, everything will be okay\".", "links": {"subreddit": ["tokipona"]}, "path": {"3-15": [[742, 347], [742, 354], [744, 356], [781, 356], [783, 354], [783, 347]], "16-164, T:0-1": [[743, 347], [740, 350], [740, 356], [777, 356], [777, 347], [742, 347]]}, "center": {"3-15": [763, 352], "16-164, T:0-1": [759, 352]}},
{"id": "tx3zub", "name": "This is my duty!", "description": "This is a quote from a BBC interview before the 1989 Tiananmen Square massacre. The BBC journalist interviewed a brave, enthusiastic young man cycling to Tiananmen Square. When asked why he's going to the protest, the young man replied: \"Why? This is my duty!\". This young man has never appeared since. Having a same idea to its neighbor, an illustration of the tank man, creators of the Xuzhou chained woman decided to add this quote below the portrait. It is to express that saving trafficked women in China is their duty, as well as believing that fighting for freedom is also their duty, in memory of this brave young man.", "links": {"website": ["https://www.youtube.com/watch?v=21BDAPg403M"], "subreddit": ["china_place"]}, "path": {"10-166, T:0-1": [[893, 155], [949, 155], [949, 165], [893, 165]]}, "center": {"10-166, T:0-1": [921, 160]}},
{"id": "tx3zts", "name": "Onutrem seashell", "description": "The community of Onutrem, known as La Plage. This French streamer is also the developer of Undercards.", "links": {"website": ["https://www.twitch.tv/onutrem"]}, "path": {"109-164, T:0-1": [[261, 1543], [259, 1545], [259, 1552], [265, 1552], [267, 1550], [267, 1546], [264, 1543]]}, "center": {"109-164, T:0-1": [263, 1548]}},
-{"id": "tx3zka", "name": "OMORI of friendship", "description": "As a sign of friendship and thankfullness, This OMORI was implemented ater the subreddit r/omori defended the flag when the Germans were asleep.", "links": {"website": ["https://www.omori-game.com/"], "subreddit": ["OMORI", "placeDE", "de", "germany"], "discord": ["ypSr9JG2ht"]}, "path": {"56-166, T:0-1": [[1210, 845], [1210, 846], [1209, 847], [1209, 851], [1205, 850], [1207, 853], [1210, 855], [1207, 859], [1212, 863], [1215, 863], [1219, 864], [1221, 863], [1226, 865], [1234, 861], [1233, 848], [1225, 846], [1222, 846], [1221, 844], [1219, 842], [1217, 840], [1215, 840], [1205, 849], [1212, 858], [1209, 859], [1207, 861], [1202, 868], [1236, 868], [1234, 864]]}, "center": {"56-166, T:0-1": [1219, 857]}},
+{"id": "tx3zka", "name": "SPROUT MOLE", "description": "A SPROUT MOLE is a creature from the game OMORI.\n\nThis art was drawn as a sign of friendship and thanks after r/OMORI defended the German flag while the Germans were asleep.", "links": {"website": ["https://omori.fandom.com/wiki/SPROUT_MOLE"], "subreddit": ["OMORI", "placeDE", "de", "germany"], "discord": ["ypSr9JG2ht"]}, "path": {"95-166, T:0-1": [[1209, 831], [1205, 834], [1208, 837], [1210, 838], [1213, 838], [1215, 836], [1215, 839], [1208, 846], [1208, 847], [1206, 847], [1204, 849], [1204, 852], [1207, 855], [1208, 854], [1213, 854], [1214, 855], [1215, 855], [1216, 854], [1218, 854], [1222, 852], [1225, 852], [1226, 853], [1228, 851], [1228, 847], [1226, 845], [1223, 845], [1217, 839], [1217, 836], [1219, 838], [1223, 838], [1227, 835], [1223, 831], [1219, 831], [1216, 834], [1214, 831]]}, "center": {"95-166, T:0-1": [1216, 847]}},
{"id": "tx3zba", "name": "Bunnies", "description": "Some cute bunnies to brighten your day.", "links": {"website": ["https://en.wikipedia.org/wiki/Rabbit"]}, "path": {"109-166, T:0-1": [[1669, 1451], [1683, 1451], [1683, 1443], [1679, 1443], [1669, 1445]]}, "center": {"109-166, T:0-1": [1676, 1447]}},
{"id": "tx3z80", "name": "Beelzebub", "description": "Beelzebub, a character from the indie puzzle game Helltaker", "links": {"subreddit": ["Helltaker"]}, "path": {"109-166, T:0-1": [[761, 1559], [778, 1559], [778, 1581], [765, 1581], [765, 1577], [761, 1577]]}, "center": {"109-166, T:0-1": [770, 1570]}},
{"id": "tx3z7n", "name": "The Simpsons cars", "description": "Cars in the colors of the titular Simpsons family from the animated TV show The Simpsons. Clever and subtle, it was allowed to remain in the r/fuckcars lot.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Simpsons"], "subreddit": ["fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"158-164, T:0-1": [[1102, 750], [1122, 750], [1122, 756], [1102, 756]]}, "center": {"158-164, T:0-1": [1112, 753]}},
@@ -3646,7 +3637,7 @@
{"id": "tx3x3x", "name": "Emily the Frog", "description": "A little frog drawn by u/Manipendeh and u/altermace, a couple who love each other very much.", "links": {"website": ["https://www.reddit.com/user/Manipendeh/", "https://www.reddit.com/user/altermace/"]}, "path": {"135-166, T:0-1": [[1765, 687], [1762, 690], [1762, 691], [1765, 695], [1767, 695], [1770, 691], [1770, 690], [1767, 687]]}, "center": {"135-166, T:0-1": [1766, 691]}},
{"id": "tx3x1s", "name": "EXO", "description": "EXO is a K-pop boy band composed of members Xiumin, Suho, Lay, Baekhyun, Chen, Chanyeol, D.O., Kai, and Sehun. Since their debut, they have become one of the most successful and well known K-pop groups worldwide, dubbed the \"Kings of K-pop\" and the \"Biggest boy band in the world\". EXO's notable achievements include selling over 20.5 million albums, holding the world record for fastest sold-out concert, and performing at the 2018 Pyeongchang Winter Olympics closing ceremony. April 9, 2022 marks EXO's 10th anniversary as a K-pop group. EXO's fanbase, the EXO-Ls, dedicate this logo to EXO as a sincere celebration of 10 years of success.", "links": {"website": ["https://www.smtown.com/artist/musician/86", "https://en.wikipedia.org/wiki/Exo"], "subreddit": ["exo"]}, "path": {"128-154": [[1394, 555], [1394, 561], [1424, 561], [1424, 555]], "82-127": [[1395, 555], [1395, 561], [1424, 561], [1424, 555]], "74-81": [[1395, 545], [1395, 551], [1414, 551], [1414, 545]], "155-164, T:0-1": [[1393, 555], [1393, 561], [1424, 561], [1424, 555]]}, "center": {"128-154": [1409, 558], "82-127": [1410, 558], "74-81": [1405, 548], "155-164, T:0-1": [1409, 558]}},
{"id": "tx3wp3", "name": "openSUSE", "description": "A green chameleon representing openSUSE, a free, open, and secure Linux distribution for PC, laptops, servers and ARM devices targeted primarily towards sys-admins and enterprises. It comes in two variants: Tumbleweed, a tested rolling release, and Leap, with long-term support. openSUSE is a project that serves to promote the use of free and open-source software.", "links": {"website": ["https://www.opensuse.org", "https://en.wikipedia.org/wiki/OpenSUSE"], "subreddit": ["openSUSE", "placetux"]}, "path": {"4-166, T:0-1": [[31, 725], [31, 722], [32, 721], [32, 719], [30, 717], [29, 717], [28, 716], [23, 716], [21, 718], [21, 723], [23, 725]]}, "center": {"4-166, T:0-1": [26, 721]}},
-{"id": "tx3wks", "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland. This flag contains a clover connecting to the German flag, a Celtic harp, and an outline of the island of Ireland.\n\nThis area, known as New World South, was built after the first canvas expansion alongside the Irish New World North area.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"56-166, T:0-1": [[1486, 764], [1486, 830], [1524, 830], [1524, 803], [1522, 803], [1522, 780], [1508, 780], [1508, 764]]}, "center": {"56-166, T:0-1": [1502, 778]}},
+{"id": "tx3wks", "name": "Flag of Ireland", "description": "The Republic of Ireland is a country in northwestern Europe. It consists of most of the island of Ireland. This flag contains a clover connecting to the German flag, a Celtic harp, and an outline of the island of Ireland.\n\nThis area, known as New World South, was built after the first canvas expansion alongside the Irish New World North area.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Flag_of_Ireland"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"84-117": [[1486, 764], [1486, 803], [1489, 803], [1489, 805], [1491, 805], [1492, 806], [1492, 810], [1488, 815], [1488, 821], [1486, 823], [1486, 830], [1523, 830], [1523, 780], [1508, 780], [1508, 764]], "56-83": [[1486, 764], [1486, 830], [1523, 830], [1523, 781], [1508, 781], [1508, 764]], "118-166, T:0-1": [[1486, 764], [1486, 803], [1489, 803], [1489, 805], [1491, 805], [1492, 806], [1492, 810], [1488, 815], [1488, 821], [1486, 823], [1486, 829], [1492, 835], [1497, 830], [1512, 830], [1517, 835], [1523, 829], [1523, 780], [1508, 780], [1508, 764]]}, "center": {"84-117": [1506, 797], "56-83": [1504, 800], "118-166, T:0-1": [1506, 797]}},
{"id": "tx3wjx", "name": "Hidden Amogus in Void Mother", "description": "An Amogus that has slipped into the grasp of the Void Mother.", "links": {}, "path": {"109-165, T:0-1": [[967, 1377], [973, 1377], [973, 1387], [966, 1386]]}, "center": {"109-165, T:0-1": [970, 1382]}},
{"id": "tx3wbj", "name": "Weezer", "description": "Weezer is an American rock band. The picture above is from their first album, released in 1994 and self-titled Weezer, but better known as Blue Album. The album cover features the first major lineup of the band. From left to right: Pat Wilson, Rivers Cuomo, Matt Sharp, and Brian Bell.\n\nThe picture underneath is their logo, and the color depicts of each of their self-titled albums: blue ('94), green ('01), red ('08), white ('16), teal, and black ('19).", "links": {"website": ["https://weezer.com/", "https://en.wikipedia.org/wiki/Weezer"], "subreddit": ["weezer"]}, "path": {"25-90": [[960, 169], [956, 173], [956, 177], [964, 185], [972, 177], [972, 173], [968, 169]], "97-166, T:0-1": [[1419, 125], [1419, 149], [1437, 149], [1437, 124], [1436, 124], [1429, 128], [1426, 128], [1421, 125]]}, "center": {"25-90": [964, 176], "97-166, T:0-1": [1428, 138]}},
{"id": "tx3wab", "name": "Seattle sports", "description": "Seattle is a city in the state of Washington, United States. This art represents several of Seattle's professional sports teams, including the Mariners (baseball), Seahawks (American football), Sounders (soccer/association football), and Kraken (hockey).\n\nAfter moving several times, the Seattle Mariners made a Discord server to better defend their trident logo, and more Seattle sports logos were made to the right of it. In the end, logos for the Seahawks, Sounders, and Kraken were also made with the help of r/Seahawks, r/SoundersFC, and r/SeattleKraken.", "links": {"website": ["https://en.wikipedia.org/wiki/Sports_in_Seattle"], "subreddit": ["Mariners", "Seahawks", "SeattleKraken", "SoundersFC"], "discord": ["seattlesportsreddit"]}, "path": {"113-120": [[1577, 690], [1577, 728], [1557, 728], [1554, 725], [1555, 724], [1555, 714], [1558, 711], [1563, 711], [1563, 613], [1566, 613], [1566, 637], [1578, 637], [1578, 659], [1618, 659], [1618, 675], [1580, 675], [1580, 690]], "99-112": [[1562, 659], [1562, 710], [1558, 710], [1554, 714], [1554, 724], [1553, 725], [1557, 729], [1577, 729], [1577, 691], [1578, 691], [1578, 675], [1614, 675], [1614, 659]], "121-166, T:0-1": [[1577, 690], [1577, 728], [1557, 728], [1554, 725], [1555, 724], [1555, 714], [1558, 711], [1563, 711], [1563, 613], [1566, 613], [1566, 637], [1578, 637], [1578, 658], [1600, 658], [1600, 636], [1619, 636], [1619, 675], [1580, 675], [1580, 690]]}, "center": {"113-120": [1573, 668], "99-112": [1567, 719], "121-166, T:0-1": [1609, 665]}},
@@ -3675,7 +3666,7 @@
{"id": "tx3ozm", "name": "Bunnies", "description": "A family of Bunnies from the 2D adventure/sandbox game Terraria. One of the Bunnies was turned gold midway through the project.\n\nBunnies are harmless critters that can be caught with a Bug Net and do not normally interact with the player in any other way. They usually serve as ambient entities in Terraria.", "links": {"website": ["https://terraria.fandom.com/wiki/Bunny"], "subreddit": ["Terraria"]}, "path": {"48-60": [[405, 0], [396, 9], [396, 14], [426, 14], [426, 9], [417, 0]], "35-47": [[415, 0], [413, 2], [413, 4], [411, 6], [411, 9], [414, 11], [413, 14], [425, 14], [425, 11], [426, 11], [426, 9], [424, 7], [423, 7], [421, 5], [419, 5], [419, 2], [417, 0]], "61-165, T:0-1": [[368, 0], [368, 14], [438, 14], [438, 3], [439, 2], [438, 0]]}, "center": {"48-60": [411, 7], "35-47": [418, 9], "61-165, T:0-1": [403, 7]}},
{"id": "tx3ovm", "name": "René Lévesque", "description": "René Lévesque is a Quebec statesman and Premier of Quebec from 1976 to 1985. He was first known as a journalist and radio/television host. He is one of the main architects of the Quiet Revolution and is an ardent defender of the political sovereignty of Quebec", "links": {"website": ["https://en.wikipedia.org/wiki/Ren%C3%A9_L%C3%A9vesque"], "subreddit": ["Quebec"]}, "path": {"109-165, T:0-1": [[987, 1007], [995, 1007], [995, 1008], [1000, 1008], [1000, 1009], [1001, 1009], [1001, 1010], [1002, 1010], [1002, 1011], [1004, 1011], [1004, 1012], [1005, 1012], [1005, 1013], [1006, 1013], [1006, 1015], [1007, 1015], [1007, 1017], [1008, 1018], [1008, 1019], [1009, 1019], [1009, 1021], [1010, 1021], [1010, 1027], [1011, 1027], [1011, 1035], [1010, 1035], [1010, 1038], [1009, 1038], [1009, 1040], [1008, 1040], [1008, 1042], [1007, 1042], [1007, 1045], [1006, 1045], [1006, 1047], [1005, 1047], [1005, 1048], [1004, 1048], [1004, 1049], [1004, 1050], [1005, 1050], [1005, 1051], [1005, 1052], [1006, 1052], [1006, 1053], [1007, 1053], [1007, 1054], [1008, 1054], [1008, 1055], [1009, 1055], [1009, 1056], [1010, 1056], [1010, 1057], [1011, 1057], [1011, 1058], [1012, 1058], [1012, 1059], [1013, 1059], [1013, 1060], [1014, 1060], [1014, 1061], [1015, 1061], [1015, 1072], [958, 1072], [958, 1070], [959, 1070], [959, 1069], [960, 1069], [960, 1068], [961, 1068], [961, 1067], [962, 1067], [962, 1066], [963, 1066], [964, 1066], [964, 1065], [965, 1065], [966, 1065], [967, 1065], [967, 1064], [968, 1064], [969, 1064], [970, 1064], [970, 1063], [971, 1063], [971, 1062], [972, 1062], [972, 1061], [973, 1061], [974, 1061], [974, 1060], [975, 1060], [976, 1060], [976, 1059], [976, 1055], [976, 1054], [975, 1054], [975, 1053], [974, 1053], [974, 1051], [973, 1051], [973, 1050], [968, 1050], [968, 1048], [965, 1048], [965, 1047], [964, 1047], [964, 1046], [964, 1045], [963, 1045], [963, 1044], [962, 1044], [962, 1043], [962, 1042], [961, 1042], [961, 1041], [962, 1041], [962, 1039], [961, 1039], [961, 1036], [960, 1036], [960, 1030], [961, 1030], [961, 1028], [960, 1028], [961, 1027], [961, 1024], [962, 1023], [962, 1022], [964, 1022], [964, 1027], [965, 1027], [965, 1028], [964, 1028], [964, 1029], [964, 1030], [965, 1030], [965, 1037], [964, 1038], [964, 1039], [964, 1040], [964, 1042], [964, 1043], [965, 1042], [965, 1044], [966, 1044], [966, 1045], [967, 1045], [967, 1046], [968, 1046], [969, 1049], [973, 1049], [973, 1045], [973, 1044], [972, 1044], [972, 1036], [971, 1036], [971, 1035], [970, 1035], [970, 1033], [969, 1033], [969, 1026], [970, 1025], [971, 1024], [971, 1020], [972, 1019], [973, 1018], [973, 1017], [974, 1016], [975, 1015], [976, 1014], [977, 1013], [978, 1012], [979, 1012], [979, 1011], [980, 1011], [980, 1010], [981, 1010], [982, 1010], [983, 1010], [983, 1009], [984, 1009], [985, 1009], [985, 1008], [986, 1008]]}, "center": {"109-165, T:0-1": [989, 1042]}},
{"id": "tx3onp", "name": "Bandeja paisa", "description": "This dish is a typical meal from the Antioquia and Paisa regions (located in the northwest of Colombia). It always features beef, rice, black beans, fried plantains, chorizo, avocado and an egg for the most common form. It's also well known for the quantity you have to eat, because there's a lot to eat", "links": {"website": ["https://en.wikipedia.org/wiki/Bandeja_paisa"], "subreddit": ["Colombia"]}, "path": {"109-165, T:0-1": [[256, 1334], [254, 1331], [254, 1330], [255, 1329], [255, 1328], [252, 1325], [252, 1322], [253, 1322], [261, 1316], [262, 1316], [262, 1315], [266, 1315], [266, 1316], [274, 1316], [274, 1318], [280, 1318], [280, 1319], [283, 1319], [283, 1320], [285, 1320], [285, 1321], [286, 1321], [292, 1327], [292, 1330], [286, 1337], [284, 1337], [283, 1338], [282, 1339], [262, 1339]]}, "center": {"109-165, T:0-1": [271, 1328]}},
-{"id": "tx3onk", "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": {"56-166, T:0-1": [[1275, 878], [1281, 878], [1281, 883], [1275, 883]]}, "center": {"56-166, T:0-1": [1278, 881]}},
+{"id": "tx3onk", "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": {"137-139": [[1275, 871], [1275, 883], [1281, 883], [1281, 871]], "126-136": [[1275, 871], [1275, 876], [1281, 876], [1281, 871]], "119-125": [[1274, 870], [1274, 875], [1281, 875], [1281, 870]], "91-100": [[1253, 890], [1253, 895], [1259, 895], [1259, 890]], "140-166, T:0-1": [[1275, 878], [1281, 878], [1281, 883], [1275, 883]]}, "center": {"137-139": [1278, 877], "126-136": [1278, 874], "119-125": [1278, 873], "91-100": [1256, 893], "140-166, T:0-1": [1278, 881]}},
{"id": "tx3nx4", "name": "Enderman eyes", "description": "The enderman is an enemy in the game Minecraft who picks up blocks and teleports around. It attacks the player if looked at in the eyes.\n\nThis art features two cars altered to look like the current eye texture of the endermen. It is one of a set o four that can be seen among the parking lot, including green eyes resembling the original eye texture in the bottom left of the lot, an orange variant in the right of the lot, and a blue variant in the top right. All four were fully constructed by the end of the event.", "links": {"website": ["https://minecraft.fandom.com/wiki/Enderman"], "subreddit": ["fuckcars", "Minecraft"], "discord": ["w84VM2fbGs"]}, "path": {"63-164, T:0-1": [[953, 732], [953, 734], [962, 734], [962, 732]]}, "center": {"63-164, T:0-1": [958, 733]}},
{"id": "tx3nsh", "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": {"84-91": [[1501, 471], [1501, 482], [1551, 482], [1551, 471]], "92-166, T:0-1": [[1501, 473], [1551, 473], [1551, 483], [1501, 483]]}, "center": {"84-91": [1526, 477], "92-166, T:0-1": [1526, 478]}},
{"id": "tx3no0", "name": "OniGiri", "description": "Representation of the VTuber on Twitch that goes by OniGiriEN", "links": {"website": ["https://www.twitch.tv/onigirien"]}, "path": {"109-165, T:0-1": [[781, 1074], [796, 1074], [796, 1089], [781, 1089], [781, 1075]]}, "center": {"109-165, T:0-1": [789, 1082]}},
@@ -3712,13 +3703,12 @@
{"id": "txa5pf", "name": "Flag of Småland", "description": "Småland is a historical province in southern Sweden. Småland borders Blekinge, Scania, Halland, Västergötland, Östergötland and the island Öland in the Baltic Sea. The name Småland literally means \"Small Lands\".", "links": {"website": ["https://en.wikipedia.org/wiki/Sm%C3%A5land"]}, "path": {"109-164, T:0-1": [[1457, 1727], [1464, 1727], [1464, 1731], [1457, 1731]]}, "center": {"109-164, T:0-1": [1461, 1729]}},
{"id": "txa5mr", "name": "Chick", "description": "The chick from the MEA (Middle-Eastern Alliance). Idea from 'Powi Club's Discord server and other helpers. Originally contained in a small square, it grew substantially after the Kobe invasion to include an entire field of friends and a lake for them to play in.", "links": {"subreddit": ["PowiTeam"], "discord": ["EyNsdbU"]}, "path": {"56-166, T:0-1": [[1784, 941], [1778, 941], [1778, 940], [1777, 939], [1776, 938], [1774, 938], [1774, 943], [1773, 944], [1772, 945], [1771, 946], [1770, 947], [1769, 947], [1769, 949], [1768, 950], [1767, 951], [1754, 951], [1752, 949], [1752, 936], [1753, 935], [1753, 933], [1754, 932], [1750, 932], [1750, 933], [1748, 935], [1742, 935], [1741, 936], [1741, 942], [1730, 942], [1730, 962], [1770, 962], [1770, 963], [1781, 963], [1781, 956], [1784, 956]]}, "center": {"56-166, T:0-1": [1756, 951]}},
{"id": "txa5jc", "name": "Unfinished Phoenotopia logo", "description": "An attempt to create the logo for the game Phoenotopia: Awakening was made, followed by an an attempt to spell PHOA, as an abbreviation. This is what resulted.", "links": {"website": ["https://www.phoenotopia.com"], "subreddit": ["phoenotopia"]}, "path": {"109-166, T:0-1": [[1861, 1167], [1877, 1167], [1877, 1171], [1861, 1171]]}, "center": {"109-166, T:0-1": [1869, 1169]}},
-{"id": "txa5i2", "name": "Eye of Senri", "description": "Originating from the Len'en Project, a game series heavily inspired by Touhou, The Eye of Senri is an important though enigmatic symbol that recurs throughout the series. In-universe it is closely associated with the Shrine of Senri and has come to represent the Len'en Project as a whole.", "links": {"website": ["http://lenen.shoutwiki.com/wiki/Objects_of_significance#Eye_of_Senri"], "subreddit": ["lenen"]}, "path": {"56-166, T:0-1": [[1753, 804], [1756, 804], [1757, 805], [1758, 806], [1759, 807], [1759, 808], [1759, 809], [1759, 810], [1758, 811], [1757, 812], [1756, 813], [1755, 813], [1754, 813], [1753, 813], [1752, 812], [1751, 811], [1750, 810], [1750, 809], [1750, 808], [1750, 807], [1751, 806], [1752, 805]]}, "center": {"56-166, T:0-1": [1755, 809]}},
+{"id": "txa5i2", "name": "Eye of Senri", "description": "Originating from the Len'en Project, a game series heavily inspired by Touhou, the Eye of Senri is an important though enigmatic symbol that recurs throughout the series. In-universe it is closely associated with the Shrine of Senri and has come to represent the Len'en Project as a whole.", "links": {"website": ["http://lenen.shoutwiki.com/wiki/Objects_of_significance#Eye_of_Senri"], "subreddit": ["lenen"]}, "path": {"158-166, T:0-1": [[1753, 804], [1756, 804], [1757, 805], [1758, 806], [1759, 807], [1759, 808], [1759, 809], [1759, 810], [1758, 811], [1757, 812], [1756, 813], [1755, 813], [1754, 813], [1753, 813], [1752, 812], [1751, 811], [1750, 810], [1750, 809], [1750, 808], [1750, 807], [1751, 806], [1752, 805]]}, "center": {"158-166, T:0-1": [1755, 809]}},
{"id": "txa51r", "name": "Cloudless Summer Day", "description": "On the top right you see a \"Joja rat\". Joja is a company in the game Stardew Valley and blue is its theme. At the bottom we have a beautiful farm with an apple tree, some lovely flowers, our short name (LTZ for LagerTeilZeit) and a charming butterfly with a little sun to brighten up the skies. Last but not least, The gorgeous crow. It was originally drawn by /u/ilovewoofwoofs but I liked it so much that I adopted it and made a little worm in his mouth. In the sky we have 2 bees from the beehive beneath.", "links": {"website": ["https://greekgodgear.eu/"], "subreddit": ["GreekGodGear", "crowbro", "StardewValley"]}, "path": {"56-166, T:0-1": [[1708, 963], [1741, 963], [1741, 978], [1731, 978], [1731, 989], [1768, 989], [1768, 999], [1708, 999], [1708, 989], [1721, 989], [1721, 978], [1708, 978]]}, "center": {"56-166, T:0-1": [1731, 983]}},
{"id": "txa4yi", "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. The bear is holding a Taiwan blue magpie, another endemic species of Taiwan.", "links": {"website": ["https://bravo.travel.taipei/en"], "subreddit": ["taiwan"]}, "path": {"131-166, T:0-1": [[962, 549], [960, 551], [960, 552], [961, 553], [961, 567], [969, 567], [969, 561], [970, 561], [972, 559], [972, 558], [970, 556], [969, 557], [969, 553], [970, 552], [970, 551], [968, 549], [966, 549], [966, 551], [964, 551], [964, 549]]}, "center": {"131-166, T:0-1": [965, 558]}},
{"id": "txa4wy", "name": "Lil B", "description": "Lil B is the mascot of Twitch variety streamer APlaytpuss, a.k.a. Platy.", "links": {"website": ["https://twitch.com/aplatypuss"], "subreddit": ["Aplatypuss"]}, "path": {"117-164, 80-106, T:0-1": [[1038, 424], [1043, 424], [1043, 425], [1044, 425], [1044, 426], [1045, 426], [1045, 427], [1046, 427], [1046, 440], [1045, 440], [1045, 441], [1044, 441], [1044, 442], [1043, 442], [1043, 443], [1039, 443], [1039, 442], [1038, 442], [1038, 441], [1032, 441], [1033, 442], [1030, 442], [1030, 441], [1029, 441], [1029, 440], [1028, 440], [1028, 437], [1027, 437], [1027, 430], [1028, 430], [1028, 429], [1031, 429], [1031, 430], [1034, 430], [1034, 427], [1035, 427], [1035, 426], [1036, 426], [1036, 425], [1038, 425], [1038, 424], [1043, 424], [1040, 424]]}, "center": {"117-164, 80-106, T:0-1": [1039, 434]}},
{"id": "txa4h5", "name": "Mothcrabalisa", "description": "The default character for new players from the video game, Sky: Children of the Light, lovingly named Moth by the community, next to a crab from the game.\n\nThis is the third Mothalisa made by r/skyplace. After an alliance with Oneshot, The Mothalisa was able to secure its spot beside the Niko art.", "links": {"subreddit": ["SkyChildrenOfLight", "SkyGame", "skyplace"]}, "path": {"109-166, T:0-1": [[1118, 1654], [1132, 1654], [1132, 1669], [1109, 1668], [1122, 1662]]}, "center": {"109-166, T:0-1": [1125, 1662]}},
{"id": "txa49c", "name": "Mexican-Italian alliance", "description": "After Italy and Mexico won the war against the trans and were able to merge, they created these heart symbols as a show of their friendship.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Italy"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico", "italy", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"109-129": [[820, 445], [813, 452], [823, 462], [825, 462], [835, 452], [828, 445]], "18-108": [[819, 444], [814, 449], [814, 452], [825, 463], [836, 452], [836, 449], [831, 444]], "130-164, T:0-1": [[824, 463], [836, 450], [812, 450]]}, "center": {"109-129": [824, 453], "18-108": [825, 452], "130-164, T:0-1": [824, 455]}},
-{"id": "txa456", "name": "Among Us tower", "description": "Though the creators are unknown, Among Us crewmates are a common theme throughout the /r/place project. Most large artworks have these mini crewmates hidden within.", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1773, 838], [1777, 838], [1777, 868], [1773, 868], [1773, 855]]}, "center": {"56-166, T:0-1": [1775, 853]}},
{"id": "txa3o2", "name": "Illimani", "description": "El Illimani, con 6.460 metros sobre el nivel del mar, es una montaña de Bolivia, ubicada cerca de la ciudad de La Paz. Es la mayor altura de la Cordillera Real y la segunda de Bolivia.", "links": {"subreddit": ["BOLIVIA"]}, "path": {"109-166, T:0-1": [[1390, 1232], [1450, 1233], [1440, 1223], [1437, 1222], [1429, 1215], [1425, 1217], [1417, 1215], [1413, 1219], [1409, 1216], [1392, 1231]]}, "center": {"109-166, T:0-1": [1421, 1226]}},
{"id": "txa3nn", "name": "The Cuke", "description": "A cucumber commemorating Marshall's World X stream and his watchers.", "links": {"website": ["https://www.twitch.tv/marshallsworldx"], "subreddit": ["none"]}, "path": {"109-166, T:0-1": [[529, 1495], [520, 1495], [520, 1497], [517, 1498], [517, 1500], [522, 1508], [524, 1508], [527, 1507], [528, 1507], [528, 1510], [527, 1510], [527, 1512], [531, 1512], [531, 1510], [531, 1500], [530, 1500], [529, 1500], [529, 1499], [528, 1498], [528, 1497], [528, 1496]]}, "center": {"109-166, T:0-1": [525, 1502]}},
{"id": "txa37g", "name": "Bear emoticon", "description": "A classic bear emoticon, which was a form of emotive text faces from before emojis were a thing. A pencil lays beside it.", "links": {"website": ["https://cutekaomoji.com/animals/bears/"]}, "path": {"109-167, T:0-1": [[1376, 1808], [1376, 1815], [1399, 1815], [1399, 1808]]}, "center": {"109-167, T:0-1": [1388, 1812]}},
@@ -3756,7 +3746,7 @@
{"id": "tx9ty2", "name": "Border of Bratishkinoff and The Blue Corner", "description": "The changing border between Bratishnikoff and the Blue Corner was historically significant for both factions and the Blue Corner in particular. The border was removed by Bratishnikoff when he decided to make his background blue, but the events of the Second Blue Corner Civil War caused him to reverse his decision and the border was rebuilt at its original location.\n\nAfter the civil war, Bratishnikoff invaded the Blue Corner a second time (he invaded once before the invasion) as he thought the Blue Corner was trying to expand into his art. In response to this invasion, the leadership on the Blue Corner discord quickly moved the border of the two art pieces 7 pixels to the right as a sign of good faith and to prevent future conflicts with the streamer. The plan succeeded as the war ended soon after the border was rebuilt and there were no conflicts with the streamer after this event.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["TheBlueCorner"]}, "path": {"109-164, T:0-1": [[1918, 1999], [1918, 1868], [1924, 1868], [1924, 1999]]}, "center": {"109-164, T:0-1": [1921, 1934]}},
{"id": "tx9top", "name": "Pre-release enderman eyes", "description": "The enderman is an enemy in the game Minecraft who picks up blocks and teleports around. It attacks the player if looked at in the eyes.\n\nThese two cars are altered to look like the former version 1.8 pre-release eye texture of the Minecraft endermen, when endermen were first added to Minecraft. They are one of a set of four that can be seen among the parking lot, including purple eyes resembling the current eye texture in the top-left of the lot, an orange variant in the right of the lot, and a blue variant in the top-right. All four were fully constructed by the end of the event.", "links": {"website": ["https://minecraft.fandom.com/wiki/Enderman"], "subreddit": ["fuckcars", "Minecraft"], "discord": ["w84VM2fbGs"]}, "path": {"69-165, T:0-1": [[937, 792], [946, 792], [946, 794], [937, 794]]}, "center": {"69-165, T:0-1": [942, 793]}},
{"id": "tx9tdi", "name": "Weirdcore", "description": "Weirdcore is a surrealist aesthetic centered around feelings of confusion, disorientation, dread, and nostalgia. It often consists of pixelated, low-quality images without context that are sometimes unnerving. The 'O' is stylized to look like a lens glare, a very common theme in Weirdcore images.", "links": {"website": ["https://aesthetics.fandom.com/wiki/Weirdcore"], "subreddit": ["Weirdcore"]}, "path": {"97-166, T:0-1": [[1442, 242], [1440, 244], [1440, 249], [1497, 249], [1497, 243], [1477, 243], [1477, 240], [1473, 240], [1473, 243], [1466, 243], [1466, 240], [1463, 240], [1463, 243], [1451, 243], [1451, 241], [1449, 239], [1447, 241], [1447, 242]]}, "center": {"97-166, T:0-1": [1448, 246]}},
-{"id": "tx9sys", "name": "Jump King", "description": "A small drawing of the helmet of the knight protagonist of the JumpKing game.", "links": {}, "path": {"56-166, T:0-1": [[1230, 819], [1237, 819], [1237, 820], [1238, 820], [1238, 827], [1237, 827], [1237, 828], [1236, 828], [1236, 829], [1232, 829], [1232, 828], [1231, 828], [1231, 827], [1230, 827], [1230, 826], [1229, 826], [1229, 820], [1230, 820]]}, "center": {"56-166, T:0-1": [1234, 824]}},
+{"id": "tx9sys", "name": "Jump King", "description": "Jump King is a notoriously difficult platforming game. This art features the helmet of the knight protagonist from the game.", "links": {"website": ["https://store.steampowered.com/app/1061090/Jump_King/", "https://en.wikipedia.org/wiki/Jump_King"]}, "path": {"97-166, T:0-1": [[1230, 818], [1228, 820], [1228, 826], [1232, 830], [1236, 830], [1239, 827], [1239, 820], [1237, 818]]}, "center": {"97-166, T:0-1": [1234, 824]}},
{"id": "tx9suv", "name": "Blurryface", "description": "A simplified version of the cover of Blurryface, Twenty One Pilots's 2016 album.", "links": {"subreddit": ["twentyonepilots"]}, "path": {"109-165, T:0-1": [[394, 1584], [402, 1584], [402, 1592], [394, 1592]]}, "center": {"109-165, T:0-1": [398, 1588]}},
{"id": "tx9sle", "name": "Michelle Puttini", "description": "MichellePuttini, is an Italian streamer on Twitch, her community is called Sommelier.", "links": {"website": ["https://linktr.ee/MichellePuttini"]}, "path": {"109-166, T:0-1": [[1537, 1761], [1537, 1765], [1539, 1768], [1539, 1776], [1546, 1776], [1546, 1767], [1550, 1764], [1550, 1761]]}, "center": {"109-166, T:0-1": [1543, 1767]}},
{"id": "tx9se8", "name": "VioletaG", "description": "Skin from an adorablisima!\nUn sol de persona.", "links": {"website": ["https://twitch.tv/violetag"]}, "path": {"109-166, T:0-1": [[1980, 1385], [1980, 1392], [1988, 1392], [1988, 1385]]}, "center": {"109-166, T:0-1": [1984, 1389]}},
@@ -3782,7 +3772,7 @@
{"id": "tx9nbu", "name": "Finsexual flag", "description": "the flag that represents finsexuality", "links": {"subreddit": ["Finsexual"]}, "path": {"109-166, T:0-1": [[1853, 1708], [1862, 1708], [1862, 1714], [1853, 1714]]}, "center": {"109-166, T:0-1": [1858, 1711]}},
{"id": "tx9n8a", "name": "University of Colorado Boulder", "description": "The University of Colorado Boulder, a.k.a. CU or CU Boulder, is a public research university in Boulder, Colorado, United States. Their sports teams are known as the Buffaloes. Sko' Buffs!", "links": {"website": ["https://www.colorado.edu/", "https://en.wikipedia.org/wiki/University_of_Colorado_Boulder"], "subreddit": ["cuboulder"]}, "path": {"97-101": [[0, 757], [0, 764], [7, 764], [7, 757]], "116-166, T:0-1": [[11, 722], [11, 731], [20, 731], [20, 722]]}, "center": {"97-101": [4, 761], "116-166, T:0-1": [16, 727]}},
{"id": "tx9mhv", "name": "Goblin fire", "description": "Goblin fire is a dangerous weapon in A Practical Guide to Evil. It consists of eerie green flames which burn everything they touch for seven days and seven nights exactly. Goblinfire is wielded by the Legions of Terror in the Dread Empire of Praes and by Catherine \"the fire wasn't my fault I swear\" Foundling.", "links": {"website": ["https://abridged-guide-to-evil.fandom.com/wiki/Goblin_fire"], "subreddit": ["PracticalGuideToEvil"], "discord": ["Bs6TAsaqvd"]}, "path": {"37-166, T:0-1": [[935, 520], [935, 541], [939, 541], [939, 520]]}, "center": {"37-166, T:0-1": [937, 531]}},
-{"id": "tx9mcn", "name": "r/TheBlueCorner logo", "description": "The logo of the Blue Corner representing the name of the subreddit. \n\nThis logo was moved over 7 pixels to the right after the Blue Corner's border was moved over due to an invasion by the streamer Bratishnikoff.", "links": {"subreddit": ["TheBlueCorner"]}, "path": {"109-165, T:0-1": [[1926, 1985], [1926, 1984], [1999, 1985], [1999, 1984], [1999, 1994], [1925, 1994], [1925, 1984], [1999, 1984]]}, "center": {"109-165, T:0-1": [1961, 1989]}},
+{"id": "tx9mcn", "name": "r/TheBlueCorner", "description": "r/TheBlueCorner is a subreddit focused on maintaining the Blue Corner on r/place. \n\nThis logo was moved over 7 pixels to the right along with the Blue Corner's border due to an invasion by the streamer Bratishkinoff.", "links": {"subreddit": ["TheBlueCorner"]}, "path": {"118-154": [[1916, 1983], [1916, 1995], [1992, 1995], [1992, 1983]], "109-117": [[1916, 1983], [1916, 1995], [2000, 1995], [2000, 1983]], "84-107": [[1927, 983], [1927, 995], [2000, 995], [2000, 983]], "59-65": [[1869, 879], [1869, 891], [2000, 891], [2000, 879]], "3-44": [[899, 912], [899, 924], [972, 924], [972, 912]], "155-165, T:0-1": [[1924, 1983], [1924, 1995], [2000, 1995], [2000, 1983]]}, "center": {"118-154": [1954, 1989], "109-117": [1958, 1989], "84-107": [1964, 989], "59-65": [1935, 885], "3-44": [936, 918], "155-165, T:0-1": [1962, 1989]}},
{"id": "tx9mbt", "name": "Mute swan", "description": "The mute swan is the national bird of Denmark, chosen by a viewer poll on Danish radio in 1984.\n\nThis swan was drawn shortly after the nearby Indian elephant, and the pair was interpreted by some to be in love. A heart was drawn subsequently drawn between them as a display of friendship between the two nations.", "links": {"website": ["https://en.wikipedia.org/wiki/Mute_swan"], "subreddit": ["Denmark"]}, "path": {"96-166, T:0-1": [[539, 338], [539, 332], [540, 331], [541, 329], [542, 328], [543, 327], [543, 324], [542, 324], [541, 325], [539, 325], [538, 324], [537, 323], [538, 322], [539, 321], [540, 320], [541, 319], [543, 319], [544, 318], [545, 319], [545, 320], [546, 320], [546, 321], [548, 323], [548, 327], [547, 328], [547, 329], [546, 330], [547, 331], [550, 329], [554, 328], [556, 327], [558, 325], [559, 326], [560, 327], [561, 330], [560, 331], [561, 332], [561, 334], [562, 334], [562, 337], [562, 339], [561, 340], [561, 341], [558, 342], [547, 342], [547, 341], [544, 341], [542, 341], [541, 340], [539, 339]]}, "center": {"96-166, T:0-1": [554, 335]}},
{"id": "tx9lvj", "name": "Gol D. Roger's hat", "description": "Roger's pirate hat depicting his Jolly Roger. Repeatedly given blue eyes as a reference to Sans, a skeleton from Undertale, despite efforts to subdue it.", "links": {"website": ["https://onepiece.fandom.com/wiki/Gol_D._Roger"], "subreddit": ["OnePiece"]}, "path": {"109-166, T:0-1": [[1670, 1201], [1702, 1200], [1703, 1216], [1670, 1216], [1670, 1202]]}, "center": {"109-166, T:0-1": [1686, 1208]}},
{"id": "tx9lh4", "name": "Qynoa's Whelp", "description": "A dragon whelp, representing the community of twitch streamer Qynoa (pictured above, right).", "links": {"website": ["https://www.twitch.tv/qynoa"]}, "path": {"109-166, T:0-1": [[1628, 1931], [1634, 1931], [1634, 1939], [1631, 1939], [1631, 1935], [1628, 1935]]}, "center": {"109-166, T:0-1": [1632, 1934]}},
@@ -3795,7 +3785,7 @@
{"id": "tx9jyg", "name": "MILGRAM", "description": "Logo of the interactive music project MILGRAM, created by VOCALOID song producer DECO*27 and writer Takuya Yamanaka.", "links": {"website": ["https://milgram.jp/"]}, "path": {"153-164, T:0-1": [[1905, 1227], [1923, 1227], [1923, 1247], [1904, 1247], [1904, 1227], [1906, 1227]], "122-151": [[1980, 1291], [1999, 1291], [1999, 1272], [1980, 1272]]}, "center": {"153-164, T:0-1": [1914, 1237], "122-151": [1990, 1282]}},
{"id": "tx9jwp", "name": "Tohru", "description": "A small pixel art of Tohru from the Manga/Anime Miss Kobayashi's Dragon Maid.", "links": {}, "path": {"109-166, T:0-1": [[1141, 1845], [1154, 1845], [1154, 1847], [1152, 1847], [1152, 1856], [1138, 1856], [1138, 1848]]}, "center": {"109-166, T:0-1": [1145, 1851]}},
{"id": "tx9jwl", "name": "Trans-Italy-Mexico heart", "description": "A heart depicting the transgender, Italian, and Mexican flags.\n\nThis heart used to be between the three flags but was removed and redone as a trans-Italian heart at a higher position.", "links": {"website": ["https://en.wikipedia.org/wiki/Italy", "https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Transgender"], "subreddit": ["transplace", "PlaceMexico", "MexicoPlace", "Mexico", "italy", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"119-123, 77-79, 99-105": [[783, 444], [780, 447], [780, 451], [787, 458], [794, 451], [794, 447], [791, 444]]}, "center": {"119-123, 77-79, 99-105": [787, 450]}},
-{"id": "tx9jko", "name": "Kobe Bryant jersey", "description": "An homage to legendary NBA player Kobe Bryant, who passed away tragically in 2020. This jersey, with its purple, gold, and number 24, is heavily associated with Bryant and his career with the Los Angeles Lakers.", "links": {"website": ["https://r/nba"]}, "path": {"109-165, T:0-1": [[770, 1500], [770, 1511], [780, 1511], [780, 1500]]}, "center": {"109-165, T:0-1": [775, 1506]}},
+{"id": "tx9jko", "name": "Kobe Bryant jersey", "description": "An homage to legendary NBA player Kobe Bryant, who passed away tragically in 2020. This jersey, with its purple, gold, and number 24, is heavily associated with Bryant and his career with the Los Angeles Lakers.", "links": {"website": ["https://en.wikipedia.org/wiki/Kobe_Bryant"], "subreddit": ["nba"]}, "path": {"109-165, T:0-1": [[770, 1500], [770, 1511], [780, 1511], [780, 1500]]}, "center": {"109-165, T:0-1": [775, 1506]}},
{"id": "tx9jhn", "name": "SteepAtticStairs Logo", "description": "The logo of SteepAtticStairs", "links": {"website": ["https://github.com/SteepAtticStairs"]}, "path": {"109-166, T:0-1": [[1164, 1805], [1167, 1805], [1167, 1808], [1164, 1808]]}, "center": {"109-166, T:0-1": [1166, 1807]}},
{"id": "tx9j2c", "name": "Indian elephant", "description": "Elephants were highly valued by the rulers of India for their power in battle and their majestic dignity as ceremonial mounts.\n\nThis Indian elephant became a symbol of friendship between India and Denmark, along with the Danish swan.", "links": {"website": ["https://en.wikipedia.org/wiki/Indian_elephant"], "subreddit": ["IndiaPlace", "IndianPlace", "india"]}, "path": {"89-166, T:0-1": [[482, 324], [482, 327], [486, 327], [491, 322], [491, 335], [492, 336], [494, 336], [495, 336], [495, 341], [496, 342], [504, 342], [505, 341], [507, 341], [507, 338], [506, 337], [510, 337], [510, 341], [512, 342], [520, 342], [521, 341], [522, 340], [530, 340], [531, 339], [531, 331], [534, 331], [534, 322], [532, 322], [532, 326], [531, 327], [531, 307], [530, 306], [494, 306], [494, 307], [493, 307], [492, 309], [491, 309], [491, 316]]}, "center": {"89-166, T:0-1": [509, 321]}},
{"id": "tx9izt", "name": "Columbus Blue Jackets abbreviation and #80 (Matīss Kivlenieks memorial)", "description": "The Columbus Blue Jackets (often simply referred to as the Jackets) are a professional ice hockey team based in Columbus, Ohio.\n\nThe number 80 is used as a memorial for Matīss Kivlenieks, who played for the team and was tragically killed in 2021", "links": {"website": ["https://www.nhl.com/bluejackets"], "subreddit": ["BlueJackets"]}, "path": {"109-166, T:0-1": [[561, 1367], [560, 1368], [560, 1391], [568, 1392], [567, 1368]]}, "center": {"109-166, T:0-1": [564, 1380]}},
@@ -3816,7 +3806,7 @@
{"id": "tx9fcm", "name": "Trust me", "description": "A recurring line uttered in Titanfall 2 by BT-7274, the Titan of main character Jack Cooper, in the game's campaign mode, including during the story's climax.", "links": {"website": ["https://www.youtube.com/watch?v=zPnY-4HAsMo"], "subreddit": ["titanfall2", "titanfall"]}, "path": {"42-102": [[686, 61], [686, 71], [706, 71], [706, 61]], "103-166, T:0-1": [[819, 61], [819, 69], [839, 69], [839, 61]]}, "center": {"42-102": [696, 66], "103-166, T:0-1": [829, 65]}},
{"id": "tx9eht", "name": "Eret", "description": "Eret (any pronouns) is a popular variety (largely Minecraft) streamer known for their character on the Dream SMP (survival multiplayer). They are also gender-queer and bisexual, and tend to attract a lot of LGBTQ viewers.", "links": {"website": ["https://www.twitch.tv/eret"], "subreddit": ["Eret", "DreamSMP"]}, "path": {"46-165, T:0-1": [[146, 899], [155, 899], [155, 908], [146, 908]]}, "center": {"46-165, T:0-1": [151, 904]}},
{"id": "tx9e55", "name": "ChopHouse", "description": "ChopHouse is a Discord server of a small community of friends.", "links": {}, "path": {"108-125, 132-166, T:0-1": [[1689, 248], [1689, 256], [1706, 256], [1706, 248]]}, "center": {"108-125, 132-166, T:0-1": [1698, 252]}},
-{"id": "tx9dzr", "name": "NMIXX", "description": "NMIXX (엔믹스) is a seven-member girl group under JYP Entertainment. They debuted on February 22, 2022 with the single album \"Ad Mare\", containing the title track \"O.O\". Their name NMIXX is a word made up of the letter 'N', which means now, new, close and the unknown, and the word \"MIX\", which symbolizes combination and diversity, meaning \"the best combination for a new era\".", "links": {"website": ["https://nmixx.jype.com/"], "subreddit": ["NMIXX"]}, "path": {"56-166, T:0-1": [[1488, 869], [1512, 869], [1512, 879], [1488, 879]]}, "center": {"56-166, T:0-1": [1500, 874]}},
+{"id": "tx9dzr", "name": "NMIXX", "description": "NMIXX (엔믹스) is a seven-member girl group under JYP Entertainment. They debuted on February 22, 2022 with the single album \"Ad Mare\", containing the title track \"O.O\". Their name NMIXX is a word made up of the letter 'N', which means \"now\", \"new\", \"close\", and \"unknown\", and the word \"MIX\", which symbolizes combination and diversity. Combined, the name means \"the best combination for a new era\".", "links": {"website": ["https://nmixx.jype.com/", "https://en.wikipedia.org/wiki/Nmixx"], "subreddit": ["NMIXX", "kpop"]}, "path": {"67-166, T:0-1": [[1488, 869], [1512, 869], [1512, 879], [1488, 879]]}, "center": {"67-166, T:0-1": [1500, 874]}},
{"id": "tx9dy0", "name": "Kim Dokja", "description": "The main character from Korean web novel and comic Omniscient Reader's Viewpoint. This is Perryja.", "links": {"subreddit": ["OmniscientReader"]}, "path": {"140-159": [[31, 1069], [41, 1069], [41, 1081], [31, 1081]]}, "center": {"140-159": [36, 1075]}},
{"id": "tx9dig", "name": "Mundo Pixelmon 3", "description": "Just before the huge battle between France and Spain, here was the Mundo Pixelmon 3 logo, a Spanish Twitch series featuring Minecraft and Pokémon from the streamers @FolagoR and @FrigoAdri. It is currently in its third season ongoing with 40 famous Spanish-speaker streamers. Logo was made by @Layxent, head of staff from the series.", "links": {"website": ["https://twitter.com/Mundo_Pixelmon/status/1510783415913791490?s=20&t=Fwdf5ZwZ4Fjlt6rMdYt5Cw"]}, "path": {"109-166, T:0-1": [[1956, 1119], [1956, 1105], [1929, 1106], [1930, 1118]]}, "center": {"109-166, T:0-1": [1943, 1112]}},
{"id": "tx9deb", "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", "de", "germany"], "discord": ["placeDE"]}, "path": {"149-154": [[259, 178], [257, 180], [257, 181], [261, 185], [265, 181], [263, 178], [271, 178], [269, 180], [269, 181], [273, 185], [277, 181], [277, 180], [275, 178]], "99-148": [[259, 178], [257, 180], [257, 181], [261, 185], [265, 181], [265, 180], [263, 178]], "94-98": [[259, 178], [257, 180], [257, 193], [261, 197], [230, 197], [230, 202], [223, 202], [221, 204], [221, 205], [225, 209], [229, 205], [227, 202], [230, 202], [230, 197], [261, 197], [265, 193], [265, 192], [263, 190], [257, 190], [257, 181], [261, 185], [265, 181], [265, 180], [263, 178]], "88-93": [[199, 172], [197, 174], [197, 175], [201, 179], [213, 179], [216, 176], [216, 192], [218, 192], [218, 203], [221, 203], [221, 205], [225, 209], [229, 205], [229, 204], [227, 202], [223, 202], [222, 203], [218, 203], [218, 192], [216, 192], [216, 185], [261, 185], [265, 181], [265, 180], [263, 178], [259, 178], [257, 180], [257, 181], [261, 185], [264, 185], [264, 191], [263, 192], [263, 193], [267, 197], [271, 193], [271, 192], [269, 190], [264, 190], [264, 185], [276, 185], [275, 186], [275, 187], [279, 191], [283, 187], [283, 186], [281, 184], [276, 184], [276, 179], [297, 179], [293, 175], [293, 174], [294, 173], [299, 173], [299, 189], [297, 191], [293, 187], [293, 186], [295, 184], [299, 184], [299, 177], [297, 179], [276, 179], [276, 185], [216, 185], [216, 191], [195, 191], [191, 187], [191, 186], [193, 184], [197, 184], [199, 186], [199, 187], [195, 191], [216, 191], [216, 185], [276, 185], [276, 179], [299, 179], [299, 207], [297, 209], [293, 205], [293, 204], [295, 202], [299, 202], [299, 179], [276, 179], [276, 185], [216, 185], [216, 172]], "74-77": [[217, 178], [215, 180], [215, 181], [219, 185], [264, 185], [263, 186], [263, 187], [267, 191], [271, 187], [271, 186], [269, 184], [265, 184], [264, 185], [219, 185], [223, 181], [223, 180], [221, 178]], "70-73": [[265, 184], [263, 186], [263, 187], [267, 191], [271, 187], [271, 186], [269, 184]], "57-69": [[247, 178], [245, 180], [245, 187], [249, 191], [267, 191], [271, 187], [271, 180], [269, 178]], "50-53": [[241, 172], [239, 174], [239, 175], [243, 179], [245, 179], [245, 187], [249, 191], [273, 191], [277, 187], [277, 186], [275, 184], [253, 184], [253, 180], [251, 178], [247, 178], [247, 174], [245, 172]], "45-49": [[253, 184], [251, 186], [251, 187], [255, 191], [259, 187], [259, 186], [257, 184]], "54-56": [[247, 178], [245, 180], [245, 187], [249, 191], [267, 191], [271, 187], [271, 186], [269, 184], [259, 184], [259, 180], [257, 178], [258, 178], [258, 172], [143, 172], [145, 174], [145, 175], [141, 179], [137, 175], [137, 174], [139, 172], [258, 172], [258, 178]], "83-87": [[198, 184], [193, 184], [191, 186], [191, 187], [195, 191], [199, 187], [199, 186], [198, 185], [198, 176], [197, 175], [197, 174], [199, 172], [203, 172], [205, 174], [205, 175], [201, 179], [198, 176], [198, 184], [222, 184], [222, 191], [218, 191], [218, 202], [225, 209], [229, 205], [229, 204], [227, 202], [223, 202], [221, 204], [220, 204], [218, 202], [218, 191], [222, 191], [222, 184], [260, 184], [257, 181], [257, 180], [259, 178], [296, 178], [293, 175], [293, 174], [294, 173], [299, 173], [299, 189], [297, 191], [296, 190], [280, 190], [279, 191], [278, 190], [269, 190], [271, 192], [271, 193], [267, 197], [263, 193], [263, 192], [265, 190], [278, 190], [275, 187], [275, 186], [277, 184], [281, 184], [283, 186], [283, 187], [280, 190], [293, 190], [295, 192], [295, 193], [291, 197], [287, 193], [287, 192], [289, 190], [296, 190], [293, 187], [293, 186], [295, 184], [299, 184], [299, 178], [298, 178], [297, 179], [296, 178], [263, 178], [265, 180], [265, 181], [261, 185], [260, 184]], "156-165, T:0-1": [[295, 190], [293, 192], [293, 193], [297, 197], [299, 195], [299, 190]]}, "center": {"149-154": [261, 181], "99-148": [261, 181], "94-98": [225, 205], "88-93": [210, 176], "74-77": [219, 181], "70-73": [267, 187], "57-69": [258, 185], "50-53": [259, 187], "45-49": [255, 187], "54-56": [252, 185], "83-87": [195, 187], "156-165, T:0-1": [297, 193]}},
@@ -3867,7 +3857,7 @@
{"id": "tx91nh", "name": "UBI", "description": "Logótipo da Universidade da Beira Interior", "links": {"website": ["https://www.ubi.pt/"]}, "path": {"109-166, T:0-1": [[879, 1611], [890, 1611], [890, 1622], [879, 1622]]}, "center": {"109-166, T:0-1": [885, 1617]}},
{"id": "tx91mw", "name": "DeqiuV", "description": "Spanish streamer with more than 300,000 followers. Streams games like Minecraft, Grand Theft Auto, Valorant, and Fortnite.", "links": {"website": ["https://www.twitch.tv/deqiuv"]}, "path": {"109-165, T:0-1": [[1083, 1303], [1131, 1303], [1131, 1312], [1083, 1312]]}, "center": {"109-165, T:0-1": [1107, 1308]}},
{"id": "tx91iz", "name": "The Grateful Dead", "description": "The Grateful Dead was an American rock band formed in 1965 in Palo Alto, California. The band is known for its eclectic style, which fused elements of rock, folk, country, jazz, bluegrass, blues, rock and roll, gospel, reggae, world music, and psychedelia; for live performances of lengthy instrumental jams that typically incorporated modal and tonal improvisation; and for its devoted fan base, known as \"Deadheads\".\n\nThis is The Grateful Dead's logo, nicknamed 'Stealie'. It was designed by Owsley Stanley, a.k.a. bear. Both the Grateful Dead and Phish are well-known jam bands with large followings, hence the collaboration on r/place.", "links": {"website": ["https://dead.net"], "subreddit": ["gratefuldead"]}, "path": {"121-143": [[10, 904], [15, 904], [17, 905], [18, 906], [19, 906], [21, 908], [21, 909], [22, 911], [22, 918], [21, 919], [20, 921], [18, 922], [17, 923], [8, 923], [7, 922], [5, 921], [4, 919], [3, 918], [3, 911], [4, 909], [4, 908], [6, 906], [7, 906], [8, 905]], "152-166, T:0-1": [[10, 930], [16, 930], [23, 924], [26, 917], [25, 910], [19, 904], [11, 903], [6, 904], [1, 909], [0, 917], [1, 923], [7, 928]]}, "center": {"121-143": [13, 914], "152-166, T:0-1": [13, 916]}},
-{"id": "tx90yt", "name": "fromis_9", "description": "Logo of the K-pop girl group fromis_9 formed by CJ E&M through the 2017 reality show Idol School.", "links": {"website": ["https://en.wikipedia.org/wiki/Fromis_9"], "subreddit": ["Fromis"]}, "path": {"56-166, T:0-1": [[1505, 890], [1505, 897], [1513, 897], [1513, 890]]}, "center": {"56-166, T:0-1": [1509, 894]}},
+{"id": "tx90yt", "name": "fromis_9", "description": "fromis_9 is a K-pop girl group formed by CJ E&M through the 2017 reality show Idol School.", "links": {"website": ["https://www.pledis.co.kr/html/artist/fromisnine/", "https://en.wikipedia.org/wiki/Fromis_9"], "subreddit": ["Fromis", "kpop"]}, "path": {"83-166, T:0-1": [[1504, 889], [1504, 898], [1514, 898], [1514, 889]]}, "center": {"83-166, T:0-1": [1509, 894]}},
{"id": "tx90sv", "name": "DomCassé", "description": "Community of Quebec streamer DomCassé on Twitch. \"We just wanted to write the word \"ass\" (\"cul\") in French.\"", "links": {"website": ["https://www.twitch.tv/domcasse"]}, "path": {"109-165, T:0-1": [[885, 1016], [902, 1016], [902, 1073], [885, 1073], [886, 1073], [885, 1074]]}, "center": {"109-165, T:0-1": [894, 1045]}},
{"id": "tx9040", "name": "Luxembourg heart", "description": "A heart depicting the flag of Luxembourg, a country in Western Europe.\n\nThis heart was created to commemorate the alliance between Luxembourg and Belgium, working together and helping each other during the event as neighbors and brothers.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Flag_of_Luxembourg"], "subreddit": ["Luxembourg"]}, "path": {"64-83, 90-133": [[288, 781], [285, 784], [285, 786], [290, 791], [295, 786], [295, 784], [292, 781]], "134-166, T:0-1": [[286, 780], [283, 783], [283, 786], [290, 793], [297, 786], [297, 783], [294, 780]]}, "center": {"64-83, 90-133": [290, 785], "134-166, T:0-1": [290, 785]}},
{"id": "tx903f", "name": "Mother of Learning", "description": "A time loop web serial that's widely considered one of the medium's best, with fantastic worldbuilding and sapient spiders.", "links": {"website": ["https://www.royalroad.com/fiction/21220/mother-of-learning"], "subreddit": ["motheroflearning"]}, "path": {"109-166, T:0-1": [[1780, 1323], [1786, 1323], [1786, 1316], [1790, 1316], [1791, 1315], [1792, 1314], [1793, 1313], [1792, 1312], [1790, 1312], [1790, 1310], [1789, 1309], [1787, 1309], [1786, 1308], [1785, 1308], [1784, 1309], [1783, 1310], [1782, 1311], [1782, 1312], [1780, 1312]]}, "center": {"109-166, T:0-1": [1785, 1315]}},
@@ -3897,7 +3887,7 @@
{"id": "tx8ug7", "name": "UvaCBW", "description": "This is my fifth attempt to recreate my avatar on the canvas. It was left unfinished by the end of r/place.", "links": {"website": ["https://www.reddit.com/user/UvaCBW"]}, "path": {"160-162": [[113, 777], [113, 781], [117, 781], [117, 777]], "143-157": [[105, 811], [105, 815], [109, 815], [109, 811]], "163-166": [[1445, 1996], [1445, 2000], [1449, 2000], [1449, 1996]]}, "center": {"160-162": [115, 779], "143-157": [107, 813], "163-166": [1447, 1998]}},
{"id": "tx8ubs", "name": "Purple Pickles alliance area", "description": "the area with groups from Sank, Phoenotopia and Warhammer40k, name deriving from the positioning of the Dreadnaught and Gail being reminiscent of the 'he ask for no pickles' meme, and Sank being done in mostly purple pixels.", "links": {"subreddit": ["phoenotopia", "Warhammer40k"]}, "path": {"122-164, T:0-1": [[1856, 1250], [1883, 1250], [1883, 1228], [1856, 1228]]}, "center": {"122-164, T:0-1": [1870, 1239]}},
{"id": "tx8u6l", "name": "Among Us pride", "description": "Four small Among Us crewmates created with the colours of, from left to right, The lesbian flag, The bisexual flag, The trans flag and the classic gay rainbow flag. Probably created by independent Reddit users without a connection to a larger subreddit.", "links": {}, "path": {"1-166, T:0-1": [[270, 989], [270, 988], [269, 988], [269, 987], [269, 986], [270, 986], [270, 985], [272, 985], [272, 986], [273, 986], [274, 986], [274, 985], [276, 985], [276, 986], [277, 986], [278, 986], [278, 985], [280, 985], [280, 986], [281, 986], [282, 986], [282, 985], [284, 985], [284, 989]]}, "center": {"1-166, T:0-1": [277, 987]}},
-{"id": "tx8u25", "name": "SOMETHING", "description": "SOMETHING is a major antagonist in the 2020 video game OMORI. It is the representation of protagonist SUNNY's guilt and trauma after having witnessed his sister's early death.\n\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": {"5-54": [[986, 801], [997, 801], [1000, 804], [1000, 835], [996, 853], [990, 853], [986, 833], [985, 833], [984, 836], [981, 839], [980, 838], [980, 829], [983, 813]], "55-165, T:0-1": [[999, 802], [1002, 805], [1005, 828], [1005, 843], [1003, 846], [1001, 841], [999, 840], [998, 843], [996, 852], [993, 857], [988, 850], [985, 839], [981, 843], [979, 841], [979, 827], [984, 803], [985, 802]]}, "center": {"5-54": [991, 822], "55-165, T:0-1": [992, 828]}},
+{"id": "tx8u25", "name": "SOMETHING", "description": "SOMETHING is a major antagonist in the 2020 video game OMORI. It is the representation of protagonist SUNNY's guilt and trauma after having witnessed his sister's early death.\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": {"5-54": [[986, 801], [997, 801], [1000, 804], [1000, 835], [996, 853], [990, 853], [986, 833], [985, 833], [984, 836], [981, 839], [980, 838], [980, 829], [983, 813]], "55-165, T:0-1": [[999, 802], [1002, 805], [1005, 828], [1005, 843], [1003, 846], [1001, 841], [999, 840], [998, 843], [996, 852], [993, 857], [988, 850], [985, 839], [981, 843], [979, 841], [979, 827], [984, 803], [985, 802]]}, "center": {"5-54": [991, 822], "55-165, T:0-1": [992, 828]}},
{"id": "tx8tse", "name": "Super Box World Guy", "description": "Super Box World Guy is a character created in 2018 as a placeholder character for a defunct game called Super Box World. He has since become an inside joke among friends, making his way into everything.", "links": {}, "path": {"70-127": [[1336, 488], [1336, 495], [1343, 495], [1343, 488]], "133-164, T:0-1": [[1335, 447], [1344, 447], [1344, 456], [1335, 456]]}, "center": {"70-127": [1340, 492], "133-164, T:0-1": [1340, 452]}},
{"id": "tx8tl0", "name": "Novow heart", "description": "A heart in the favorite colors of Nova and Sparrow, who are dating!", "links": {}, "path": {"109-164, T:0-1": [[261, 1537], [269, 1537], [268, 1544], [261, 1544]]}, "center": {"109-164, T:0-1": [265, 1540]}},
{"id": "tx8seg", "name": "Eye of Horus", "description": "The Eye of Horus is a symbol from the game Warhammer 30k. It is a symbol of the Sons of Horus (previously Luna Wolves), the favored son of the Emperor of Mankind. Their leader and Primarch, Horus, was said to be the greatest of the Emperor's Primarch, and earned the title of Warmaster. Corrupted by Chaos, Horus later betrays the Emperor, kicking off the bloodiest civil war in galactic history: the Horus Heresy. This symbol turned from one of hope to one of fear.\n\nThe original idea of this art was from u/ghazgkhullthraka. r/Warhammer30k added additional textures. After two failed attempts, the eye was made possible with an alliance with r/outerwilds. Even though people meant well, the pupil of the eye is supposed to be two pixels long, not three.", "links": {"website": ["https://warhammer40k.fandom.com/wiki/Sons_of_the_Eye"], "subreddit": ["40kLore", "Warhammer30k", "Grimdank"]}, "path": {"63-166, T:0-1": [[1669, 637], [1663, 640], [1662, 641], [1663, 642], [1669, 645], [1671, 645], [1677, 642], [1678, 641], [1677, 640], [1671, 637]]}, "center": {"63-166, T:0-1": [1670, 641]}},
@@ -3966,14 +3956,14 @@
{"id": "tx8baa", "name": "Jamel", "description": "Jamel is the meme mascot of the r/Marioverse subreddit and Discord server, a community dedicated to discussing and theorizing about lore in the Mario series. Its name comes from an incident where a user tried to type the magician character \"Kamek\", but the name was auto-corrected to \"Jamel\".", "links": {"subreddit": ["Marioverse"], "discord": ["nADDq2a"]}, "path": {"137-150": [[1393, 368], [1390, 371], [1390, 378], [1403, 378], [1403, 368]], "151-164, T:0-1": [[1395, 368], [1395, 378], [1406, 378], [1406, 370], [1404, 368]]}, "center": {"137-150": [1397, 373], "151-164, T:0-1": [1401, 373]}},
{"id": "tx8b70", "name": "The Front Bottoms", "description": "This art depicts The Front Bottoms's self-titled debut album, which released in 2011.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Front_Bottoms_(album)"], "subreddit": ["TheFrontBottoms"]}, "path": {"114-141": [[1722, 609], [1722, 627], [1743, 627], [1743, 609]], "105-113": [[1722, 617], [1722, 626], [1743, 626], [1743, 617]], "142-166, T:0-1": [[1722, 609], [1722, 627], [1737, 627], [1737, 609]]}, "center": {"114-141": [1733, 618], "105-113": [1733, 622], "142-166, T:0-1": [1730, 618]}},
{"id": "tx8arl", "name": "Kiwi", "description": "There was a time that this was a kiwi made just for fun with some friends, but sadly someone covered it with yellow", "links": {"website": ["https://mequuwi.carrd.co"]}, "path": {"109-166, T:0-1": [[1705, 1171], [1705, 1167], [1708, 1165], [1712, 1166], [1712, 1171]]}, "center": {"109-166, T:0-1": [1709, 1168]}},
-{"id": "tx8apb", "name": "God Gamer Gauntlet", "description": "The three games that make up the God Gamer Gauntlet, Pogostuck, Getting over it and Jump King", "links": {}, "path": {"56-166, T:0-1": [[1200, 804], [1201, 829], [1239, 829], [1239, 805]]}, "center": {"56-166, T:0-1": [1220, 817]}},
+{"id": "tx8apb", "name": "God Gamer Gauntlet", "description": "The God Gamer Gauntlet (GGG) is a challenge/speedrun where players play through three notoriously difficult games in a row: Pogostuck, Getting Over It, and Jump King. The challenge was popularized by Twitch streamer Ludwig, and can be completed under an hour by skilled players.", "links": {"website": ["https://www.youtube.com/watch?v=O43zVGzMv_A"], "subreddit": ["GettingOverItGame", "PogoStuck"]}, "path": {"98-166, T:0-1": [[1200, 804], [1200, 823], [1228, 823], [1228, 826], [1232, 830], [1236, 830], [1239, 827], [1239, 807], [1235, 807], [1235, 805], [1232, 802], [1226, 802], [1224, 804], [1223, 804], [1223, 802], [1217, 802], [1217, 804]]}, "center": {"98-166, T:0-1": [1223, 821]}},
{"id": "tx8aoy", "name": "MÁV Class V43", "description": "The MÁV Class V43 is a Hungarian-made electric locomotive. It is one of the most widespread classes of electric locomotive in Hungary, with a total of 379 locomotives manufactured from 1963-1982. It is still in use on both passenger and freight trains.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%81V_Class_V43"], "subreddit": ["hungary"]}, "path": {"107-166, T:0-1": [[1199, 276], [1199, 274], [1192, 274], [1192, 271], [1193, 271], [1193, 262], [1195, 262], [1196, 261], [1198, 256], [1202, 253], [1206, 255], [1210, 255], [1212, 258], [1217, 258], [1219, 260], [1229, 260], [1229, 262], [1227, 263], [1224, 267], [1224, 273], [1224, 276], [1223, 276]]}, "center": {"107-166, T:0-1": [1205, 266]}},
{"id": "tx8am7", "name": "Black Spirit", "description": "The Black Spirit is a mysterious entity that serves as your companion along your travel in Black Desert Online.", "links": {}, "path": {"109-166, T:0-1": [[1586, 1983], [1587, 1998], [1602, 1999], [1601, 1983], [1596, 1983], [1595, 1983], [1596, 1983], [1592, 1983]]}, "center": {"109-166, T:0-1": [1594, 1991]}},
{"id": "tx8aij", "name": "Mario Star Power-Up", "description": "A power-up from the game Franchise Mario Brothers.", "links": {}, "path": {"109-166, T:0-1": [[872, 1858], [884, 1858], [884, 1870], [872, 1870]]}, "center": {"109-166, T:0-1": [878, 1864]}},
{"id": "tx8a59", "name": "Hot air balloons", "description": "The hot air balloon was invented by two French brothers in 1782: les frères Montgolfier.", "links": {"website": ["https://en.wikipedia.org/wiki/Hot_air_balloon"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"143-165, T:0-1": [[134, 398], [129, 403], [129, 409], [134, 419], [137, 419], [140, 415], [141, 402], [154, 403], [154, 419], [155, 423], [158, 423], [158, 436], [159, 437], [159, 442], [162, 446], [166, 446], [172, 432], [172, 428], [166, 422], [164, 422], [161, 424], [158, 428], [158, 423], [161, 420], [163, 408], [159, 403], [141, 403], [138, 399], [136, 398]]}, "center": {"143-165, T:0-1": [165, 431]}},
{"id": "tx89wk", "name": "DessT3", "description": "Minecraft skin of a Spanish streamer and role-player originally from Galicia. Its main content focuses on Grand Theft Auto V.", "links": {"website": ["https://www.twitch.tv/desst3"]}, "path": {"109-165, T:0-1": [[1105, 1255], [1104, 1255], [1107, 1252], [1108, 1251], [1099, 1251], [1099, 1259], [1108, 1259], [1108, 1253]]}, "center": {"109-165, T:0-1": [1103, 1255]}},
{"id": "tx89uf", "name": "Krinios", "description": "Minecraft content creator Ryan Krinios has his Minecraft head placed here by Krinnies upon request via Twitter and Discord. Temporarily changed to the head of fellow Minecraft content creator JoshA20 after an agreement with Krinios on Twitter.", "links": {"website": ["https://www.twitch.tv/krinios"], "subreddit": ["Krinios"]}, "path": {"77-86": [[182, 953], [191, 953], [191, 962], [182, 962]], "113-166, T:0-1": [[200, 908], [209, 908], [209, 917], [200, 917]]}, "center": {"77-86": [187, 958], "113-166, T:0-1": [205, 913]}},
-{"id": "tx89tq", "name": "ABR", "description": "The first letters of a French online community, les Abrutis, ith a French flag as background.", "links": {}, "path": {"56-165, T:0-1": [[1117, 844], [1121, 844], [1121, 862], [1117, 862]]}, "center": {"56-165, T:0-1": [1119, 853]}},
+{"id": "tx89tq", "name": "les Abrutis", "description": "les Abrutis (ABR) is a French online community. This art features a French flag as a background.", "links": {}, "path": {"116-165, T:0-1": [[1117, 843], [1117, 863], [1121, 863], [1121, 843]]}, "center": {"116-165, T:0-1": [1119, 853]}},
{"id": "tx89pg", "name": "GDS (Game Development Society)", "description": "GDS is a society at the University of Birmingham dedicated to learning to create video games and helping one another through the process.", "links": {"website": ["https://www.birmingham.ac.uk/university/colleges/eps/eps-community/students/societies/games-development.aspx"]}, "path": {"109-166, T:0-1": [[8, 1237], [15, 1237], [15, 1240], [8, 1240]]}, "center": {"109-166, T:0-1": [12, 1239]}},
{"id": "tx89h8", "name": "Voxel's face", "description": "Credit to the boys for getting my avatar on the taskbar.", "links": {"website": ["https://www.reddit.com/user/Voxeltheslime/"]}, "path": {"109-165, T:0-1": [[122, 1998], [128, 1998], [128, 1999], [122, 1999]]}, "center": {"109-165, T:0-1": [125, 1999]}},
{"id": "tx88ue", "name": "Logo of Slovak University of Technology", "description": "This is logo of Slovak University of Technology (STU - Slovenská Technická Univerzita) and few of its faculties.\n\nFIIT - Faculty of Informatics and Information Technology\nFEI - Faculty of Electrical engineering and Information technology\n\nThey were created and defended by us students and with the help and in coalition with r/Slovakia, #dc Slovakia Place 2022 and its allies.\n\nWe are happy that we made it onto the canvas :).\n\nUvidíme sa nabudúce!\nSee you next time!", "links": {"website": ["https://www.stuba.sk/english.html?page_id=132"], "subreddit": ["Slovakia"]}, "path": {"109-166, T:0-1": [[528, 1646], [550, 1646], [550, 1668], [528, 1668]]}, "center": {"109-166, T:0-1": [539, 1657]}},
@@ -3985,7 +3975,7 @@
{"id": "tx87v7", "name": "Fundy", "description": "The famous Minecraft YouTuber and streamer. Also a coder, musician and game developer from Netherlands. Such a great guy!", "links": {"website": ["https://www.youtube.com/c/Fundy"], "subreddit": ["Fundy"]}, "path": {"33-36": [[182, 917], [191, 917], [191, 926], [182, 926]], "37-166, T:0-1": [[173, 926], [182, 926], [182, 935], [173, 935]]}, "center": {"33-36": [187, 922], "37-166, T:0-1": [178, 931]}},
{"id": "tx87qa", "name": "Kanohi Hau", "description": "Kanohi Hau is a mask from Bionicle, a line of Lego toys that debuted in 2001. The mask is worn by the character Toa Tahu and offers protection to its user.", "links": {"website": ["https://bionicle.fandom.com/wiki/Hau"], "subreddit": ["bioniclelego"]}, "path": {"73-164, T:0-1": [[1151, 443], [1148, 445], [1145, 448], [1145, 460], [1161, 460], [1161, 448], [1157, 444], [1155, 443]]}, "center": {"73-164, T:0-1": [1153, 452]}},
{"id": "tx87m2", "name": "Cxlvxn", "description": "Cxlvxn (Calvin) is a Minecraft YouTuber known mostly for PvP (player-vs.-player).", "links": {"website": ["https://www.youtube.com/rodtricked"]}, "path": {"47-165, T:0-1": [[155, 926], [164, 926], [164, 935], [155, 935]]}, "center": {"47-165, T:0-1": [160, 931]}},
-{"id": "tx87dj", "name": "4chan logo", "description": "This clover represents the logo of 4chan, an immensely popular imageboard.", "links": {}, "path": {"56-166, T:0-1": [[1733, 872], [1734, 883], [1747, 883], [1746, 870], [1733, 871]]}, "center": {"56-166, T:0-1": [1740, 877]}},
+{"id": "tx87dj", "name": "4chan", "description": "This clover represents the logo of 4chan, an immensely popular imageboard.", "links": {"website": ["http://www.4chan.org/", "https://en.wikipedia.org/wiki/4chan"], "subreddit": ["sneedposting"]}, "path": {"137-165, T:0-1": [[1735, 871], [1733, 873], [1733, 875], [1734, 876], [1734, 882], [1736, 884], [1738, 884], [1739, 883], [1745, 883], [1747, 881], [1747, 879], [1746, 878], [1746, 872], [1744, 870], [1742, 870], [1741, 871]]}, "center": {"137-165, T:0-1": [1740, 877]}},
{"id": "tx87by", "name": "EJ_SA", "description": "EJ_SA, real name Eric Johnson, is an educational Twitch streamer teaching people about space and science while playing games.", "links": {"website": ["https://www.twitch.tv/ej_sa"]}, "path": {"159-160": [[806, 629], [806, 635], [809, 635], [809, 637], [812, 637], [812, 631], [813, 631], [813, 629]]}, "center": {"159-160": [809, 632]}},
{"id": "tx877z", "name": "Tairitsu's bow", "description": "Asset of one of the two main characters of Arcaea (Tairitsu), representing Conflict.", "links": {"website": ["https://arcaea.lowiro.com/en"], "subreddit": ["arcaea"]}, "path": {"109-166, T:0-1": [[1831, 1650], [1832, 1650], [1833, 1652], [1834, 1653], [1835, 1653], [1836, 1654], [1834, 1654], [1835, 1655], [1833, 1656], [1831, 1657], [1830, 1658], [1830, 1659], [1829, 1658], [1830, 1657], [1829, 1656], [1830, 1655], [1830, 1654], [1832, 1654], [1832, 1656], [1830, 1653], [1829, 1653], [1829, 1652], [1830, 1651], [1832, 1654], [1832, 1655], [1831, 1654], [1832, 1653], [1832, 1654], [1835, 1653], [1835, 1652], [1834, 1652], [1836, 1653], [1833, 1656], [1832, 1653], [1831, 1654], [1830, 1653], [1830, 1654], [1831, 1654]]}, "center": {"109-166, T:0-1": [1832, 1654]}},
{"id": "tx875t", "name": "pepeD", "description": "pepeD is an animated BetterTTV extension Twitch emote of pixel art animation of Pepe the Frog dancing by turning left and right and raising and lowering his left and right arms. After the emoji was enabled by a number of popular streamers, it became a popular way of expressing approval of the music which is being played, or expressing joy.", "links": {"website": ["https://betterttv.com/emotes/5b1740221c5a6065a7bad4b5", "https://knowyourmeme.com/memes/peped"]}, "path": {"109-167, T:0-1": [[1773, 1604], [1773, 1597], [1786, 1597], [1786, 1604]]}, "center": {"109-167, T:0-1": [1780, 1601]}},
@@ -3994,7 +3984,7 @@
{"id": "tx86fp", "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe. This flag of Ukraine is covered in Ukrainian art such as President Zelenskyy, the tryzub, St. Sophia's Cathedral, and more.\n\nIn the first few hours of r/place, the internet worked together without coordination to create a Ukrainian flag that spanned the full width of the original canvas, a show of solidarity with Ukraine in the Russian invasion of Ukraine. Originally, the flag didn't have any art on it, which drew criticism from smaller creators who were having their works erased.\n\nThe flag eventually shrank in size, and r/placeukraine gained control of it, inscribing the subreddit's name on the flag along with various Ukrainian cultural icons.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"48-113": [[-1, 177], [0, 252], [125, 252], [125, 236], [142, 217], [157, 217], [163, 233], [163, 243], [167, 252], [433, 252], [433, 193], [337, 193], [337, 171], [221, 171], [221, 169], [27, 169], [27, 177]], "1-31": [[-1, 165], [0, 252], [1000, 252], [1000, 165]], "32-47": [[-1, 177], [0, 252], [349, 252], [349, 179], [337, 179], [337, 181], [328, 181], [328, 172], [295, 172], [295, 168], [27, 168], [27, 177]], "114-165, T:0-1": [[0, 177], [27, 177], [27, 169], [221, 169], [221, 171], [433, 171], [433, 252], [169, 252], [162, 242], [163, 225], [154, 216], [146, 216], [143, 217], [125, 237], [125, 252], [0, 252]]}, "center": {"48-113": [207, 211], "1-31": [500, 209], "32-47": [174, 210], "114-165, T:0-1": [208, 211]}},
{"id": "tx86e2", "name": "Red Vox", "description": "This is a band from New York City that was founded by Vinny from Vinesauce, Mike, Joe, and Bill. Both Vinny and Mike have a spot on the mural.", "links": {"website": ["https://www.redvoxband.com/"], "subreddit": ["Redvox", "Vinesauce"]}, "path": {"115-166, T:0-1": [[95, 1109], [99, 1110], [100, 1109], [99, 1108], [106, 1108], [107, 1106], [108, 1105], [108, 1103], [107, 1102], [107, 1100], [106, 1100], [106, 1099], [104, 1098], [102, 1097], [99, 1097], [98, 1098], [97, 1098], [96, 1099], [95, 1099], [94, 1101], [94, 1102], [93, 1103], [93, 1105], [95, 1110]]}, "center": {"115-166, T:0-1": [100, 1103]}},
{"id": "tx86d4", "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", "unitedkingdom"]}, "path": {"132-165, 53-125, T:0-1": [[607, 551], [607, 557], [615, 557], [615, 551]]}, "center": {"132-165, 53-125, T:0-1": [611, 554]}},
-{"id": "tx86ad", "name": "Chuck", "description": "Chuck is the partial owner of Sneed's Feed and Seed. After selling the store to Chuck, he mostly hangs out with Chuck on the porch.", "links": {"subreddit": ["sneedposting"]}, "path": {"56-166, T:0-1": [[1764, 893], [1756, 893], [1756, 890], [1755, 890], [1754, 891], [1753, 891], [1753, 890], [1753, 889], [1753, 888], [1752, 887], [1752, 881], [1751, 881], [1750, 880], [1749, 880], [1749, 877], [1750, 876], [1751, 875], [1752, 874], [1753, 874], [1754, 873], [1759, 873], [1760, 874], [1761, 875], [1763, 876], [1765, 876], [1765, 877], [1764, 878], [1762, 878], [1761, 879], [1761, 880], [1762, 880], [1762, 882], [1763, 882], [1764, 885], [1764, 886], [1763, 886], [1763, 888], [1764, 888], [1763, 890], [1762, 891], [1763, 892], [1764, 892]]}, "center": {"56-166, T:0-1": [1757, 883]}},
+{"id": "tx86ad", "name": "Chuck Tamzarian", "description": "Chuck Tamzarian is the partial owner of Sneed's Feed and Seed. After selling the store to Al Sneed, he mostly hangs out with Al on the porch.", "links": {"website": ["https://simpsonswiki.com/wiki/Chuck_Tamzarian"], "subreddit": ["sneedposting"]}, "path": {"127-166, T:0-1": [[1754, 873], [1749, 877], [1749, 880], [1751, 882], [1751, 887], [1752, 888], [1752, 892], [1755, 892], [1755, 894], [1765, 894], [1765, 885], [1763, 883], [1763, 879], [1765, 879], [1765, 877], [1766, 876], [1765, 875], [1761, 875], [1759, 873]]}, "center": {"127-166, T:0-1": [1757, 880]}},
{"id": "tx85g0", "name": "T:0-1", "description": "A community member reached out to the Outer Wilds Discord and asked if they could make the letter T for their friend who was in the hospital. The T was maintained for the duration of r/place. Due to attacks by a few unscrupulous individuals, This T has been immortalized as an emote. Get well, T!", "links": {"subreddit": ["outerwilds", "place_CentralAlliance"]}, "path": {"1-165, T:0-1": [[386, 945], [390, 945], [390, 950], [386, 950]]}, "center": {"1-165, T:0-1": [388, 948]}},
{"id": "tx852n", "name": "Bidoof", "description": "The Normal-type Plump Mouse Pokémon introduced in the games Pokémon Diamond & Pearl. A variety of factors like its common nature, its oft-used convenience as an 'HM Slave' in teams, and its goofy name have given it a memetic status and adoration from Pokémon fans. Its heart-shaped nose shown here is not characteristic of its usual appearance.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Bidoof_(Pok%C3%A9mon)"], "subreddit": ["PlacePokemon2"]}, "path": {"109-166, T:0-1": [[553, 1467], [549, 1471], [551, 1476], [546, 1480], [547, 1488], [555, 1500], [560, 1499], [560, 1497], [566, 1497], [568, 1499], [574, 1499], [573, 1496], [578, 1492], [580, 1495], [587, 1495], [590, 1465], [584, 1460], [577, 1459], [567, 1465], [558, 1469]]}, "center": {"109-166, T:0-1": [569, 1480]}},
{"id": "tx850x", "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": {"71-127": [[1561, 446], [1597, 446], [1597, 480], [1561, 480]], "129-166, T:0-1": [[1562, 447], [1596, 447], [1596, 464], [1590, 464], [1590, 473], [1587, 471], [1579, 471], [1576, 474], [1574, 480], [1562, 480]]}, "center": {"71-127": [1579, 463], "129-166, T:0-1": [1574, 459]}},
@@ -4005,7 +3995,7 @@
{"id": "tx84fc", "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": {"109-166, T:0-1": [[493, 1555], [500, 1555], [500, 1562], [493, 1562]]}, "center": {"109-166, T:0-1": [497, 1559]}},
{"id": "tx84eb", "name": "The Cornfield", "description": "Land Granted to us from mooncord after the alliance formed in battle.", "links": {}, "path": {"56-166, T:0-1": [[1645, 956], [1645, 919], [1648, 917], [1650, 932], [1649, 943], [1654, 942], [1654, 955]]}, "center": {"56-166, T:0-1": [1648, 940]}},
{"id": "tx84d2", "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": ["ukplace", "unitedkingdom"]}, "path": {"53-75": [[591, 551], [591, 557], [599, 557], [599, 551]], "78-165, T:0-1": [[599, 551], [599, 557], [607, 557], [607, 551]]}, "center": {"53-75": [595, 554], "78-165, T:0-1": [603, 554]}},
-{"id": "tx849j", "name": "Al Sneed", "description": "Al Sneed is the owner of Sneed's Feed and Seed, The popular meme featured in Season 11 Episode 5 of The Simpsons.", "links": {"subreddit": ["sneedposting"]}, "path": {"56-166, T:0-1": [[1768, 893], [1769, 892], [1769, 891], [1770, 890], [1771, 889], [1771, 888], [1771, 887], [1770, 887], [1770, 886], [1769, 886], [1769, 885], [1768, 885], [1768, 883], [1767, 882], [1767, 881], [1768, 880], [1768, 876], [1768, 875], [1767, 874], [1766, 874], [1766, 873], [1765, 873], [1765, 871], [1766, 870], [1780, 870], [1781, 872], [1782, 873], [1782, 884], [1783, 888], [1782, 889], [1781, 890], [1780, 891], [1779, 890], [1779, 889], [1774, 889], [1773, 890], [1772, 891], [1771, 892], [1771, 893]]}, "center": {"56-166, T:0-1": [1775, 880]}},
+{"id": "tx849j", "name": "Al Sneed", "description": "Al Sneed is the owner of Sneed's Feed and Seed, the popular meme featured in season 11, episode 5 of The Simpsons.", "links": {"website": ["https://simpsonswiki.com/wiki/Al_Sneed"], "subreddit": ["sneedposting"]}, "path": {"125-166, T:0-1": [[1766, 869], [1764, 871], [1764, 873], [1767, 876], [1767, 880], [1766, 881], [1766, 882], [1767, 883], [1767, 885], [1770, 888], [1770, 889], [1768, 891], [1767, 893], [1767, 894], [1772, 894], [1775, 890], [1778, 890], [1780, 892], [1784, 888], [1784, 885], [1783, 884], [1783, 873], [1780, 869]]}, "center": {"125-166, T:0-1": [1775, 881]}},
{"id": "tx847m", "name": "ProChameleons's fish", "description": "A fish made by u/ProChameleons and the Fish Cult subreddit", "links": {"subreddit": ["PlaceFishCult", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[491, 902], [491, 904], [494, 904], [494, 902]]}, "center": {"1-166, T:0-1": [493, 903]}},
{"id": "tx83yp", "name": "Nuker", "description": "The face of a nuker, an enemy in the Roblox game 'Minime's House: Nuked 2'.", "links": {"website": ["https://www.roblox.com/games/7274560382/Minimes-house-nuked-2-2X2-UPDATE"]}, "path": {"109-166, T:0-1": [[612, 1561], [619, 1564], [617, 1571], [611, 1571], [608, 1561]]}, "center": {"109-166, T:0-1": [614, 1566]}},
{"id": "tx83wv", "name": "Episode 137", "description": "Roman numerals for 137, which would be (as of April 2022) the next episode number if the Hello Internet podcast returns from its indefinite hiatus. Roman numerals are a running theme in the podcast.", "links": {"subreddit": ["HelloInternet", "BradyHaran", "CGPGrey"]}, "path": {"13-70, 88-166, T:0-1": [[58, 826], [58, 830], [81, 830], [81, 826]]}, "center": {"13-70, 88-166, T:0-1": [70, 828]}},
@@ -4036,12 +4026,12 @@
{"id": "tx7wpp", "name": "FOSO", "description": "FOSO is a men's floor in Gerig Hall at Taylor University in Upland, Indiana, United States. FOSO is short for \"Forth South,\" since Gerig Hall was previously called South Hall.\n\nPeace, Love, FOSO.", "links": {"website": ["https://www.instagram.com/fosoterritory/"], "subreddit": ["fosoterritory"]}, "path": {"152-160": [[0, 695], [20, 695], [20, 701], [0, 701]]}, "center": {"152-160": [10, 698]}},
{"id": "tx7win", "name": "Bob(s)", "description": "A pattern depicting Bob, a lazy cat villager from Animal Crossing, on a trans flag. Coordinated by the instagram meme account Big_Chungles.", "links": {"website": ["https://instagram.com/big_chungles"]}, "path": {"109-166, T:0-1": [[1041, 1904], [1078, 1904], [1081, 1908], [1041, 1908]]}, "center": {"109-166, T:0-1": [1060, 1906]}},
{"id": "tx7wgk", "name": "VintageBeef", "description": "VintageBeef is a member of the Hermitcraft Minecraft server. His other video content includes modded Minecraft, Minecraft maps, Mindcrack (formerly), Pixelmon, Team Canada with Etho and PauseUnpause, and more.", "links": {"website": ["https://www.youtube.com/user/VintageBeef/", "https://hermitcraft.fandom.com/wiki/VintageBeef"], "subreddit": ["HermitCraft"]}, "path": {"21-165, T:0-1": [[896, 607], [896, 615], [905, 615], [905, 607]]}, "center": {"21-165, T:0-1": [901, 611]}},
-{"id": "tx7w3q", "name": "Narcor", "description": "A pixel art depiction of one of Starscape's several ores, Narcor.", "links": {"website": ["https://www.roblox.com/games/679715583/Starscape-Beta"], "subreddit": ["starscaperoblox"]}, "path": {"56-166, T:0-1": [[1633, 833], [1643, 833], [1643, 841], [1633, 841]]}, "center": {"56-166, T:0-1": [1638, 837]}},
+{"id": "tx7w3q", "name": "Narcor", "description": "Narcor is one of several ores in the Roblox game Starscape.", "links": {"website": ["https://starscape-roblox.fandom.com/wiki/Materials"], "subreddit": ["StarscapeRoblox"]}, "path": {"151-166, T:0-1": [[1634, 834], [1632, 836], [1634, 838], [1635, 838], [1635, 839], [1638, 842], [1640, 842], [1643, 839], [1643, 837], [1644, 836], [1644, 834], [1642, 832], [1640, 834], [1638, 834], [1636, 836]]}, "center": {"151-166, T:0-1": [1639, 838]}},
{"id": "tx7vzu", "name": "Liberty Leading the People", "description": "This is a famous Romantic painting created by the French painter Eugène Delacroix. It commemorates the July Revolution of 1830. The figure of Liberty - often considered a symbol of France - holds the tricolor as she leads the people forward.", "links": {"website": ["https://en.wikipedia.org/wiki/Liberty_Leading_the_People"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-164, T:0-1": [[167, 1758], [167, 1695], [246, 1697], [247, 1750], [167, 1757]]}, "center": {"109-164, T:0-1": [206, 1725]}},
{"id": "tx7vq8", "name": "Outer Planets Alliance", "description": "From the sci-fi book and television series The Expanse by James S. A. Corey (pen name of authors Daniel Abraham and Ty Franck). The split circle of the OPA is a symbol used by the Outer Planets Alliance, which is a loosely affiliated network of smaller organizations. The OPA is a combination of a labor union and advocacy group, Terrorist organization (if you listen to the media of Earth and Mars), and a newly beginning government of the Outer Planets. It represents Belters, who are the descendents of workers sent out to the Outer Planets to work and build the infrastructure of the solar system but are not granted self-governance by the inner planets Earth and Mars. It is the goal of the OPA to change that.\n\nPart of a larger piece by the Sci-Fi-Fantasy Alliance.", "links": {"website": ["https://expanse.fandom.com/wiki/Outer_Planets_Alliance#:~:text=Its%20logo%20is%20a%20split,according%20to%20the%20inner%20planets."], "subreddit": ["TheExpanse", "SFFA"]}, "path": {"109-166, T:0-1": [[1630, 1414], [1628, 1416], [1629, 1421], [1637, 1422], [1639, 1416], [1636, 1413], [1631, 1413]]}, "center": {"109-166, T:0-1": [1633, 1417]}},
{"id": "tx7vjy", "name": "Mr. Tayto", "description": "Mr. Tayto, also known as Tayto Man, is the mascot of Tayto Crisps, a beloved Irish brand of crisps (potato chips) and popcorn that produced the world's first seasoned chips: Cheese & Onion and Salt & Vinegar. Mr. Tayto himself has become a meme in recent years, and was also the mascot for the theme park Tayto Park, since renamed to Emerald Park after Tayto Crisps stopped sponsoring the park.", "links": {"website": ["https://taytocrisps.ie/", "https://en.wikipedia.org/wiki/Tayto_(Republic_of_Ireland)"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"44-165, T:0-1": [[132, 574], [128, 579], [128, 588], [126, 590], [126, 598], [127, 600], [130, 602], [130, 603], [127, 606], [127, 607], [146, 607], [146, 606], [143, 604], [143, 602], [146, 599], [146, 594], [153, 585], [153, 582], [151, 580], [150, 580], [150, 578], [156, 578], [158, 576], [158, 569], [149, 569], [147, 571], [147, 580], [145, 580], [145, 577], [143, 577], [143, 574]]}, "center": {"44-165, T:0-1": [138, 588]}},
{"id": "tx7vhc", "name": "American bison", "description": "In 2016, The American bison became the national mammal of the United States. Among many Native American tribes, especially the Plains Indians, The bison is considered a sacred animal and religious symbol.", "links": {"website": ["https://en.wikipedia.org/wiki/American_bison"], "subreddit": ["AmericanFlagInPlace", "AmericanFlagPlace", "MURICA"]}, "path": {"109-165, T:0-1": [[1844, 1867], [1844, 1865], [1845, 1865], [1847, 1867], [1849, 1867], [1849, 1865], [1845, 1860], [1844, 1860], [1843, 1859], [1841, 1859], [1840, 1858], [1836, 1862], [1835, 1862], [1835, 1864], [1836, 1865], [1837, 1866], [1838, 1865], [1838, 1867], [1840, 1867], [1840, 1866], [1842, 1866], [1842, 1867]]}, "center": {"109-165, T:0-1": [1842, 1863]}},
-{"id": "tx7vdo", "name": "Stratos", "description": "The old/retro version of the Starscape's starter ship, The Stratos. It holds a special place in the community.", "links": {"website": ["https://www.roblox.com/games/679715583/Starscape-Beta"], "subreddit": ["starscaperoblox"]}, "path": {"56-166, T:0-1": [[1679, 832], [1691, 832], [1691, 842], [1679, 842]]}, "center": {"56-166, T:0-1": [1685, 837]}},
+{"id": "tx7vdo", "name": "Stratos", "description": "The Stratos is the starter ship in the Roblox game Starscape. This art depicts tee old/retro version of the Stratos, which holds a special place in the community.", "links": {"website": ["https://starscape-roblox.fandom.com/wiki/Stratos"], "subreddit": ["StarscapeRoblox"]}, "path": {"155-166, T:0-1": [[1679, 832], [1679, 837], [1682, 840], [1684, 840], [1686, 842], [1690, 842], [1692, 840], [1692, 838], [1687, 833], [1685, 833], [1683, 831], [1682, 832]]}, "center": {"155-166, T:0-1": [1685, 837]}},
{"id": "tx7um2", "name": "Wentworth Institute of Technology", "description": "Flag with the logo for the Wentworth Institute of Technology, located in Boston, Massachusetts. Wentworth offers bachelor's degrees in 18 engineering, Technology, design and management majors.", "links": {"website": ["https://wit.edu/"], "subreddit": ["wentworth"]}, "path": {"109-165, T:0-1": [[300, 1554], [310, 1554], [310, 1564], [300, 1564]]}, "center": {"109-165, T:0-1": [305, 1559]}},
{"id": "tx7uky", "name": "Lavender", "description": "A tiny flower contributed by María. It is very difficult to contribute art by yourself, but this one survived after being rebuilt in many different places as r/place went on.", "links": {"website": ["https://en.wikipedia.org/wiki/Lavandula"]}, "path": {"154-166, T:0-1": [[1854, 109], [1852, 111], [1854, 113], [1856, 111]]}, "center": {"154-166, T:0-1": [1854, 111]}},
{"id": "tx7ukl", "name": "Babolo", "description": "Best and most famous Persian streaming team on Twitch.", "links": {"website": ["https://www.twitch.tv/team/babolo"], "subreddit": ["admiral_tidebringer"]}, "path": {"56-166, T:0-1": [[1770, 964], [1781, 964], [1781, 969], [1789, 969], [1789, 975], [1799, 975], [1799, 999], [1770, 999]]}, "center": {"56-166, T:0-1": [1783, 984]}},
@@ -4102,7 +4092,7 @@
{"id": "txclo0", "name": "PONG", "description": "The People's Organization of Network Gaming, or 'PONG' is a student organization at the University of Wisconsin-Stout made up of students, alumni, and friends that are passionate about video games.", "links": {"website": ["https://pong.bhweb.ws/"]}, "path": {"109-166, T:0-1": [[687, 1666], [701, 1666], [701, 1680], [687, 1680]]}, "center": {"109-166, T:0-1": [694, 1673]}},
{"id": "txcldl", "name": "Simon Belmont", "description": "One of the many protagonists from the Castlevania franchise, Simon Belmont stands tall as one of the Belmont Clan's strongest and most iconic vampire hunters.\n\nSeeking representation for our community on r/place, our team of Castlevania fans worked to create and protect Simon's sprite from the original NES Castlevania. Thank you to r/belgium for letting us draw him here!", "links": {"website": ["https://en.wikipedia.org/wiki/Simon_Belmont"], "subreddit": ["castlevania"]}, "path": {"109-165, T:0-1": [[1331, 1054], [1326, 1054], [1326, 1052], [1327, 1051], [1326, 1050], [1326, 1046], [1325, 1045], [1324, 1044], [1323, 1045], [1322, 1047], [1320, 1049], [1319, 1052], [1320, 1053], [1320, 1054], [1316, 1054], [1316, 1049], [1317, 1048], [1318, 1047], [1319, 1046], [1319, 1042], [1318, 1042], [1318, 1040], [1319, 1039], [1319, 1038], [1319, 1037], [1318, 1037], [1318, 1035], [1316, 1035], [1316, 1033], [1317, 1032], [1318, 1030], [1319, 1029], [1322, 1029], [1322, 1027], [1323, 1026], [1324, 1025], [1327, 1025], [1328, 1026], [1328, 1031], [1326, 1031], [1326, 1032], [1326, 1033], [1327, 1033], [1327, 1034], [1328, 1034], [1329, 1034], [1330, 1034], [1331, 1035], [1331, 1036], [1330, 1037], [1329, 1038], [1326, 1038], [1325, 1038], [1325, 1039], [1324, 1040], [1325, 1041], [1326, 1042], [1327, 1043], [1328, 1044], [1329, 1045], [1329, 1046], [1329, 1051], [1330, 1052], [1331, 1053]]}, "center": {"109-165, T:0-1": [1323, 1039]}},
{"id": "txcl4g", "name": "Stratus Sword", "description": "The Stratus Network is a player-vs.-player (PvP) server for the game Minecraft focusing on competitive, team-based game modes. This art depicts the left-side sword on the logo for Stratus Ranked, a competitive ranking system on the server.", "links": {"website": ["https://stratus.network/topic/5c96abc9a0fac40001001125", "https://stratus.network/"]}, "path": {"74-105": [[1772, 41], [1769, 42], [1767, 44], [1769, 46], [1772, 47], [1773, 46], [1783, 46], [1785, 44], [1783, 42], [1773, 42]], "68-73": [[1772, 42], [1769, 43], [1767, 45], [1769, 47], [1772, 48], [1773, 47], [1783, 47], [1785, 45], [1783, 43], [1773, 43]], "106-166, T:0-1": [[1771, 46], [1768, 47], [1766, 49], [1768, 51], [1771, 52], [1772, 51], [1782, 51], [1784, 49], [1782, 47], [1772, 47]]}, "center": {"74-105": [1771, 44], "68-73": [1771, 45], "106-166, T:0-1": [1770, 49]}},
-{"id": "txckih", "name": "Mari", "description": "Mari is a major supporting character in the indie game Omori. she was added in the canvas as her headspace version, and later was changed to her normal version", "links": {}, "path": {"56-165, T:0-1": [[1046, 829], [1046, 843], [1041, 848], [1041, 850], [1040, 851], [1039, 852], [1036, 851], [1036, 849], [1035, 849], [1035, 851], [1034, 851], [1033, 852], [1032, 852], [1031, 851], [1030, 849], [1030, 846], [1029, 846], [1026, 846], [1026, 844], [1025, 843], [1025, 834], [1025, 830], [1025, 829], [1026, 828], [1027, 825], [1029, 822], [1031, 822], [1034, 821], [1036, 821], [1039, 821], [1042, 823], [1043, 824], [1044, 825], [1044, 826], [1045, 827], [1045, 828], [1046, 828]]}, "center": {"56-165, T:0-1": [1035, 836]}},
+{"id": "txckih", "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": {"60-86": [[1029, 821], [1025, 824], [1022, 829], [1022, 841], [1026, 847], [1026, 849], [1029, 853], [1036, 853], [1038, 851], [1038, 847], [1039, 847], [1042, 844], [1043, 841], [1043, 828], [1040, 824], [1036, 821]], "89-165, T:0-1": [[1032, 821], [1028, 824], [1025, 829], [1025, 841], [1026, 843], [1026, 846], [1029, 847], [1029, 849], [1031, 852], [1040, 852], [1042, 850], [1042, 848], [1046, 842], [1046, 829], [1043, 824], [1039, 821]]}, "center": {"60-86": [1033, 837], "89-165, T:0-1": [1036, 837]}},
{"id": "txcjyz", "name": "Infoman", "description": "Infoman is a televised series satirizing the current events of Quebec and Canada hosted by Jean-René Dufort on Ici Radio-Canada Télé.", "links": {"website": ["https://ici.radio-canada.ca/tele/infoman/site"], "subreddit": ["Quebec"]}, "path": {"109-165, T:0-1": [[1061, 1021], [1061, 1023], [1069, 1031], [1070, 1031], [1079, 1022], [1074, 1017], [1065, 1017]]}, "center": {"109-165, T:0-1": [1070, 1023]}},
{"id": "txcjq9", "name": "Penguin", "description": "A cute little penguin standing on top of a bottle.", "links": {"website": ["https://en.wikipedia.org/wiki/Penguin"]}, "path": {"58-74": [[1579, 785], [1579, 804], [1590, 804], [1590, 785]], "81-166, T:0-1": [[1579, 783], [1579, 804], [1590, 804], [1590, 783]]}, "center": {"58-74": [1585, 795], "81-166, T:0-1": [1585, 794]}},
{"id": "txcjn9", "name": "Kill Six Billion Demons", "description": "The demiurge Jagganoth from the webcomic Kill Six Billion Demons, created by Abbadon.\n\nBuilt as part of the web serial collaboration.", "links": {"website": ["https://killsixbilliondemons.com/"], "subreddit": ["killsixbilliondemons"]}, "path": {"109-166, T:0-1": [[1746, 1287], [1751, 1277], [1753, 1281], [1751, 1289], [1753, 1290], [1753, 1296], [1752, 1299], [1755, 1298], [1755, 1302], [1758, 1301], [1761, 1297], [1759, 1304], [1753, 1305], [1750, 1303], [1746, 1305], [1742, 1303], [1737, 1304], [1732, 1302], [1731, 1297], [1735, 1302], [1738, 1302], [1737, 1298], [1740, 1300], [1741, 1299], [1739, 1297], [1739, 1295], [1740, 1291], [1741, 1288], [1741, 1283], [1740, 1277], [1746, 1287], [1747, 1288]]}, "center": {"109-166, T:0-1": [1747, 1294]}},
@@ -4134,7 +4124,7 @@
{"id": "txc8y5", "name": "Columbus Blue Jackets", "description": "A small banner for the NHL team Columbus Blue Jackets. The number 80 signifies remembrance for the passing of goalkeeper Matiss Kivlenieks.", "links": {"subreddit": ["BlueJackets"]}, "path": {"109-166, T:0-1": [[564, 1379], [560, 1367], [567, 1367], [567, 1392], [560, 1392], [560, 1367], [565, 1375], [564, 1378]]}, "center": {"109-166, T:0-1": [563, 1379]}},
{"id": "txc7jt", "name": "Sugar Rush", "description": "Sugar Rush is a drink from the indie game VA-11 HALL-A, and often the first drink that most players make, as it is required by the tutorial. \"Sweet, light and fruity. As girly as it gets.\"", "links": {"website": ["https://va11halla.fandom.com/wiki/Sugar_Rush"], "subreddit": ["waifubartending"]}, "path": {"75-166, T:0-1": [[1760, 725], [1760, 735], [1763, 735], [1765, 733], [1765, 725]]}, "center": {"75-166, T:0-1": [1763, 730]}},
{"id": "txc7bx", "name": "SHINee", "description": "SHINee is a K-pop group whose impact has earned them the title ~Princes of K-pop~. SHINee will forever be known for their five members: Onew, Jonghyun, Key, Minho, and Taemin.", "links": {"website": ["https://www.youtube.com/watch?v=PSYRbJjIT6U"], "subreddit": ["SHINee"]}, "path": {"56-166, T:0-1": [[1510, 949], [1510, 963], [1525, 963], [1525, 949]]}, "center": {"56-166, T:0-1": [1518, 956]}},
-{"id": "txc6c9", "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America. The Venezuelan flag consists of three stripes (yellow, blue, and red) and eight stars on the blue stripe. The coat of arms of Venezuela is also visible at the top-left corner. Other symbols of Venezuela are also visible. From left to right: Angel Falls (Salto Ángel), Araguaney (Venezuela's national tree), arepa (famous Venezuelan corn cake), Malta Polar (famous beverage), and empanada.\n\nVenezuelans joined forces to create and protect their most precious national symbols. Like the rest of the canvas, this space was not constructed without controversy. Some Venezuelans wanted the flag to not show the coat of arms and to only have seven stars instead of eight. This is mostly due to a political dispute. Additionally, there were also conflicts among Venezuelans, Ecuadorians, and Colombians. A big group represented by all three countries wanted to create a unified space to showcase the three different cultures. However, this was ultimately not possible due to the lack of cooperation from one-sided streamers. There is hope for a unified Gran Colombia if r/place comes back again.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"81-88": [[1200, 773], [1200, 804], [1217, 804], [1217, 802], [1232, 802], [1235, 805], [1235, 806], [1319, 806], [1319, 773]], "56-80, 89-166, T:0-1": [[1200, 773], [1282, 773], [1282, 806], [1276, 806], [1275, 805], [1235, 805], [1232, 802], [1227, 802], [1225, 804], [1223, 804], [1223, 802], [1217, 802], [1217, 804], [1200, 804]]}, "center": {"81-88": [1260, 790], "56-80, 89-166, T:0-1": [1265, 789]}},
+{"id": "txc6c9", "name": "Flag of Venezuela", "description": "Venezuela is a country on the north side of South America. The Venezuelan flag consists of three stripes (yellow, blue, and red) and eight stars on the blue stripe. The coat of arms of Venezuela is also visible at the top-left corner. Other symbols of Venezuela are also visible. From left to right: Angel Falls (Salto Ángel), Araguaney (Venezuela's national tree), arepa (famous Venezuelan corn cake), Malta Polar (famous beverage), and empanada.\n\nVenezuelans joined forces to create and protect their most precious national symbols. Like the rest of the canvas, this space was not constructed without controversy. Some Venezuelans wanted the flag to not show the coat of arms and to only have seven stars instead of eight. This is mostly due to a political dispute. Additionally, there were also conflicts among Venezuelans, Ecuadorians, and Colombians. A big group represented by all three countries wanted to create a unified space to showcase the three different cultures. However, this was ultimately not possible due to the lack of cooperation from one-sided streamers. There is hope for a unified Gran Colombia if r/place comes back again.", "links": {"website": ["https://en.wikipedia.org/wiki/Venezuela", "https://en.wikipedia.org/wiki/Flag_of_Venezuela"], "subreddit": ["vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"81-88": [[1200, 773], [1200, 804], [1217, 804], [1217, 802], [1232, 802], [1237, 808], [1239, 806], [1302, 806], [1302, 796], [1305, 793], [1303, 791], [1303, 773]], "56-80, 89-166, T:0-1": [[1200, 773], [1282, 773], [1282, 806], [1276, 806], [1275, 805], [1239, 805], [1239, 806], [1237, 808], [1235, 806], [1235, 805], [1232, 802], [1226, 802], [1224, 804], [1223, 804], [1223, 802], [1217, 802], [1217, 804], [1200, 804]]}, "center": {"81-88": [1286, 790], "56-80, 89-166, T:0-1": [1242, 789]}},
{"id": "txc6a4", "name": "Epic Hard Demon", "description": "In the platforming game Geometry Dash, levels are split into difficulties, the hardest of which are called \"Demons\". The demons are also split into difficulties; the one shown here is the \"Hard\" variant. The game also has a rating system which is based off the quality of the level, of which \"Epic\" is the highest.\n\nThis art was started by the members of the Geometry Dash Demon Progression server (GDDP). The project was then enhanced by other parts of the community by adding more details to the face.", "links": {"subreddit": ["geometrydashplace", "geometrydash"]}, "path": {"75-166, T:0-1": [[1010, 365], [1010, 384], [1028, 384], [1028, 365], [1026, 365], [1025, 364], [1021, 364], [1020, 363], [1018, 363], [1017, 364], [1013, 364], [1012, 365]]}, "center": {"75-166, T:0-1": [1019, 374]}},
{"id": "txc5dw", "name": "Milwaukee Flag", "description": "The people's flag of Milwaukee. Intially located near the ZZZ logo, it was conquered by the taskbar. After making an agreement with Greece, The flag migrated to it's current location. In order to defend it's borders it formed a quintuple alliance of mutual defense with Kurdistan, Brand New Animal, Greece, and Mr. Robot. With these 5 factions fighting as one, They repelled multiple raid attempts, making it all the way to the great Anti Void.", "links": {"subreddit": ["milwaukee"], "discord": ["mke"]}, "path": {"109-166, T:0-1": [[1383, 1950], [1383, 1962], [1396, 1962], [1396, 1950]]}, "center": {"109-166, T:0-1": [1390, 1956]}},
{"id": "txc4qw", "name": "Sykkuno's green scarf", "description": "A green scarf associated with Twitch streamer Sykkuno", "links": {"website": ["https://twitch.tv/sykkuno"], "subreddit": ["sykkuno"]}, "path": {"109-166, T:0-1": [[1869, 1619], [1872, 1619], [1872, 1635], [1869, 1635]]}, "center": {"109-166, T:0-1": [1871, 1627]}},
@@ -4148,8 +4138,8 @@
{"id": "txc1fq", "name": "kkatamina", "description": "The Minecraft skin that's often associated with Twitch streamer kkatamina. It features her Minecraft skin \"MC Steve\" with the :] face.", "links": {"website": ["https://twitch.tv/kkatamina"], "subreddit": ["offlineTV"]}, "path": {"109-166, T:0-1": [[1853, 1619], [1860, 1619], [1860, 1627], [1853, 1627]]}, "center": {"109-166, T:0-1": [1857, 1623]}},
{"id": "txc135", "name": "Chelsi the Sheep", "description": "A chubby blue sheep in a sailor top and swimsuit with croissants on her hair. She's the most known character designed by the artist Scorci.", "links": {"subreddit": ["Scorci"]}, "path": {"120-128": [[172, 1098], [169, 1095], [171, 1093], [170, 1093], [169, 1095], [166, 1091], [167, 1090], [167, 1088], [170, 1085], [170, 1084], [172, 1082], [173, 1083], [174, 1082], [176, 1084], [176, 1085], [179, 1089], [180, 1090], [179, 1091], [178, 1093], [177, 1094], [176, 1093], [175, 1093], [177, 1095], [174, 1098]], "129-160": [[172, 1098], [169, 1095], [171, 1093], [170, 1093], [169, 1095], [166, 1091], [167, 1090], [167, 1088], [170, 1085], [176, 1085], [179, 1089], [180, 1090], [179, 1091], [178, 1093], [177, 1094], [176, 1093], [175, 1093], [177, 1095], [174, 1098]]}, "center": {"120-128": [173, 1089], "129-160": [173, 1089]}},
{"id": "txc12o", "name": "WSTL Alliance heart", "description": "A heart made to represent the alliance between the communities of WEiTI, Shovel Knight, Taylor Swift, and Lego.\n\nThese bonds were forged over countless campaigns, against the expansion of multiple country flags, and through multiple building and upkeep projects. These members worked as a united front in multiple Discord servers to help each other out and preserve their respective artworks in the annals of r/place.", "links": {"website": ["https://www.elka.pw.edu.pl/", "https://shovelknight.fandom.com/wiki/Shovel_Knight", "https://taylorswift.com/", "https://www.lego.com/"], "subreddit": ["lego", "ShovelKnight", "TaylorSwift"]}, "path": {"47-166, T:0-1": [[665, 299], [662, 302], [662, 304], [668, 310], [674, 304], [674, 302], [671, 299]]}, "center": {"47-166, T:0-1": [668, 304]}},
-{"id": "txc0xe", "name": "Peko Tower", "description": "A chibi tower consisting of Hololive members Yukihana Lamy (Light Blue hair), Sakura Miko (Pink hair), Usada Pekora (Dark blue hair) and Moona Hoshinova (Purple Hair). Originally includes Hoshimachi Suisei, but due to the decision to give her her own art in the third expansion, she was replaced with Lamy. The members were chosen based on their mutual relationship starting with Pekora as the base then grew into PekoMiko (Pekora x Miko) and then MiComet (Miko x Suisei) and Lapis Lazuli (Pekora x Moona) who grew into the Hololive Indonesia Gen. 1.", "links": {"website": ["https://hololive.hololivepro.com/en/talents"], "subreddit": ["Hololive", "pekora", "yukihanalamy"]}, "path": {"56-165, T:0-1": [[1391, 998], [1387, 990], [1381, 990], [1379, 992], [1376, 989], [1376, 983], [1378, 983], [1379, 982], [1379, 973], [1373, 966], [1371, 966], [1365, 971], [1365, 977], [1366, 977], [1366, 984], [1363, 985], [1363, 988], [1364, 991], [1362, 994], [1362, 996], [1364, 998]]}, "center": {"56-165, T:0-1": [1373, 985]}},
-{"id": "txbrv7", "name": "Hololive Indonesia Generation 1", "description": "A chibi tower consisting of Hololive's Indonesia branch 1st Generation members. From top to bottom, Ayunda Risu, Airani Iofifteen, Moona Hoshinova.", "links": {"website": ["https://www.youtube.com/c/hololiveIndonesia"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1389, 974], [1379, 974], [1379, 982], [1380, 983], [1377, 983], [1377, 984], [1376, 985], [1376, 990], [1379, 992], [1378, 999], [1390, 999], [1390, 994], [1388, 992], [1388, 983], [1389, 982]]}, "center": {"56-165, T:0-1": [1383, 987]}},
+{"id": "txc0xe", "name": "Peko Tower", "description": "A chibi tower consisting of Hololive members Yukihana Lamy (Light Blue hair), Sakura Miko (Pink hair), Usada Pekora (Dark blue hair) and Moona Hoshinova (Purple Hair). Originally includes Hoshimachi Suisei, but due to the decision to give her her own art in the third expansion, she was replaced with Lamy. The members were chosen based on their mutual relationship starting with Pekora as the base then grew into PekoMiko (Pekora x Miko) and then MiComet (Miko x Suisei) and Lapis Lazuli (Pekora x Moona) who grew into the Hololive Indonesia Gen. 1.", "links": {"website": ["https://hololive.hololivepro.com/en/talents"], "subreddit": ["Hololive", "pekora", "yukihanalamy"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1391, 998], [1387, 990], [1381, 990], [1379, 992], [1376, 989], [1376, 983], [1378, 983], [1379, 982], [1379, 973], [1373, 966], [1371, 966], [1365, 971], [1365, 977], [1366, 977], [1366, 984], [1363, 985], [1363, 988], [1364, 991], [1362, 994], [1362, 996], [1364, 998]]}, "center": {"56-165, T:0-1": [1373, 985]}},
+{"id": "txbrv7", "name": "Hololive Indonesia Generation 1", "description": "A chibi tower consisting of Hololive's Indonesia branch 1st Generation members. From top to bottom, Ayunda Risu, Airani Iofifteen, Moona Hoshinova.", "links": {"website": ["https://www.youtube.com/c/hololiveIndonesia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1389, 974], [1379, 974], [1379, 982], [1380, 983], [1377, 983], [1377, 984], [1376, 985], [1376, 990], [1379, 992], [1378, 999], [1390, 999], [1390, 994], [1388, 992], [1388, 983], [1389, 982]]}, "center": {"56-165, T:0-1": [1383, 987]}},
{"id": "txbzyj", "name": "UPenn Logo", "description": "The logo of the University of Pennsylvania", "links": {"subreddit": ["UPenn"]}, "path": {"109-166, T:0-1": [[1274, 1793], [1272, 1789], [1256, 1789], [1256, 1792], [1255, 1792], [1255, 1808], [1279, 1808], [1279, 1794], [1274, 1794], [1274, 1792], [1273, 1792], [1272, 1791]]}, "center": {"109-166, T:0-1": [1266, 1799]}},
{"id": "txbzux", "name": "Hilda (Zilda)", "description": "Hilda from the Netflix series. Specifically Hilda in Legend of Zelda game made by Scott Lewis", "links": {"subreddit": ["HildaTheSeries"]}, "path": {"109-166, T:0-1": [[1089, 1784], [1104, 1784], [1104, 1800], [1099, 1799], [1097, 1802], [1097, 1804], [1093, 1804], [1093, 1802], [1093, 1801], [1091, 1800], [1090, 1800]]}, "center": {"109-166, T:0-1": [1097, 1793]}},
{"id": "txbz7g", "name": "Simpleflips", "description": "Simpleflips is a streamer and YouTuber known for playthroughs and speedruns of mods of the game Super Mario 64. He also plays Tetris and Super Mario Maker 2, and has done several collaborations with Vinesauce and Minus World.\n\nThis art features Nintendo iconography, including (from left to right) Mario, Yoshi, the Mario Mushroom, a tiny Yoshi, a Yoshi Egg, Kirby, and the Simpleflips Drippy Star.", "links": {"website": ["https://www.twitch.tv/simpleflips", "https://www.youtube.com/user/SimpleFlips"], "subreddit": ["Simpleflips"]}, "path": {"72-85": [[1107, 352], [1104, 355], [1102, 355], [1098, 359], [1098, 366], [1092, 372], [1092, 382], [1094, 385], [1127, 385], [1130, 383], [1130, 372], [1124, 366], [1122, 366], [1121, 365], [1121, 361], [1113, 352]], "57-71": [[1108, 352], [1100, 357], [1098, 362], [1098, 368], [1093, 372], [1093, 385], [1110, 385], [1112, 379], [1116, 379], [1116, 373], [1121, 367], [1121, 361], [1113, 352]], "86-165, T:0-1": [[1081, 384], [1157, 384], [1157, 376], [1158, 376], [1159, 375], [1159, 373], [1157, 371], [1154, 371], [1154, 370], [1150, 366], [1146, 370], [1146, 371], [1143, 371], [1143, 365], [1142, 364], [1140, 361], [1138, 361], [1138, 360], [1133, 360], [1132, 361], [1131, 361], [1128, 358], [1124, 358], [1122, 360], [1120, 360], [1117, 357], [1116, 357], [1116, 354], [1115, 354], [1113, 352], [1107, 352], [1104, 355], [1102, 355], [1100, 357], [1100, 359], [1098, 361], [1098, 364], [1099, 365], [1099, 367], [1098, 367], [1097, 368], [1095, 368], [1095, 367], [1093, 365], [1091, 365], [1090, 364], [1084, 364], [1082, 366], [1081, 366]]}, "center": {"72-85": [1110, 372], "57-71": [1109, 364], "86-165, T:0-1": [1112, 371]}},
@@ -4194,7 +4184,7 @@
{"id": "txbkd8", "name": "/r/gravityrush", "description": "A subreddit for Gravity Rush, a PS Vita game later released on the PS4, and its sequel Gravity Rush 2, also released on the PS4.", "links": {"subreddit": ["gravityrush"]}, "path": {"109-166, T:0-1": [[1646, 1122], [1646, 1127], [1695, 1127], [1695, 1122]]}, "center": {"109-166, T:0-1": [1671, 1125]}},
{"id": "txbk6h", "name": "Gon Freecss", "description": "The titular Hunter Association of Yoshihiro Togashi's Hunter x Hunter manga series is made up of elites who seek the same goal: \"The hunt that fulfills one's desires.\" After learning that his father picked hunting over raising him, Gon becomes a rookie hunter to track the man down and find out what being a hunter is all about.\n\nThis sprite was made by the HxH Place Discord server and the Anime Alliance.\n\nHxH: https://discord.gg/sCwSxCBj2D\nAnime Alliance: https://discord.gg/9U6pHMbHS4", "links": {"subreddit": ["HunterXHunter"], "discord": ["sCwSxCBj2D"]}, "path": {"109-166, T:0-1": [[1709, 1173], [1691, 1173], [1691, 1199], [1709, 1199]]}, "center": {"109-166, T:0-1": [1700, 1186]}},
{"id": "txbjrc", "name": "Philippines", "description": "The Philippines archipelago as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"], "subreddit": ["Philippines"]}, "path": {"137-166, T:0-1": [[348, 646], [346, 648], [345, 650], [344, 654], [344, 660], [343, 661], [344, 662], [345, 661], [347, 661], [347, 664], [345, 666], [340, 672], [337, 677], [337, 678], [339, 678], [342, 675], [346, 669], [347, 669], [348, 672], [353, 676], [357, 676], [357, 678], [358, 679], [358, 684], [357, 685], [358, 686], [359, 686], [363, 683], [363, 667], [362, 666], [362, 662], [358, 662], [358, 657], [357, 657], [356, 658], [354, 658], [352, 660], [352, 652], [354, 649], [350, 646]]}, "center": {"137-166, T:0-1": [355, 668]}},
-{"id": "txbix7", "name": "Slidelie", "description": "A variation of Adelie (a penguin that is featured in a number of mods for the PICO-8 version of Celeste) depicted sliding on the floor.", "links": {"subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1016, 866], [1016, 870], [1017, 870], [1017, 872], [1024, 872], [1024, 870], [1025, 870], [1025, 865], [1024, 865], [1024, 864], [1019, 864], [1019, 865], [1017, 865], [1017, 866]]}, "center": {"56-165, T:0-1": [1021, 868]}},
+{"id": "txbix7", "name": "Adelie", "description": "Adelie is a penguin that is featured in a number of mods for the PICO-8 version of Celeste. Adelie is depicted sliding on the floor in this sprite, nicknamed \"Slidelie\".", "links": {"subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"90-97": [[1021, 864], [1020, 865], [1017, 865], [1017, 869], [1018, 870], [1018, 872], [1025, 872], [1025, 870], [1026, 869], [1026, 867], [1025, 866], [1025, 864]], "98-165, T:0-1": [[1019, 863], [1015, 866], [1015, 870], [1017, 873], [1024, 873], [1026, 870], [1026, 865], [1024, 863]]}, "center": {"90-97": [1022, 868], "98-165, T:0-1": [1021, 868]}},
{"id": "txbiqm", "name": "Cucumber Slice", "description": "The vegetable mascot of Twitch Streamer/Photographer, MarshallsWorldx", "links": {"website": ["https://www.twitch.tv/marshallsworldx"]}, "path": {"109-166, T:0-1": [[519, 1495], [517, 1498], [517, 1501], [524, 1508], [528, 1512], [532, 1512], [532, 1500], [530, 1500], [529, 1498], [529, 1496], [530, 1496], [530, 1495], [519, 1495], [518, 1495], [522, 1498]]}, "center": {"109-166, T:0-1": [525, 1502]}},
{"id": "txbi9k", "name": "HNPU attempt", "description": "the eventual resting place of the HNPU (Hawaii North Pacific University) Logo", "links": {}, "path": {"109-166, T:0-1": [[239, 1254], [250, 1254], [250, 1256], [239, 1256]]}, "center": {"109-166, T:0-1": [245, 1255]}},
{"id": "txbi8l", "name": "Loona x VUT", "description": "A memento of the alliance between Loona (a K-pop girl group) and VUT (Brno University of Technology, a Czech university).", "links": {"website": ["http://loonatheworld.com/", "https://www.su.fit.vutbr.cz/"], "subreddit": ["LOONA", "vutbrno"]}, "path": {"63-164, T:0-1": [[1329, 600], [1329, 614], [1333, 614], [1333, 600]]}, "center": {"63-164, T:0-1": [1331, 607]}},
@@ -4266,7 +4256,7 @@
{"id": "txat3i", "name": "Uruguay", "description": "Uruguay as it appears on a map. The Río Negro (Spanish for \"Black River\"), a river that runs through Uruguay, is also visible here.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay"], "subreddit": ["uruguay"]}, "path": {"68-165, T:0-1": [[1005, 666], [1003, 668], [1003, 675], [1002, 676], [1002, 679], [1005, 682], [1008, 683], [1013, 683], [1017, 678], [1018, 675], [1014, 670], [1008, 666]]}, "center": {"68-165, T:0-1": [1010, 676]}},
{"id": "txarp5", "name": "SHINee", "description": "Hailed as \"The Princes of K-pop\", SHINee is a South-Korean boy band formed by SM Entertainment in 2008. The group is composed of the members Onew, Jonghyun, Key, Minho, and Taemin. Their fans are called \"shawols\", a portmanteau for \"SHINee World\", named after their debut album.", "links": {"website": ["https://www.instagram.com/shinee/"], "subreddit": ["shinee"]}, "path": {"56-166, T:0-1": [[1510, 949], [1525, 949], [1525, 963], [1511, 963], [1510, 962]]}, "center": {"56-166, T:0-1": [1518, 956]}},
{"id": "txar8q", "name": "Ted Lasso", "description": "Ted Lasso is an AppleTV comedy series that follows American football coach Ted Lasso, who is hired to coach an English soccer (association football) team. Lasso tries to win over the skeptical English market with his folksy, optimistic demeanor while dealing with his inexperience in the sport. This motivational \"BELIEVE\" poster is the show's signature iconography, hung up in the soccer team's changing room as a daily reminder to its staff and players.", "links": {"website": ["https://en.wikipedia.org/wiki/Ted_Lasso"], "subreddit": ["TedLasso"]}, "path": {"117-165, T:0-1": [[1002, 445], [1026, 445], [1026, 453], [1002, 453]]}, "center": {"117-165, T:0-1": [1014, 449]}},
-{"id": "txar5v", "name": "Waldo", "description": "A small Waldo hidden on the r/fuckcars highway, based on the Where's Waldo books.", "links": {"website": ["https://en.wikipedia.org/wiki/Where%27s_Wally%3F"]}, "path": {"56-165, T:0-1": [[1125, 869], [1126, 869], [1126, 867], [1126, 869], [1127, 869], [1128, 869], [1128, 866], [1129, 866], [1129, 862], [1129, 861], [1128, 861], [1128, 860], [1127, 860], [1128, 860], [1128, 857], [1128, 856], [1127, 856], [1127, 854], [1127, 853], [1126, 853], [1125, 853], [1125, 856], [1124, 856], [1124, 859], [1124, 860], [1125, 860], [1124, 860], [1124, 861], [1123, 862], [1123, 866], [1124, 866], [1124, 869], [1128, 869]]}, "center": {"56-165, T:0-1": [1126, 862]}},
+{"id": "txar5v", "name": "Wally", "description": "Wally is the titular character in Where's Wally? (known as Where's Waldo? in North America), 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 Wally hidden in the group.", "links": {"website": ["https://en.wikipedia.org/wiki/Where%27s_Wally%3F"]}, "path": {"119-165, T:0-1": [[1125, 854], [1125, 856], [1124, 856], [1124, 861], [1123, 861], [1123, 866], [1124, 866], [1124, 870], [1128, 870], [1128, 866], [1129, 866], [1129, 861], [1128, 861], [1128, 856], [1127, 856], [1127, 854]]}, "center": {"119-165, T:0-1": [1126, 863]}},
{"id": "txaqul", "name": "Loader", "description": "The Loader is a playable character in the games Risk of Rain and Risk of Rain 2. An incredibly mobile and heavy cargo loader, the Loader is capable of delivering some of the hardest-hitting attacks in the game. When utilizing velocity to her advantage, she is able to topple many powerful monsters in just a single punch.\n\nThis art was a collaboration between the Risk of Rain piece above and r/transplace. Loader was originally female, before being changed to male in release version 1.2 of Risk of Rain. In Risk of Rain 2, Loader is once again female.", "links": {"website": ["https://riskofrain.fandom.com/wiki/Loader", "https://riskofrain2.fandom.com/wiki/Loader"], "subreddit": ["riskofrain", "transplace"]}, "path": {"75-165, T:0-1": [[593, 429], [593, 430], [589, 430], [589, 433], [588, 433], [588, 440], [590, 442], [592, 442], [592, 443], [598, 443], [601, 440], [601, 433], [600, 433], [600, 430], [597, 430], [597, 429]]}, "center": {"75-165, T:0-1": [595, 436]}},
{"id": "txaqle", "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"], "subreddit": ["pokemon"]}, "path": {"109-165, T:0-1": [[1884, 1292], [1892, 1292], [1892, 1300], [1884, 1300], [1884, 1296], [1884, 1295]]}, "center": {"109-165, T:0-1": [1888, 1296]}},
{"id": "txaq9s", "name": "Foxwhale Heart", "description": "A small heart symbolizing the two members of a small game dev duo", "links": {"website": ["https://foxwhalestudios.com"]}, "path": {"109-166, T:0-1": [[1532, 1513], [1533, 1513], [1534, 1514], [1535, 1514], [1536, 1513], [1537, 1513], [1538, 1514], [1539, 1515], [1539, 1516], [1538, 1517], [1537, 1518], [1536, 1519], [1535, 1520], [1534, 1520], [1533, 1519], [1532, 1518], [1531, 1517], [1530, 1516], [1530, 1515], [1531, 1514]]}, "center": {"109-166, T:0-1": [1535, 1516]}},
@@ -4326,7 +4316,7 @@
{"id": "txddiq", "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"], "subreddit": ["Admiral_TideBringer"]}, "path": {"147-166, T:0-1": [[1785, 969], [1782, 972], [1781, 974], [1781, 976], [1788, 976], [1788, 974], [1789, 974], [1789, 971], [1787, 969]]}, "center": {"147-166, T:0-1": [1785, 973]}},
{"id": "txdd8b", "name": "PuuCraft", "description": "PuuCraft is a multiplayer server for the game Minecraft. It uses Minecraft Beta 1.7.3 and has no whitelist.", "links": {"website": ["https://puucraft.net/"]}, "path": {"69-97": [[1749, 28], [1749, 35], [1765, 35], [1765, 39], [1764, 39], [1764, 41], [1766, 43], [1768, 41], [1781, 41], [1781, 39], [1783, 39], [1785, 37], [1785, 35], [1781, 35], [1781, 34], [1769, 34], [1769, 31], [1765, 31], [1765, 28]], "62-68": [[1744, 35], [1744, 42], [1776, 42], [1776, 35]], "98-103": [[1765, 35], [1765, 39], [1764, 39], [1764, 41], [1766, 43], [1768, 41], [1781, 41], [1781, 39], [1783, 39], [1785, 37], [1785, 35]], "104-166, T:0-1": [[1765, 35], [1765, 46], [1785, 46], [1785, 35]]}, "center": {"69-97": [1761, 32], "62-68": [1760, 39], "98-103": [1773, 38], "104-166, T:0-1": [1775, 41]}},
{"id": "txdd70", "name": "Fuck Josh Duggar", "description": "A contribution by r/DuggarsSnark to represent rightful hatred of formal reality TV star Josh Duggar of 19 Kids and Counting fame, who was convicted of downloading and possessing child sex abuse material on his work computer. As of April 2022 Duggar is awaiting sentencing.", "links": {"subreddit": ["DuggarsSnark"]}, "path": {"109-165, T:0-1": [[565, 1112], [623, 1112], [623, 1124], [565, 1124]]}, "center": {"109-165, T:0-1": [594, 1118]}},
-{"id": "txdcju", "name": "Mexico flag", "description": "", "links": {}, "path": {"109-165, T:0-1": [[1090, 1565], [1063, 1565], [1063, 1552], [1090, 1552]]}, "center": {"109-165, T:0-1": [1077, 1559]}},
+{"id": "txdcju", "name": "Mexico flag", "description": "", "links": {}, "path": {"109-165, T:0-1": [[1091, 1551], [1091, 1564], [1029, 1564], [1029, 1551]]}, "center": {"109-165, T:0-1": [1060, 1558]}},
{"id": "txdazb", "name": "TheSacredRealm", "description": "The acronym for Twitch streamer TheSacredRealm.", "links": {"website": ["https://www.twitch.tv/thesacredrealm"]}, "path": {"109-166, T:0-1": [[1610, 1643], [1610, 1649], [1620, 1649], [1620, 1644], [1619, 1643]]}, "center": {"109-166, T:0-1": [1615, 1646]}},
{"id": "txdau0", "name": "Dustforce", "description": "Dustkid from 2012 indie platformer Dustforce beside the games sole steam achievement.", "links": {"website": ["https://dustforce.com/"], "subreddit": ["dustforce"]}, "path": {"109-166, T:0-1": [[1478, 1276], [1491, 1276], [1491, 1289], [1489, 1289], [1489, 1302], [1477, 1302], [1477, 1276]]}, "center": {"109-166, T:0-1": [1484, 1289]}},
{"id": "txdal1", "name": "Butterman", "description": "A mascot for Twitch streamer and Mojang Senior Artist, MortMort.", "links": {"website": ["https://littlelove.mortmort.net/"], "subreddit": ["MortMort"]}, "path": {"71-132": [[1404, 74], [1404, 92], [1419, 92], [1419, 74]], "133-166, T:0-1": [[1406, 74], [1406, 92], [1421, 92], [1421, 74]]}, "center": {"71-132": [1412, 83], "133-166, T:0-1": [1414, 83]}},
@@ -4335,7 +4325,7 @@
{"id": "txd8un", "name": "M & P", "description": "For the beloved black cats, initials M & P. They had the beauty of the moon and the warmth of the sun. Now they can be remembered forever. Many thanks to all our allies that made our dreams come true. Nothing would've been possible without you all. <3", "links": {"website": ["https://www.instagram.com/chicopulguin/"], "subreddit": ["placeChico"]}, "path": {"109-166, T:0-1": [[1561, 1113], [1566, 1113], [1567, 1113], [1568, 1113], [1568, 1121], [1561, 1121]]}, "center": {"109-166, T:0-1": [1565, 1117]}},
{"id": "txd89v", "name": "Deep Owl", "description": "A monster from the Roblox game Deepwoken that is very scary and very hard to kill! It can drop dark feathers or void feathers which can be used for armor or for the Visionshaper Oath. They also look really cool.", "links": {"website": ["https://deepwoken.fandom.com/wiki/Deep_Owl"], "subreddit": ["deepwokenplace", "deepwoken"]}, "path": {"109-165, T:0-1": [[344, 1391], [344, 1392], [345, 1393], [346, 1394], [345, 1395], [344, 1396], [343, 1397], [343, 1399], [343, 1401], [343, 1402], [344, 1402], [344, 1403], [344, 1404], [345, 1404], [345, 1405], [346, 1405], [346, 1406], [347, 1406], [347, 1407], [348, 1407], [348, 1408], [349, 1408], [350, 1408], [350, 1409], [351, 1409], [352, 1409], [353, 1409], [353, 1408], [354, 1407], [355, 1406], [356, 1405], [357, 1404], [358, 1403], [358, 1402], [359, 1401], [359, 1400], [359, 1399], [359, 1398], [358, 1397], [357, 1396], [356, 1395], [355, 1394], [357, 1393], [358, 1392], [358, 1391], [357, 1390], [355, 1390], [355, 1393], [353, 1393], [353, 1391], [352, 1390], [350, 1390], [349, 1391], [349, 1393], [347, 1393], [347, 1391], [346, 1390], [345, 1390]]}, "center": {"109-165, T:0-1": [351, 1399]}},
{"id": "txd83b", "name": "Mario Kart 64 and Power-Ups", "description": "Two power-ups: a mini mushroom and a super star, and a nod to Mario Kart 64.", "links": {"website": ["https://mario.nintendo.com/"]}, "path": {"109-166, T:0-1": [[884, 1847], [872, 1847], [872, 1870], [890, 1870], [890, 1837], [884, 1837]]}, "center": {"109-166, T:0-1": [882, 1856]}},
-{"id": "txd81o", "name": "Loona", "description": "Loona (Korean: 이달의 소녀), stylized as LOONA or LOOΠΔ, is a South Korean girl group formed by Blockberry Creative. The group was introduced to the public through a pre-debut project that began in October 2016, where each of the 12 members were revealed in a periodic fashion by releasing a promotional single over the following 18 months.", "links": {"website": ["http://loonatheworld.com/", "https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g", "https://en.wikipedia.org/wiki/Loona"], "subreddit": ["LOONA"]}, "path": {"56-166, T:0-1": [[1633, 892], [1633, 897], [1664, 897], [1664, 892]]}, "center": {"56-166, T:0-1": [1649, 895]}},
+{"id": "txd81o", "name": "Loona", "description": "Loona (Korean: 이달의 소녀), stylized as LOONA or LOOΠΔ, is a South Korean girl group formed by Blockberry Creative. The group was introduced to the public through a pre-debut project that began in October 2016, where each of the 12 members were revealed in a periodic fashion by releasing a promotional single over the following 18 months.", "links": {"website": ["http://loonatheworld.com/", "https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g", "https://en.wikipedia.org/wiki/Loona"], "subreddit": ["LOONA", "kpop"]}, "path": {"85-124": [[1633, 893], [1633, 897], [1661, 897], [1662, 898], [1663, 898], [1665, 896], [1665, 894], [1663, 892], [1662, 892], [1661, 893]], "125-166, T:0-1": [[1633, 892], [1633, 897], [1664, 897], [1664, 892]]}, "center": {"85-124": [1662, 895], "125-166, T:0-1": [1649, 895]}},
{"id": "txd7qh", "name": "Goobert", "description": "Goobert (Goo-ey) is a green goo character from Inscryption. He resides inside a jar and appears as a \"failure\" item.", "links": {"website": ["https://inscryption.fandom.com/wiki/Goobert"], "subreddit": ["inscryption"]}, "path": {"122-141": [[146, 302], [144, 304], [144, 306], [141, 308], [141, 318], [143, 320], [150, 320], [152, 318], [152, 309], [149, 306], [149, 304], [147, 302]], "142-165, T:0-1": [[160, 285], [161, 285], [161, 286], [162, 286], [162, 288], [163, 289], [164, 290], [165, 291], [165, 300], [164, 299], [163, 299], [161, 299], [158, 302], [157, 302], [156, 301], [156, 291], [160, 287]]}, "center": {"122-141": [146, 312], "142-165, T:0-1": [161, 294]}},
{"id": "txd7mt", "name": "Flag of Saskatchewan", "description": "Saskatchewan is one of Canada's provinces. It is known as the \"bread basket of Canada\" and \"Land of Living Skies\".", "links": {"website": ["https://en.wikipedia.org/wiki/Saskatchewan", "https://en.wikipedia.org/wiki/Flag_of_Saskatchewan"], "subreddit": ["saskatchewan", "placecanada", "canada"]}, "path": {"158-161": [[193, 460], [193, 470], [209, 470], [209, 460]], "162-165, T:0-1": [[209, 472], [209, 462], [193, 462], [193, 472]]}, "center": {"158-161": [201, 465], "162-165, T:0-1": [201, 467]}},
{"id": "txd6jy", "name": "EVERGLOW", "description": "Initials for the 6 member South Korean girl group from Yuehua Entertainment. Group consists of members: E:U, Sihyeon, Mia, Onda, Aisha, and Yiren. Everglow debuted on March 18, 2019, with the single album Arrival of Everglow.", "links": {"subreddit": ["Everglow"]}, "path": {"109-166, T:0-1": [[1509, 1051], [1524, 1052], [1524, 1063], [1509, 1063]]}, "center": {"109-166, T:0-1": [1516, 1057]}},
@@ -4363,10 +4353,10 @@
{"id": "txcwl2", "name": "Rosewood Institution", "description": "Rosewood Institution is a role-play server on the virtual world platform VRChat.", "links": {"website": ["https://vrchat-legends.fandom.com/wiki/Rosewood_Institution"]}, "path": {"128-143": [[1854, 48], [1849, 51], [1846, 56], [1846, 59], [1849, 64], [1854, 67], [1857, 67], [1862, 64], [1865, 59], [1865, 56], [1862, 51], [1857, 48]], "144-166, T:0-1": [[1846, 63], [1846, 55], [1851, 50], [1854, 48], [1858, 48], [1862, 51], [1865, 56], [1864, 60], [1863, 63], [1849, 63], [1847, 61], [1847, 62]]}, "center": {"128-143": [1856, 58], "144-166, T:0-1": [1857, 56]}},
{"id": "txcvak", "name": "Filian", "description": "Sleep-deprived VTuber and variety Twitch streamer running on Welch's fruit snacks.\n\nSo basically I do flips for fruit snacks, function as a top-tier text-to-speech bot, emit gremlin noises, and have heart attacks. Then I call it a stream!", "links": {"website": ["https://www.twitch.tv/filian"], "subreddit": ["SnackersHQ"]}, "path": {"109-166, T:0-1": [[598, 1043], [599, 1043], [609, 1043], [609, 1054], [598, 1054]]}, "center": {"109-166, T:0-1": [604, 1049]}},
{"id": "txcv76", "name": "Sara Miranda", "description": "Sara Miranda is a character role-played by Cristinini in Marbella Vice, a role-playing server for the game Grand Theft Auto V. Is she alive? It's not clear.", "links": {"subreddit": ["IamCristinini"]}, "path": {"129-166, T:0-1": [[1831, 697], [1831, 706], [1840, 706], [1840, 697]]}, "center": {"129-166, T:0-1": [1836, 702]}},
-{"id": "txcv01", "name": "ITZY", "description": "Itzy 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.", "links": {"website": ["https://mobile.twitter.com/ITZYofficial"], "subreddit": ["ITZY"]}, "path": {"56-166, T:0-1": [[1557, 877], [1533, 877], [1533, 889], [1557, 889]]}, "center": {"56-166, T:0-1": [1545, 883]}},
+{"id": "txcv01", "name": "ITZY", "description": "ITZY 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.", "links": {"website": ["http://itzy.jype.com/", "https://mobile.twitter.com/ITZYofficial", "https://en.wikipedia.org/wiki/Itzy"], "subreddit": ["ITZY", "kpop"]}, "path": {"60-166, T:0-1": [[1557, 877], [1533, 877], [1533, 889], [1557, 889]]}, "center": {"60-166, T:0-1": [1545, 883]}},
{"id": "txcupp", "name": "Norm Macdonald Live Logo", "description": "Tribute to the late Norm Macdonald. A comedian known for his voracious appetite, but not for food (although he was by no means a skinny man, especially near the end), instead, his appetite was for making us laugh.", "links": {"website": ["https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj_5-W8v_72AhVCFjQIHQOJCVgQFnoECAcQAQ&url=https%3A%2F%2Ftwitter.com%2Fnormmacdonald&usg=AOvVaw2wsJnAOO9BDntgaeqnlGgQ"], "subreddit": ["NormMacdonald"]}, "path": {"109-166, T:0-1": [[543, 1712], [542, 1712], [561, 1712], [561, 1731], [542, 1731], [542, 1712]]}, "center": {"109-166, T:0-1": [552, 1722]}},
{"id": "txcu59", "name": "Villanova University logo", "description": "The logo for the Philadelpha-area university known for its basketball team. The logo was swamped by bots and relocated numerous times.", "links": {"subreddit": ["villanova"]}, "path": {"109-166, T:0-1": [[1499, 1665], [1506, 1665], [1511, 1650], [1493, 1650], [1498, 1665]]}, "center": {"109-166, T:0-1": [1502, 1657]}},
-{"id": "txcu01", "name": "Smol Ame", "description": "Smol Ame is a small version of VTuber Amelia Watson from an alternative timeline.", "links": {"website": ["https://holocure.fandom.com/wiki/Smol_Ame", "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "https://virtualyoutuber.fandom.com/wiki/Watson_Amelia"], "subreddit": ["Hololive"]}, "path": {"52-166, T:0-1": [[263, 769], [261, 771], [261, 775], [269, 775], [269, 772], [266, 769]]}, "center": {"52-166, T:0-1": [265, 772]}},
+{"id": "txcu01", "name": "Smol Ame", "description": "Smol Ame is a small version of VTuber Amelia Watson from an alternative timeline.", "links": {"website": ["https://holocure.fandom.com/wiki/Smol_Ame", "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "https://virtualyoutuber.fandom.com/wiki/Watson_Amelia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"52-166, T:0-1": [[263, 769], [261, 771], [261, 775], [269, 775], [269, 772], [266, 769]]}, "center": {"52-166, T:0-1": [265, 772]}},
{"id": "txctr2", "name": "Aegis core crystal", "description": "A core crystal is an object in Xenoblade Chronicles 2 that is used to summon Blades, a race of creatures. This is the core crystal of Pyra and Mythra, two faces of a legendary Blade known as an Aegis. They are main characters in the game, accompanying the protagonist Rex.", "links": {"website": ["https://xenoblade.fandom.com/wiki/Mythra"], "subreddit": ["Xenoblade_Chronicles"]}, "path": {"65-165, T:0-1": [[1190, 722], [1188, 724], [1188, 726], [1186, 728], [1186, 729], [1188, 731], [1188, 740], [1190, 742], [1195, 742], [1197, 740], [1197, 731], [1199, 729], [1199, 728], [1197, 726], [1197, 724], [1195, 722]]}, "center": {"65-165, T:0-1": [1193, 729]}},
{"id": "txctmt", "name": "Diablada's Mask", "description": "A mask of the famed Oruro's Carnaval dance: The Diablada.", "links": {"subreddit": ["BOLIVIA"]}, "path": {"109-166, T:0-1": [[1510, 1202], [1504, 1210], [1503, 1214], [1504, 1222], [1506, 1226], [1514, 1226], [1518, 1226], [1537, 1226], [1537, 1216], [1537, 1209], [1533, 1202], [1526, 1202]]}, "center": {"109-166, T:0-1": [1521, 1214]}},
{"id": "txcsr2", "name": "University of Western Ontario", "description": "Crest of the University of Western Ontario (UWO, a.k.a. Western) in London, Ontario, Canada. Also known as Western University.", "links": {"website": ["https://www.uwo.ca/"], "subreddit": ["uwo"]}, "path": {"109-165, T:0-1": [[412, 1922], [412, 1938], [419, 1945], [422, 1945], [430, 1938], [430, 1923], [422, 1920]]}, "center": {"109-165, T:0-1": [421, 1932]}},
@@ -4381,14 +4371,14 @@
{"id": "txcndc", "name": "ORION", "description": "A scaled-down version of the logo for one of the major factions called 'ORION' from the Roblox game called 'DEAD AHEAD'.", "links": {"website": ["https://www.roblox.com/games/5730562129/DEAD-AHEAD"], "subreddit": ["DeadAheadOrionPlace"]}, "path": {"109-166, T:0-1": [[1982, 1237], [1982, 1227], [1989, 1227], [1989, 1237]]}, "center": {"109-166, T:0-1": [1986, 1232]}},
{"id": "txcmf6", "name": "Chao", "description": "A trio of Chao, characters from the Sonic game series. From left to right: Dark Chao, Hero Chao, and Neutral Chao.", "links": {"website": ["https://sonic.fandom.com/wiki/Chao"], "subreddit": ["chao"]}, "path": {"106-153": [[1394, 143], [1394, 146], [1393, 147], [1393, 150], [1396, 153], [1400, 153], [1400, 157], [1403, 160], [1354, 160], [1351, 157], [1351, 154], [1352, 153], [1352, 150], [1355, 150], [1359, 154], [1359, 157], [1356, 160], [1405, 160], [1408, 157], [1408, 154], [1404, 150], [1401, 153], [1401, 147], [1400, 146], [1400, 143]], "154-166, T:0-1": [[1394, 141], [1394, 143], [1385, 143], [1385, 146], [1384, 146], [1384, 150], [1387, 153], [1389, 153], [1392, 150], [1395, 150], [1396, 151], [1400, 151], [1400, 157], [1403, 160], [1405, 160], [1408, 157], [1408, 154], [1404, 150], [1401, 150], [1401, 145], [1400, 144], [1400, 141]]}, "center": {"106-153": [1397, 149], "154-166, T:0-1": [1389, 147]}},
{"id": "txe5mm", "name": "Dav1E", "description": "Top Minecraft speedrunner. First to get a time below 5 minutes in the Minecraft Filtered Seed Glitchless category extension.", "links": {"website": ["https://www.youtube.com/c/DAV1E"]}, "path": {"109-166, T:0-1": [[1482, 1446], [1489, 1446], [1489, 1453], [1482, 1453]]}, "center": {"109-166, T:0-1": [1486, 1450]}},
-{"id": "txe4sh", "name": "Volkswagen Bus", "description": "A Volkswagen Type 2, painted blue.", "links": {"website": ["https://en.wikipedia.org/wiki/Volkswagen_Type_2"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1635, 847], [1631, 853], [1631, 864], [1636, 869], [1640, 868], [1640, 866], [1649, 866], [1650, 869], [1653, 869], [1654, 868], [1652, 864], [1653, 859], [1659, 857], [1664, 855], [1668, 851], [1673, 851], [1670, 847]]}, "center": {"56-166, T:0-1": [1647, 856]}},
+{"id": "txe4sh", "name": "Volkswagen Type 2 (T1)", "description": "The Volkswagen Type 2 (T1) is an iconic bus produced by German automobile manufacturer Volkswagen from 1950 to 1967. It was part of Volkswagen's Transporter series of automobiles.", "links": {"website": ["https://en.wikipedia.org/wiki/Volkswagen_Type_2"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"99-166, T:0-1": [[1635, 846], [1630, 853], [1630, 864], [1635, 869], [1639, 869], [1641, 867], [1649, 867], [1649, 869], [1653, 869], [1653, 859], [1654, 858], [1660, 858], [1661, 857], [1663, 857], [1668, 852], [1673, 852], [1673, 850], [1670, 846]]}, "center": {"99-166, T:0-1": [1641, 857]}},
{"id": "txe4lw", "name": "Vanillaworks", "description": "A Discord community focused around lore-friendly mods for the game Grand Theft Auto V.", "links": {"website": ["https://vanillaworks.weebly.com/"]}, "path": {"109-165, T:0-1": [[1765, 1379], [1765, 1371], [1742, 1371], [1744, 1379]]}, "center": {"109-165, T:0-1": [1754, 1375]}},
{"id": "txe472", "name": "De La Salle University", "description": "De La Salle University (Filipino: Pamantasang De La Salle or Unibersidad ng De La Salle) is a university in Taft Avenue, Malate, Manila, Philippines.", "links": {"website": ["https://en.wikipedia.org/wiki/De_La_Salle_University"], "subreddit": ["Philippines"]}, "path": {"109-165, T:0-1": [[364, 1671], [378, 1671], [378, 1674], [364, 1674]]}, "center": {"109-165, T:0-1": [371, 1673]}},
{"id": "txe35x", "name": "Evil Xisuma", "description": "Evil Xisuma, also known as Evil X or simply EX, is a character created by YouTuber Xisumavoid in Hermitcraft SMP. It was created as an April Fools' joke in 2015 during Hermitcraft's third season, and has survived an extremely long time, having last appeared in December 2021 in Xisuma's second-last episode in Season 8, along with a possibility of his return in the future. He is well-loved by much of the fandom, and he starred in the animation Evil's Fault by fan Th3Pooka, later indirectly confirmed to be canon to his storyline. Unfortunately, his face is only partially visible here.", "links": {"website": ["https://hermitcraft.fandom.com/wiki/Evil_Xisuma"], "subreddit": ["HermitCraft"]}, "path": {"98-165, T:0-1": [[860, 631], [860, 639], [861, 639], [863, 636], [863, 634], [869, 634], [869, 631]]}, "center": {"98-165, T:0-1": [862, 633]}},
{"id": "txe2j6", "name": "Flag of East Turkestan", "description": "This flag, known as Kökbayraq, is unofficially used to represent the region of East Turkestan, roughly corresponding to China's Xinjiang province. East Turkestan is largely populated by the ethnic Uyghurs, who are victims of the Chinese Communist Party's ongoing Uyghur genocide. This flag is used as a symbol of protest against the CCP and for independence of East Turkestan from China.", "links": {"website": ["https://en.wikipedia.org/wiki/East_Turkestan", "https://en.wikipedia.org/wiki/Kokbayraq"]}, "path": {"104-106": [[965, 449], [991, 449], [991, 465], [965, 465]], "89-103": [[965, 438], [965, 465], [991, 465], [991, 438]], "76-88": [[966, 441], [966, 450], [968, 450], [973, 453], [975, 455], [990, 455], [990, 441]], "60-74": [[964, 441], [964, 465], [992, 465], [992, 441]], "39-59": [[963, 441], [963, 460], [992, 460], [992, 441]], "108-111": [[1782, 427], [1782, 432], [1789, 432], [1789, 428], [1786, 428], [1786, 427]], "114-165, T:0-1": [[965, 442], [989, 442], [989, 458], [965, 458]]}, "center": {"104-106": [978, 457], "89-103": [978, 452], "76-88": [978, 448], "60-74": [978, 453], "39-59": [978, 451], "108-111": [1784, 430], "114-165, T:0-1": [977, 450]}},
{"id": "txe25p", "name": "Orange-Teal Heart", "description": "u/__--ME--__ and u/bro_dmb left their permanent mark on the canvas in the form of a heart going from their two favorite colours orange to teal.", "links": {}, "path": {"109-166, T:0-1": [[989, 1675], [991, 1677], [993, 1675], [992, 1674], [991, 1675], [990, 1674]]}, "center": {"109-166, T:0-1": [991, 1675]}},
{"id": "txe1u6", "name": "A very smol turtle", "description": "Just a very smol turtle, originally created by u/SirOutrageous4953 and u/rockalterngear and later adopted by the WatchDominion banner :)", "links": {"subreddit": ["verysmolturtle"]}, "path": {"109-166, T:0-1": [[1786, 1611], [1786, 1600], [1799, 1612]]}, "center": {"109-166, T:0-1": [1790, 1608]}},
-{"id": "txe1t2", "name": "AZKi logo", "description": "A logo that represents AZKi's name, a Hololive Gen. 0 member and Vsinger. AZKi was formerly under INoNaKa Music (INNK) before April 1, 2022, when she was transferred to the main Hololive branch and INNK Music discontinued its activities.", "links": {"website": ["https://hololive.wiki/wiki/AZKi"], "subreddit": ["AZKi", "Hololive"]}, "path": {"56-166, T:0-1": [[1392, 925], [1392, 930], [1391, 931], [1390, 931], [1390, 932], [1391, 933], [1391, 934], [1392, 934], [1392, 935], [1393, 936], [1392, 936], [1393, 937], [1393, 938], [1394, 935], [1396, 935], [1399, 935], [1402, 935], [1402, 927], [1394, 927], [1393, 925]]}, "center": {"56-166, T:0-1": [1396, 931]}},
+{"id": "txe1t2", "name": "AZKi logo", "description": "A logo that represents AZKi's name, a Hololive Gen. 0 member and Vsinger. AZKi was formerly under INoNaKa Music (INNK) before April 1, 2022, when she was transferred to the main Hololive branch and INNK Music discontinued its activities.", "links": {"website": ["https://hololive.wiki/wiki/AZKi"], "subreddit": ["AZKi", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1392, 925], [1392, 930], [1391, 931], [1390, 931], [1390, 932], [1391, 933], [1391, 934], [1392, 934], [1392, 935], [1393, 936], [1392, 936], [1393, 937], [1393, 938], [1394, 935], [1396, 935], [1399, 935], [1402, 935], [1402, 927], [1394, 927], [1393, 925]]}, "center": {"56-166, T:0-1": [1396, 931]}},
{"id": "txe0f2", "name": "XioviArt", "description": "Artist, Game Developer and Streamer", "links": {"website": ["https://www.twitch.tv/xioviart"]}, "path": {"109-166, T:0-1": [[1332, 1343], [1332, 1346], [1335, 1346], [1335, 1343]]}, "center": {"109-166, T:0-1": [1334, 1345]}},
{"id": "txe06b", "name": "Minecrab", "description": "Minecrab is a crab with a frog on its head. It representing a private server community for the game Minecraft.", "links": {"website": ["https://www.deviantart.com/guardiavoir/art/Minecrab-830301230"]}, "path": {"67-105": [[1584, 329], [1584, 336], [1596, 336], [1596, 329]], "106-166, T:0-1": [[1583, 330], [1583, 336], [1598, 336], [1598, 330]]}, "center": {"67-105": [1590, 333], "106-166, T:0-1": [1591, 333]}},
{"id": "txdzmi", "name": "Cube1337x", "description": "Current Minecraft world record speedrunner.", "links": {"website": ["https://www.youtube.com/channel/UChlZtNyDjC0llHz7sdlG9dg"]}, "path": {"109-166, T:0-1": [[1455, 1437], [1462, 1437], [1462, 1444], [1455, 1444]]}, "center": {"109-166, T:0-1": [1459, 1441]}},
@@ -4407,7 +4397,7 @@
{"id": "txdsec", "name": "Manchester United Football Club", "description": "Manchester United Football Club is an association football (soccer) club based in Greater Manchester, England, United Kingdom. They are nicknamed the Red Devils.\n\nThe three trophies on the bottom represents the trophies Manchester United won during the 1998-99 treble winning season: the FA Cup, the Premier League, and the Champions League.\n\nThe green and gold scarf on the back of the crest represents the old club colours back when it was known as Newton Heath. It is mostly used today to symbolize protest of the club's current American owners, the Glazer family.", "links": {"website": ["https://www.manutd.com/", "https://en.wikipedia.org/wiki/Manchester_United_F.C."], "subreddit": ["reddevils"]}, "path": {"11-55": [[470, 877], [470, 890], [513, 890], [513, 877]], "122-166, 56-81, 84-119, T:0-1": [[1619, 636], [1619, 690], [1661, 690], [1661, 636]]}, "center": {"11-55": [492, 884], "122-166, 56-81, 84-119, T:0-1": [1640, 663]}},
{"id": "txdsdn", "name": "ACDS", "description": "The logo of a small deltarune theory server ran by Andrew Cunningham.", "links": {"website": ["https://www.youtube.com/channel/UCYNu9Y31EV77TD8qTX_BIsA"], "subreddit": ["Deltarune"]}, "path": {"109-166, T:0-1": [[1790, 1693], [1794, 1689], [1794, 1686], [1793, 1685], [1787, 1685], [1786, 1686], [1787, 1690]]}, "center": {"109-166, T:0-1": [1790, 1688]}},
{"id": "txds8t", "name": "Gray Matter", "description": "1 of the first 10 aliens Ben gets in the Classic Ben 10 (2005) show and reboot (2016).", "links": {"website": ["https://ben10.fandom.com/wiki/Grey_Matter_(Classic)"], "subreddit": ["Ben10"]}, "path": {"109-165, T:0-1": [[691, 1577], [690, 1574], [708, 1575], [709, 1592], [695, 1595], [693, 1595]]}, "center": {"109-165, T:0-1": [700, 1584]}},
-{"id": "txds34", "name": "Girls' Generation", "description": "Logo of the K-pop girl group Girls' Generation formed by SM Entertainment in 2007. The group is composed of eight members: Taeyeon, Sunny, Tiffany, Hyoyeon, Yuri, Sooyoung, Yoona, and Seohyun. Originally a nine-piece ensemble, Jessica departed from the group in September 2014.", "links": {"website": ["https://en.wikipedia.org/wiki/Girls%27_Generation"], "subreddit": ["SNSD"]}, "path": {"56-166, T:0-1": [[1509, 898], [1509, 910], [1524, 910], [1524, 898]]}, "center": {"56-166, T:0-1": [1517, 904]}},
+{"id": "txds34", "name": "Girls' Generation", "description": "Girls' Generation (소녀시대/少女時代) is a K-pop girl group formed by SM Entertainment in 2007. The group is composed of eight members: Taeyeon, Sunny, Tiffany, Hyoyeon, Yuri, Sooyoung, Yoona, and Seohyun. Originally a nine-piece ensemble, Jessica departed from the group in September 2014.", "links": {"website": ["https://www.smtown.com/artist/musician/44", "https://en.wikipedia.org/wiki/Girls%27_Generation"], "subreddit": ["SNSD", "kpop"]}, "path": {"102-166, T:0-1": [[1508, 897], [1508, 911], [1525, 911], [1525, 897]]}, "center": {"102-166, T:0-1": [1517, 904]}},
{"id": "txdrp7", "name": "xQc cow", "description": "Image made by xQc (a.k.a. xQcOW, real name Félix Lengyel), a popular Twitch streamer and the public enemy of r/place, and his army of Juicers after they made his Winston logo. Responsible for the many wars and destruction in r/place, as well as the creation of tributes for Zyzz and Kobe Bryant. The cow itself was a design proposed by Félix, but this project is unique in that the rest of the features (grass, flowers, Tree, sky, clouds, rainbow and gold pot) are all his viewers' doing and were not made with an overlay.", "links": {"website": ["https://www.twitch.tv/xqcow"], "subreddit": ["xqcow"]}, "path": {"109-166, T:0-1": [[1190, 1733], [1190, 1737], [1190, 1740], [1193, 1740], [1194, 1744], [1194, 1753], [1191, 1754], [1189, 1758], [1189, 1763], [1187, 1768], [1185, 1774], [1184, 1781], [1186, 1784], [1190, 1789], [1193, 1793], [1196, 1794], [1197, 1794], [1200, 1796], [1203, 1796], [1207, 1798], [1208, 1799], [1211, 1800], [1214, 1801], [1239, 1801], [1246, 1799], [1246, 1796], [1249, 1796], [1254, 1794], [1255, 1791], [1256, 1789], [1258, 1788], [1262, 1784], [1261, 1783], [1261, 1777], [1262, 1776], [1262, 1775], [1263, 1775], [1264, 1774], [1264, 1773], [1264, 1771], [1263, 1771], [1260, 1770], [1257, 1767], [1259, 1762], [1247, 1740], [1236, 1727], [1223, 1719], [1209, 1720], [1191, 1731]]}, "center": {"109-166, T:0-1": [1222, 1763]}},
{"id": "txdqvl", "name": "Assyrian heart", "description": "A heart containing the flag of the Assyrian people. Assyrians are an ethnoreligious group indigenous to northern Mesopotamia in the Middle East.", "links": {"website": ["https://en.wikipedia.org/wiki/Assyrian_people", "https://en.wikipedia.org/wiki/Assyrian_flag"], "subreddit": ["Assyria"]}, "path": {"108-166, T:0-1": [[1218, 248], [1215, 251], [1215, 252], [1220, 257], [1225, 252], [1225, 251], [1222, 248]]}, "center": {"108-166, T:0-1": [1220, 252]}},
{"id": "txdqs5", "name": "Arcane Odyssey", "description": "An upcoming Roblox game focusing on magical adventures in the seas. The green lightning is the developer Vetex's signature symbol.", "links": {"website": ["https://forum.arcaneodyssey.dev/"]}, "path": {"109-166, T:0-1": [[1724, 1190], [1724, 1198], [1738, 1198], [1737, 1190], [1733, 1190]]}, "center": {"109-166, T:0-1": [1731, 1194]}},
@@ -4429,7 +4419,7 @@
{"id": "txeueb", "name": "Shoebill", "description": "Balaeniceps rex, also known as the shoebill or shoebill stork.", "links": {"subreddit": ["ShoebillStorks"]}, "path": {"109-166, T:0-1": [[1727, 1385], [1727, 1395], [1740, 1395], [1734, 1385]]}, "center": {"109-166, T:0-1": [1732, 1391]}},
{"id": "txesep", "name": "Mote con huesillo", "description": "The mote con huesillo is a traditional Chilean drink. It is made up of a mixture of caramelized peach juice with wheat mote and dehydrated peaches (huesillo).", "links": {"website": ["https://en.wikipedia.org/wiki/Mote_con_huesillo"], "subreddit": ["chile"]}, "path": {"120": [[272, 498], [281, 498], [281, 496], [282, 496], [282, 492], [277, 492], [277, 489], [280, 489], [280, 487], [275, 487], [275, 492], [271, 492], [271, 496], [272, 496]], "121-164, T:0-1": [[271, 492], [271, 496], [272, 496], [272, 503], [273, 503], [273, 504], [280, 504], [280, 503], [281, 503], [281, 496], [282, 496], [282, 492], [277, 492], [277, 489], [280, 489], [280, 487], [275, 487], [275, 492]]}, "center": {"120": [276, 495], "121-164, T:0-1": [277, 497]}},
{"id": "txerb4", "name": "SAQ", "description": "The SAQ logo. The SAQ is a provincial Crown corporation and monopoly in Quebec responsible for the trade of alcoholic beverages within the province.", "links": {"website": ["https://www.saq.com/en/"], "subreddit": ["Quebec"]}, "path": {"109-165, T:0-1": [[1073, 999], [1083, 999], [1083, 1011], [1073, 1011]]}, "center": {"109-165, T:0-1": [1078, 1005]}},
-{"id": "txepyj", "name": "Sakura Miko", "description": "Sakura Miko is a female Japanese virtual YouTuber and a member of Hololive generation 0. She is often called Elite Miko.", "links": {"website": ["https://www.youtube.com/channel/UC-hM6YJuNYVAmUWxeIr9FeA"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1367, 979], [1367, 990], [1369, 990], [1369, 989], [1373, 989], [1373, 990], [1375, 990], [1375, 980], [1377, 980], [1377, 982], [1377, 980], [1378, 980], [1378, 979], [1377, 979], [1377, 977], [1376, 978], [1375, 979], [1367, 979], [1371, 982], [1369, 981]]}, "center": {"56-165, T:0-1": [1371, 984]}},
+{"id": "txepyj", "name": "Sakura Miko", "description": "Sakura Miko is a female Japanese virtual YouTuber and a member of Hololive generation 0. She is often called Elite Miko.", "links": {"website": ["https://www.youtube.com/channel/UC-hM6YJuNYVAmUWxeIr9FeA"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1367, 979], [1367, 990], [1369, 990], [1369, 989], [1373, 989], [1373, 990], [1375, 990], [1375, 980], [1377, 980], [1377, 982], [1377, 980], [1378, 980], [1378, 979], [1377, 979], [1377, 977], [1376, 978], [1375, 979], [1367, 979], [1371, 982], [1369, 981]]}, "center": {"56-165, T:0-1": [1371, 984]}},
{"id": "txeph9", "name": "Café colombiano (Columbian coffee)", "description": "Colombian coffee is the best in the world, Thanks to Colombia's production process and natural conditions. Its altitude, latitude, and temperature are ideal for mild coffee cultivation.", "links": {"website": ["https://en.wikipedia.org/wiki/Coffee_production_in_Colombia"], "subreddit": ["Colombia"]}, "path": {"109-166, T:0-1": [[87, 1305], [85, 1305], [84, 1306], [82, 1306], [78, 1310], [78, 1311], [77, 1312], [77, 1313], [76, 1314], [76, 1321], [75, 1322], [72, 1323], [69, 1326], [69, 1328], [68, 1329], [68, 1331], [69, 1332], [69, 1333], [71, 1335], [71, 1336], [73, 1338], [76, 1339], [79, 1342], [83, 1342], [84, 1343], [105, 1343], [106, 1342], [109, 1341], [110, 1341], [112, 1339], [113, 1339], [119, 1333], [119, 1327], [116, 1324], [117, 1323], [117, 1322], [118, 1321], [118, 1314], [115, 1311], [112, 1311], [110, 1309], [110, 1308], [109, 1307], [108, 1307], [107, 1306], [105, 1306], [104, 1305], [103, 1305], [102, 1304]]}, "center": {"109-166, T:0-1": [95, 1325]}},
{"id": "txeoiy", "name": "Calcifer", "description": "Calcifer is a character from the 2004 Studio Ghibli film Howl's Moving Castle, directed by Hayao Miyazaki. The film is based on the 1986 novel of the same name by Diana Wynne Jones. Calcifer is a fire demon in a magical contract with Wizard Howl. He used to be a falling star, whom Howl was able to catch before he fell to Earth and extinguished.", "links": {"website": ["https://howlscastle.fandom.com/wiki/Calcifer"], "subreddit": ["HowlsMovingCastle", "ghibli"]}, "path": {"56-166, T:0-1": [[1770, 687], [1784, 687], [1784, 705], [1770, 705]]}, "center": {"56-166, T:0-1": [1777, 696]}},
{"id": "txeoar", "name": "House Stark", "description": "Logo of House Stark from A Song of Ice and Fire.\n\nHouse Stark is one of the Great Houses of the Seven Kingdoms and the principal house of the North. Its seat is at Winterfell, one of the oldest castles in the Seven Kingdoms. Its coat of arms displays a grey dire wolf running on a white field, and its words are 'Winter is Coming'. This logo depicts the house symbol as seen in the HBO series.", "links": {"website": ["https://awoiaf.westeros.org/index.php/House_Stark"], "subreddit": ["asoiaf", "SFFA"]}, "path": {"109-166, T:0-1": [[1652, 1338], [1650, 1341], [1657, 1353], [1669, 1353], [1678, 1361], [1684, 1352], [1684, 1342], [1677, 1337], [1669, 1333]]}, "center": {"109-166, T:0-1": [1669, 1345]}},
@@ -4453,7 +4443,7 @@
{"id": "txeffl", "name": "Omegle", "description": "A Popular website to chat with strangers", "links": {"website": ["https://omegle.com"], "subreddit": ["omegle"]}, "path": {"109-165, T:0-1": [[943, 1062], [943, 1085], [962, 1085], [962, 1062]]}, "center": {"109-165, T:0-1": [953, 1074]}},
{"id": "txefbr", "name": "TheBichoZombie", "description": "TheBichoZombie is a small Spanish-speaking streamer on Twitch. Depicted is the streamer's mascot.", "links": {"website": ["https://www.twitch.tv/thebichozombie"]}, "path": {"111-166, T:0-1": [[1364, 466], [1367, 469], [1379, 469], [1381, 467], [1381, 461], [1378, 461], [1378, 455], [1367, 455], [1367, 461], [1364, 461], [1364, 467]]}, "center": {"111-166, T:0-1": [1373, 463]}},
{"id": "txef4v", "name": "Super Mario Pictograms", "description": "A mini-mushroom and invincibility star from the Mario franchise", "links": {"website": ["https://mario.nintendo.com/"], "subreddit": ["nintendo"]}, "path": {"109-166, T:0-1": [[872, 1847], [872, 1870], [884, 1870], [884, 1847]]}, "center": {"109-166, T:0-1": [878, 1859]}},
-{"id": "txeepb", "name": "Moona Hoshinova", "description": "Moona Hoshinova (1st Gen.) is a talent from the idol VTuber group, Hololive. She is the first Hololive talent from Indonesia to reach a milestone of a million subscribers.", "links": {"website": ["https://hololive.hololivepro.com/en/talents?gp=indonesia"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1381, 990], [1386, 990], [1389, 998], [1379, 998], [1380, 992], [1383, 994], [1384, 993], [1388, 996], [1388, 997], [1387, 996], [1382, 996]]}, "center": {"56-165, T:0-1": [1384, 995]}},
+{"id": "txeepb", "name": "Moona Hoshinova", "description": "Moona Hoshinova (1st Gen.) is a talent from the idol VTuber group, Hololive. She is the first Hololive talent from Indonesia to reach a milestone of a million subscribers.", "links": {"website": ["https://hololive.hololivepro.com/en/talents?gp=indonesia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1381, 990], [1386, 990], [1389, 998], [1379, 998], [1380, 992], [1383, 994], [1384, 993], [1388, 996], [1388, 997], [1387, 996], [1382, 996]]}, "center": {"56-165, T:0-1": [1384, 995]}},
{"id": "txeeb6", "name": "The Pixels Formerly Known as /r/FortniteLeaks' Contribution", "description": "This space was home to a group collaboration from the subreddit /r/FortniteLeaks until its destruction by a Romanian streamer and its subsequent re-destruction by a Polish flag. The art consisted of a purple Star Wars Stormtrooper helmet to represent the user Marth, The numbers 328 to commemorate the user Poket's champion title, and a small blue bird to represent the user Stormyblade.", "links": {"subreddit": ["FortniteLeaks"]}, "path": {"109-166, T:0-1": [[387, 1856], [418, 1856], [418, 1887], [379, 1888], [377, 1859]]}, "center": {"109-166, T:0-1": [398, 1872]}},
{"id": "txed8f", "name": "Alice", "description": "Alice from BlackSouls I & II, a DarkSouls, Fairytale , and Cthulhu mythos inspired game created in the RPGMaker engine by sole Japanese autist Eeny, meeny, miny, moe? or as fans refer to him EMMM.\n\nи}u@hwqvh@Ёw@аtqdf", "links": {"website": ["https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG33488.html"]}, "path": {"109-166, T:0-1": [[41, 1258], [45, 1258], [45, 1265], [41, 1265]]}, "center": {"109-166, T:0-1": [43, 1262]}},
{"id": "txed70", "name": "Reckful", "description": "A sprite of Reckful (Byron Daniel Bernstein) from Everland, Reckful's social massively multiplayer online role-playing game which was in works before his passing in 2020. Reckful is shown wearing his iconic SHIEET Penguin t-shirt. Rest in peace Byron. We miss you.", "links": {"website": ["https://en.wikipedia.org/wiki/Reckful"], "subreddit": ["reckful"]}, "path": {"109-164, T:0-1": [[251, 1815], [264, 1815], [265, 1849], [251, 1849]]}, "center": {"109-164, T:0-1": [258, 1832]}},
@@ -4463,8 +4453,8 @@
{"id": "txebnn", "name": "Octoling Octopus", "description": "A pictogram of an Octoling from the Nintendo Switch game Splatoon 2's expansion Octo-Expansion.\n\nThis is the octopus form that Octolings can turn into in order to swim through ink or superjump.", "links": {"website": ["https://splatoon.nintendo.com/"], "subreddit": ["splatoon"]}, "path": {"109-166, T:0-1": [[1119, 1849], [1119, 1863], [1135, 1863], [1135, 1849]]}, "center": {"109-166, T:0-1": [1127, 1856]}},
{"id": "txeawq", "name": "UniqueGeese", "description": "UniqueGeese is a variety (mosty known for FNF) Twitch streamer and YouTuber.", "links": {"website": ["https://www.youtube.com/channel/UC9BkT4lu2bby5wdQe1brQHA"], "subreddit": ["UniqueGeese"]}, "path": {"109-165, T:0-1": [[988, 1914], [996, 1917], [987, 1907], [981, 1909], [982, 1917], [996, 1917], [987, 1907], [980, 1908], [981, 1917], [981, 1908], [987, 1915], [996, 1917], [990, 1914], [988, 1908]]}, "center": {"109-165, T:0-1": [987, 1912]}},
{"id": "txeasv", "name": "University of Illinois Urbana-Champaign", "description": "The University of Illinois Urbana-Champaign (UIUC) is a public land-grant research university in the twin cities of Urbana and Champaign in the state of Illinois, United States. The university community and its athletic teams are known as the Fighting Illini. This art depicts the university's block 'I' logo, along with an outline of the state of Illinois.", "links": {"website": ["http://illinois.edu/", "https://en.wikipedia.org/wiki/University_of_Illinois_Urbana-Champaign"], "subreddit": ["UIUC", "TheB1G"]}, "path": {"8-21": [[174, 629], [202, 629], [202, 609], [174, 609]], "22-166, T:0-1": [[174, 609], [174, 629], [200, 629], [200, 626], [204, 622], [204, 616], [203, 615], [203, 610], [202, 610], [202, 609]]}, "center": {"8-21": [188, 619], "22-166, T:0-1": [189, 619]}},
-{"id": "txeaqa", "name": "Usada Pekora", "description": "Usada Pekora (兎田ぺこら) is a female Japanese Virtual YouTuber associated with Hololive, debuting as part of its third generation of VTubers under the name of \"Hololive Fantasy\" (ホロライブファンタジー) alongside Uruha Rushia, Shiranui Flare, Shirogane Noel and Houshou Marine. She is a bunny who is known for her distinctive laugh and eccentric personality, and is often referred to as a war criminal. PE↗KO↘ PE↗KO↘ AH↓HA↑HA↑", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Shigure_Ui"], "subreddit": ["pekora", "Hololive"]}, "path": {"56-165, T:0-1": [[1362, 998], [1365, 990], [1378, 991], [1378, 998], [1364, 998]]}, "center": {"56-165, T:0-1": [1371, 994]}},
-{"id": "txf10z", "name": "Oozora Subaru", "description": "A chibi artwork of Oozora Subaru (大空スバル). Subaru is a female Japanese virtual Youtuber associated with the idol VTuber group, Hololive, debuting as part of its second generation VTubers alongside Minato Aqua, Murasaki Shion, Nakira Ayame, and Yuzuki Choco. She is known and loved for her extroverted and tomboyish personality. She is also widely known as the duck of the Hololive, because of her silly habit of saying \"shuba shuba\" (quacking) to express her excitement or contentment.", "links": {"website": ["https://hololive.hololivepro.com/en/talents?gp=gen-2"], "subreddit": ["oozorasubaru", "Hololive"]}, "path": {"56-165, T:0-1": [[1391, 971], [1396, 972], [1389, 974], [1389, 973], [1391, 979], [1397, 978], [1395, 972], [1390, 972]]}, "center": {"56-165, T:0-1": [1393, 976]}},
+{"id": "txeaqa", "name": "Usada Pekora", "description": "Usada Pekora (兎田ぺこら) is a female Japanese Virtual YouTuber associated with Hololive, debuting as part of its third generation of VTubers under the name of \"Hololive Fantasy\" (ホロライブファンタジー) alongside Uruha Rushia, Shiranui Flare, Shirogane Noel and Houshou Marine. She is a bunny who is known for her distinctive laugh and eccentric personality, and is often referred to as a war criminal. PE↗KO↘ PE↗KO↘ AH↓HA↑HA↑", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Shigure_Ui"], "subreddit": ["pekora", "Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1362, 998], [1365, 990], [1378, 991], [1378, 998], [1364, 998]]}, "center": {"56-165, T:0-1": [1371, 994]}},
+{"id": "txf10z", "name": "Oozora Subaru", "description": "A chibi artwork of Oozora Subaru (大空スバル). Subaru is a female Japanese virtual Youtuber associated with the idol VTuber group, Hololive, debuting as part of its second generation VTubers alongside Minato Aqua, Murasaki Shion, Nakira Ayame, and Yuzuki Choco. She is known and loved for her extroverted and tomboyish personality. She is also widely known as the duck of the Hololive, because of her silly habit of saying \"shuba shuba\" (quacking) to express her excitement or contentment.", "links": {"website": ["https://hololive.hololivepro.com/en/talents?gp=gen-2"], "subreddit": ["oozorasubaru", "Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1391, 971], [1396, 972], [1389, 974], [1389, 973], [1391, 979], [1397, 978], [1395, 972], [1390, 972]]}, "center": {"56-165, T:0-1": [1393, 976]}},
{"id": "txf0j8", "name": "Rice University", "description": "The Rice University \"R\", along with a bowl of rice as a play on the university's name.", "links": {"website": ["https://www.rice.edu/"], "subreddit": ["riceuniversity"]}, "path": {"109-164, T:0-1": [[353, 1591], [353, 1599], [370, 1599], [370, 1591]]}, "center": {"109-164, T:0-1": [362, 1595]}},
{"id": "txf04s", "name": "Terminale 1", "description": "Terminal 1's class, from lycée ste Louise, Paris, France", "links": {}, "path": {"109-165, T:0-1": [[845, 1375], [846, 1375], [845, 1374], [847, 1375], [845, 1373], [845, 1372], [845, 1371], [845, 1370], [845, 1369], [845, 1368], [848, 1375], [849, 1375], [851, 1375], [852, 1375], [853, 1375], [853, 1374], [853, 1373], [853, 1372], [853, 1371], [853, 1370], [853, 1369], [853, 1368], [850, 1368], [849, 1368], [848, 1368], [847, 1368], [846, 1368], [845, 1368]]}, "center": {"109-165, T:0-1": [850, 1371]}},
{"id": "txf02z", "name": "Joja rat", "description": "Artwork created by Joah#4397 that copied r/StardewValley's Hat Mouse below. Although they first believed that the rat was being made by hostile people, They got into contact with Joah and became allies, allowing him to change his mouse's colors blue to represent Joja Mart, a store in Stardew Valley.", "links": {"subreddit": ["StardewValley", "GreekGodGear"]}, "path": {"56-166, T:0-1": [[1727, 963], [1727, 976], [1729, 978], [1740, 978], [1742, 976], [1742, 963]]}, "center": {"56-166, T:0-1": [1735, 970]}},
@@ -4548,7 +4538,7 @@
{"id": "txg9zt", "name": "CNO", "description": "Long Live Clan Nocturnal", "links": {"website": ["https://web.archive.org/web/20161104013638/http://clan.nocturnal.org/"]}, "path": {"109-166, T:0-1": [[1450, 1233], [1450, 1246], [1488, 1246], [1488, 1233]]}, "center": {"109-166, T:0-1": [1469, 1240]}},
{"id": "txg9yd", "name": "Nordigen", "description": "One of the Newest European Fintech Startups, celebrating its 6th birthday. They are mainly focused on making open-banking free and accessible for everyone", "links": {"website": ["https://nordigen.com"]}, "path": {"125-132": [[83, 1046], [92, 1046], [92, 1055], [83, 1055]], "133-144": [[77, 1041], [92, 1041], [92, 1055], [77, 1055]], "151-160": [[78, 1054], [92, 1054], [92, 1069], [78, 1069]]}, "center": {"125-132": [88, 1051], "133-144": [85, 1048], "151-160": [85, 1062]}},
{"id": "txg95o", "name": "The previous location of Bay12 Outpost", "description": "Before being botted over, This was the location of Bay12 & It's mascot Cautionsaurus", "links": {"subreddit": ["dwarffottessplace"]}, "path": {"109-164, T:0-1": [[261, 1861], [280, 1861], [281, 1888], [261, 1888]]}, "center": {"109-164, T:0-1": [271, 1875]}},
-{"id": "txg8bc", "name": "Baum Boys", "description": "The only testimonial of the Baum Boy Friend Group:\n\nu/Xaver115\nu/niklasdermensch\nu/Mueckenschlaechter\nu/Bubbly_Fuel_1730\n\nThe tree was corrupted by Amongus", "links": {}, "path": {"56-166, T:0-1": [[1506, 860], [1506, 862], [1505, 862], [1505, 866], [1506, 866], [1506, 868], [1507, 868], [1507, 866], [1508, 866], [1508, 863], [1507, 863], [1507, 861], [1506, 861]]}, "center": {"56-166, T:0-1": [1506, 864]}},
+{"id": "txg8bc", "name": "Baum Boys", "description": "The only testimonial of the Baum Boys friend group:\n\nu/Xaver115\nu/niklasdermensch\nu/Mueckenschlaechter\nu/Bubbly_Fuel_1730\n\nThe tree was corrupted by Among Us crewmates.", "links": {}, "path": {"145-166, T:0-1": [[1505, 859], [1505, 861], [1504, 861], [1504, 867], [1505, 867], [1505, 869], [1508, 869], [1508, 867], [1509, 867], [1509, 862], [1508, 862], [1508, 861], [1506, 859]]}, "center": {"145-166, T:0-1": [1507, 864]}},
{"id": "txg75q", "name": "Black Desert Online", "description": "A Sandbox MMORPG developed by Korean video game developer Pearl Abyss", "links": {"website": ["https://www.naeu.playblackdesert.com/en-US/Main/Index"], "subreddit": ["blackdesertonline"]}, "path": {"109-166, T:0-1": [[1601, 1999], [1601, 1986], [1586, 1986], [1586, 1999], [1592, 1999]]}, "center": {"109-166, T:0-1": [1594, 1993]}},
{"id": "txg6tm", "name": "Pope John Paul II", "description": "The pope of the Catholic Church from 1978 to 2005, born in Poland.", "links": {"website": ["https://en.wikipedia.org/wiki/Pope_John_Paul_II"], "subreddit": ["Polska", "poland"]}, "path": {"111-142, 48-98": [[670, 359], [664, 364], [663, 367], [663, 371], [661, 373], [661, 376], [686, 376], [686, 373], [683, 370], [682, 370], [682, 367], [680, 364], [675, 359]], "162-165, T:0-1": [[669, 359], [665, 363], [664, 363], [663, 364], [663, 365], [662, 366], [662, 368], [663, 369], [663, 372], [660, 372], [660, 376], [684, 376], [684, 374], [683, 373], [683, 372], [681, 370], [680, 370], [680, 367], [679, 366], [679, 365], [677, 363], [677, 361], [675, 361], [673, 359]]}, "center": {"111-142, 48-98": [672, 368], "162-165, T:0-1": [671, 368]}},
{"id": "txg6dd", "name": "Ludus Gang", "description": "Small French crew composed of: a Smash player, a musician, a pro driver (on time though), a (fan)girl who paints, a programmer, a pervert, a pair of slippers, a Minecraft player, Two salty boys, and Theo. We struggled to place our logo (and it has been griefed), but we finally achieved it (RIP gigachad).", "links": {"website": ["https://www.youtube.com/channel/UC5GgpU_Fmvl_Rasoc1Q98Ww"]}, "path": {"109-165, T:0-1": [[387, 1725], [408, 1725], [408, 1730], [387, 1730], [387, 1725], [408, 1725]]}, "center": {"109-165, T:0-1": [398, 1728]}},
@@ -4564,7 +4554,7 @@
{"id": "txg1ll", "name": "Ned Kelly", "description": "Ned Kelly was an Australian folk hero from the late 1800s with parallels to Robin Hood. He was a bushranger, outlaw, and felon, famously known for wearing a homemade metal suit of bulletproof armour during his final shootout with the police. He was subsequently executed and hung, with a surprising amount of resistance from the public.", "links": {"website": ["https://en.wikipedia.org/wiki/Ned_Kelly"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"89-150": [[670, 673], [670, 694], [674, 694], [679, 689], [679, 673]], "151-166, T:0-1": [[671, 669], [671, 673], [670, 673], [670, 694], [674, 694], [674, 682], [679, 682], [679, 673], [676, 673], [676, 669]]}, "center": {"89-150": [675, 684], "151-166, T:0-1": [674, 678]}},
{"id": "txg0ww", "name": "Soyuzist Republic heart", "description": "The Soyuzist Republic of Azameen is a small mountainous village union located in Northern Morocco on the Mountain of Gurugu. They function partially autonomously from the Moroccan government.", "links": {"website": ["https://micronations.wiki/wiki/Soyuzist_Republic"]}, "path": {"76-82": [[205, 172], [203, 174], [203, 175], [207, 179], [211, 175], [211, 174], [209, 172]], "59-67": [[121, 165], [119, 167], [119, 169], [123, 173], [127, 169], [127, 167], [125, 165]], "137-165, 85-134, T:0-1": [[229, 172], [227, 174], [227, 175], [231, 179], [235, 175], [235, 174], [233, 172]]}, "center": {"76-82": [207, 175], "59-67": [123, 168], "137-165, 85-134, T:0-1": [231, 175]}},
{"id": "txg0lz", "name": "Lone flower", "description": "It is a simple flower made by just one person.", "links": {"website": ["https://www.instagram.com/_n.kagan/"], "subreddit": ["Turkey"]}, "path": {"109-166, T:0-1": [[1626, 1432], [1624, 1434], [1626, 1436], [1628, 1434]]}, "center": {"109-166, T:0-1": [1626, 1434]}},
-{"id": "txg04h", "name": "Mahou", "description": "Mahou is a Spanish brand of beer.", "links": {"website": ["https://www.mahou.es/"]}, "path": {"150-166, T:0-1": [[1791, 785], [1790, 785], [1790, 798], [1789, 799], [1789, 806], [1786, 810], [1786, 839], [1788, 841], [1792, 841], [1792, 785]]}, "center": {"150-166, T:0-1": [1789, 818]}},
+{"id": "txg04h", "name": "Mahou", "description": "Mahou is a Spanish brand of beer.", "links": {"website": ["https://www.mahou.es/"]}, "path": {"150-166, T:0-1": [[1789, 784], [1789, 798], [1788, 798], [1788, 807], [1787, 807], [1785, 809], [1785, 839], [1789, 842], [1793, 842], [1793, 832], [1792, 832], [1792, 829], [1793, 829], [1793, 818], [1792, 818], [1792, 815], [1793, 815], [1793, 804], [1791, 802], [1791, 799], [1792, 799], [1792, 789], [1791, 789], [1791, 786], [1792, 786], [1792, 784]]}, "center": {"150-166, T:0-1": [1789, 812]}},
{"id": "txfzas", "name": "Freddo", "description": "Freddo is a chocolate snack in Australia in the shape of a frog.\n\nThis art replaced Pulsus's logo before they moved next to the kangaroo.", "links": {"website": ["https://www.cadbury.co.uk/products/cadbury-dairy-milk-freddo-11299", "https://en.wikipedia.org/wiki/Freddo"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"131-165, T:0-1": [[673, 696], [672, 697], [672, 698], [670, 700], [670, 701], [669, 702], [669, 704], [673, 708], [674, 708], [675, 709], [677, 709], [678, 708], [679, 708], [682, 705], [682, 704], [683, 703], [683, 702], [681, 700], [681, 698], [679, 696]]}, "center": {"131-165, T:0-1": [676, 703]}},
{"id": "txfz8a", "name": "Diglett", "description": "Diglett is a Ground-type Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Diglett_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"69-97": [[629, 195], [627, 197], [627, 200], [626, 201], [616, 201], [615, 200], [615, 198], [613, 196], [611, 196], [609, 198], [609, 200], [608, 201], [608, 202], [634, 202], [634, 201], [633, 200], [633, 197], [631, 195]], "63-68, 98-166, T:0-1": [[629, 195], [627, 197], [627, 200], [626, 201], [627, 202], [633, 202], [634, 201], [633, 200], [633, 197], [631, 195]]}, "center": {"69-97": [630, 199], "63-68, 98-166, T:0-1": [630, 199]}},
{"id": "txfz50", "name": "Muted Hearts", "description": "Muted Hearts is a small community of talented artists, Tinkerers, and kind-hearted individuals. The three hearts represent the strong unity and friendship we all share.", "links": {}, "path": {"126-149": [[17, 66], [17, 71], [35, 71], [35, 66]], "150-165, T:0-1": [[15, 66], [15, 71], [33, 71], [33, 66]]}, "center": {"126-149": [26, 69], "150-165, T:0-1": [24, 69]}},
@@ -4572,7 +4562,7 @@
{"id": "txfxjl", "name": "Purpl' Studio Logo", "description": "the fist of The Purpl' Studio !", "links": {"website": ["https://www.instagram.com/purpl_studio/"]}, "path": {"109-165, T:0-1": [[943, 1364], [943, 1357], [952, 1357], [952, 1364]]}, "center": {"109-165, T:0-1": [948, 1361]}},
{"id": "txfxbm", "name": "Shoebill Stork and Green Square", "description": "Partnership between a green square and the shoebill stork subreddit.", "links": {"subreddit": ["ShoebillStorks"]}, "path": {"109-166, T:0-1": [[1727, 1385], [1739, 1385], [1740, 1395], [1727, 1395]]}, "center": {"109-166, T:0-1": [1733, 1390]}},
{"id": "txfwzz", "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.\n\nAngry Birds is a game about flinging birds at buildings to destroy them. It was made by Finnish game studio Rovio Entertainment.", "links": {"website": ["https://angrybirds.fandom.com/wiki/Red", "https://www.AngryBirds.com", "https://en.wikipedia.org/wiki/Angry_Birds"], "subreddit": ["AngryBirds", "place_nordicunion", "Suomi"]}, "path": {"18-166, T:0-1": [[603, 144], [601, 146], [601, 148], [598, 151], [598, 156], [599, 157], [599, 158], [601, 160], [602, 160], [603, 161], [609, 161], [610, 160], [611, 160], [613, 158], [613, 157], [614, 156], [614, 151], [607, 144]]}, "center": {"18-166, T:0-1": [606, 154]}},
-{"id": "txfwp2", "name": "Brotherhood of Eren and Taha", "description": "I just made a logo with our initials to surprise my friend and leave a memory on the canvas -Eren (u/m0ck1nGxD)", "links": {}, "path": {"56-166, T:0-1": [[1499, 831], [1499, 837], [1505, 837], [1505, 831]]}, "center": {"56-166, T:0-1": [1502, 834]}},
+{"id": "txfwp2", "name": "Brotherhood of Eren and Taha", "description": "I just made a logo with our initials to surprise my friend and leave a memory on the canvas. - Eren (u/m0ck1nGxD)", "links": {"website": ["https://www.reddit.com/user/m0ck1nGxD"]}, "path": {"155-166, T:0-1": [[1499, 831], [1499, 837], [1505, 837], [1505, 831]]}, "center": {"155-166, T:0-1": [1502, 834]}},
{"id": "txfwb3", "name": "bb", "description": "A small addition from twitch streamer bbsmols and her community", "links": {"website": ["https://www.twitch.tv/bbsmols"]}, "path": {"109-166, T:0-1": [[1610, 1418], [1610, 1421], [1614, 1421], [1614, 1418]]}, "center": {"109-166, T:0-1": [1612, 1420]}},
{"id": "txfw8h", "name": "Brolandian Empire flag", "description": "The flag of the glorious Brolandian Empire.", "links": {}, "path": {"109-165, T:0-1": [[935, 1357], [943, 1357], [943, 1365], [935, 1365]]}, "center": {"109-165, T:0-1": [939, 1361]}},
{"id": "txa5oz", "name": "Mizkif's Peepo", "description": "This frog represents Mizkif's community. He is wearing an OTK hoodie. Peepo had to be rebuild 3 times, with each rebuild looking less like the original. Missing is the crown from the original build", "links": {"website": ["https://twitch.tv/mizkif"], "subreddit": ["Mizkif"]}, "path": {"1-165, T:0-1": [[624, 943], [623, 944], [665, 943], [664, 998], [665, 999], [624, 999]]}, "center": {"1-165, T:0-1": [644, 971]}},
@@ -4586,17 +4576,17 @@
{"id": "txfqgt", "name": "Mini University of South Carolina Logo", "description": "A simplified version of the U of SC logo. This institution is home to the Gamecocks. The Gamecocks fought hard and with pride to be a small part of this global art project. Despite being very close to the most contested part of the grid, USC's tiny 11x7 patch remained unscathed all the way until the whitening. Forever to thee!", "links": {"website": ["https://sc.edu/"], "subreddit": ["Gamecocks"]}, "path": {"109-164, T:0-1": [[297, 1602], [307, 1602], [307, 1608], [297, 1608]]}, "center": {"109-164, T:0-1": [302, 1605]}},
{"id": "txfq41", "name": "Nämen!", "description": "A Swedish interjection used to indicate surprise. Similar to \"Oh!\" in English.", "links": {"website": ["https://www.thelocal.se/20181018/swedish-word-of-the-day-namen/"], "subreddit": ["place_nordicunion", "sweden", "TeosGame"]}, "path": {"96-166, T:0-1": [[802, 78], [802, 87], [837, 87], [837, 78]]}, "center": {"96-166, T:0-1": [820, 83]}},
{"id": "txfpyc", "name": "Kiki's Delivery Service", "description": "Kiki's Delivery Service (Japanese: 魔女の宅急便, Hepburn: Majo no Takkyūbin) is a 1989 Japanese animated fantasy film written, produced, and directed by Hayao Miyazaki, adapted from the 1985 novel by Eiko Kadono. This art was suggested by u/Katermukke94 in r/ghibli and other Ghibli-associated subreddits, getting the most traction on r/ghibli. We were making slow progress as Ludwig's community fought against changes in the Totoro art, but eventually a member of our group contacted Ludwig's stream and he stated on stream that it was a good idea. His fans then helped to complete the art just before r/place finished.", "links": {"website": ["https://en.wikipedia.org/wiki/Kiki%27s_Delivery_Service"], "subreddit": ["ghibli"]}, "path": {"109-165, T:0-1": [[1157, 1521], [1161, 1518], [1165, 1522], [1167, 1505], [1170, 1505], [1176, 1509], [1179, 1502], [1182, 1505], [1182, 1511], [1187, 1516], [1187, 1523], [1180, 1526], [1180, 1530], [1186, 1530], [1186, 1540], [1187, 1541], [1187, 1543], [1185, 1542], [1182, 1543], [1180, 1539], [1179, 1542], [1177, 1542], [1177, 1538], [1173, 1538], [1169, 1535], [1169, 1529]]}, "center": {"109-165, T:0-1": [1175, 1523]}},
-{"id": "txfpqx", "name": "Yukihana Lamy", "description": "Hololive Generation 5 VTuber Yukihana Lamy.", "links": {"website": ["https://www.youtube.com/channel/UCFKOVgVbGmX65RxO3EtH3iw"], "subreddit": ["yukihanalamy", "Hololive"]}, "path": {"56-165, T:0-1": [[1375, 976], [1366, 976], [1367, 970], [1374, 970], [1375, 971]]}, "center": {"56-165, T:0-1": [1371, 973]}},
+{"id": "txfpqx", "name": "Yukihana Lamy", "description": "Hololive Generation 5 VTuber Yukihana Lamy.", "links": {"website": ["https://www.youtube.com/channel/UCFKOVgVbGmX65RxO3EtH3iw"], "subreddit": ["yukihanalamy", "Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1375, 976], [1366, 976], [1367, 970], [1374, 970], [1375, 971]]}, "center": {"56-165, T:0-1": [1371, 973]}},
{"id": "txfpli", "name": "Jak", "description": "The main protagonist of the Jak and Daxter video game franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Jak_and_Daxter"], "subreddit": ["jakanddaxter"]}, "path": {"109-166, T:0-1": [[670, 1341], [668, 1342], [668, 1343], [668, 1346], [667, 1347], [667, 1348], [667, 1349], [668, 1349], [668, 1351], [668, 1355], [668, 1361], [668, 1366], [677, 1366], [675, 1358], [678, 1357], [679, 1356], [678, 1354], [675, 1346], [674, 1343], [671, 1341], [670, 1340], [669, 1340]]}, "center": {"109-166, T:0-1": [672, 1354]}},
-{"id": "txfpdz", "name": "Getting Over It with Bennet Foddy", "description": "A game wherein players attempt to scale a large mountain of debris using a sledgehammer.", "links": {"website": ["https://store.steampowered.com/app/240720/Getting_Over_It_with_Bennett_Foddy/"], "subreddit": ["GettingOverItGame"]}, "path": {"56-166, T:0-1": [[1200, 804], [1200, 823], [1217, 823], [1217, 804]]}, "center": {"56-166, T:0-1": [1209, 814]}},
+{"id": "txfpdz", "name": "Getting Over It with Bennett Foddy", "description": "Getting Over It with Bennett Foddy (GOI) is a 2017 indie platforming game where players attempt to scale a large mountain of debris using a sledgehammer. The game was created by Bennett Foddy, who also narrates in-game. Getting Over It is a \"rage game\", designed to be frustratingly difficult to make people (especially streamers) rage when playing it.", "links": {"website": ["https://store.steampowered.com/app/240720/Getting_Over_It_with_Bennett_Foddy/", "https://en.wikipedia.org/wiki/Getting_Over_It_with_Bennett_Foddy"], "subreddit": ["GettingOverItGame"]}, "path": {"78-166, T:0-1": [[1200, 804], [1200, 823], [1217, 823], [1217, 804]]}, "center": {"78-166, T:0-1": [1215, 817]}},
{"id": "txfoxq", "name": "Last Island", "description": "The beacon of light character from Nadabladam's game: Last Island", "links": {"website": ["https://nadabladam.itch.io/last-island"]}, "path": {"109-166, T:0-1": [[877, 1956], [883, 1956], [883, 1949], [877, 1949]]}, "center": {"109-166, T:0-1": [880, 1953]}},
{"id": "txfog8", "name": "Italiandogs Hype", "description": "An attempt was made to recreate an emote of Twitch streamer Italiandogs by his community.\n\nLater was covered up by Mizkif's community while creating their artwork featuring Mizkif as an egg and Xavier the Polar Bear.\n\nFinally being covered up by One Piece", "links": {"website": ["https://www.twitch.tv/italiandogs"]}, "path": {"109-165, T:0-1": [[205, 1365], [205, 1374], [214, 1374], [215, 1365]]}, "center": {"109-165, T:0-1": [210, 1369]}},
{"id": "txfoaf", "name": "AEMBOT", "description": "FIRST Robotics competition team in Hillsboro, Oregon.", "links": {"website": ["http://www.aembot.com"], "subreddit": ["FRC"]}, "path": {"109-166, T:0-1": [[1162, 1658], [1149, 1658], [1149, 1664], [1162, 1664]]}, "center": {"109-166, T:0-1": [1156, 1661]}},
{"id": "txfo60", "name": "Cringe Ninja Gaming", "description": "Cringe Ninja Gaming (CNG) is an up-and-coming esports organization.\n\nAfter (accidentally) taking some of Neopets's land, CNG was able to form an alliance with them, and the text was protected.", "links": {"website": ["https://twitter.com/CNG_Esports_"]}, "path": {"28-166, T:0-1": [[352, 702], [363, 702], [363, 709], [352, 709]]}, "center": {"28-166, T:0-1": [358, 706]}},
{"id": "txfntv", "name": "Project Cherryton", "description": "Project Cherryton, also known as Imaginary Badger, is a comic dub YouTube channel for the manga Beastars.", "links": {"website": ["https://www.youtube.com/c/ImaginaryBadger"]}, "path": {"150-160": [[1346, 344], [1346, 349], [1354, 349], [1354, 344]]}, "center": {"150-160": [1350, 347]}},
{"id": "txfnnn", "name": "Skål!", "description": "A word that means \"Cheers!\" in Norwegian, Swedish, and Danish.", "links": {"website": ["https://en.wiktionary.org/wiki/sk%C3%A5l"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"121-157": [[742, 93], [742, 99], [785, 99], [785, 93], [754, 93], [754, 91], [752, 91], [752, 93]], "T:0-1": [[742, 93], [742, 99], [767, 99], [767, 93], [754, 93], [754, 91], [752, 91], [752, 93]], "158-166": [[742, 93], [742, 99], [795, 99], [795, 93], [754, 93], [754, 91], [752, 91], [752, 93]]}, "center": {"121-157": [763, 96], "T:0-1": [755, 96], "158-166": [769, 96]}},
-{"id": "txfmw2", "name": "Ayunda Risu", "description": "Hololive Indonesia Generation 1 VTuber Ayunda Risu, well-known for her No Nut November series.", "links": {"website": ["https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1387, 982], [1388, 982], [1380, 982], [1380, 975], [1388, 975], [1388, 982]]}, "center": {"56-165, T:0-1": [1384, 979]}},
-{"id": "txfm40", "name": "Ariani Iofifteen", "description": "Hololive Indonesia Generation 1 VTuber Ariani Iofifteen.", "links": {"website": ["https://www.youtube.com/channel/UCAoy6rzhSf4ydcYjJw3WoVg"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1386, 989], [1379, 989], [1379, 983], [1385, 983], [1386, 984]]}, "center": {"56-165, T:0-1": [1382, 986]}},
+{"id": "txfmw2", "name": "Ayunda Risu", "description": "Hololive Indonesia Generation 1 VTuber Ayunda Risu, well-known for her No Nut November series.", "links": {"website": ["https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1387, 982], [1388, 982], [1380, 982], [1380, 975], [1388, 975], [1388, 982]]}, "center": {"56-165, T:0-1": [1384, 979]}},
+{"id": "txfm40", "name": "Ariani Iofifteen", "description": "Hololive Indonesia Generation 1 VTuber Ariani Iofifteen.", "links": {"website": ["https://www.youtube.com/channel/UCAoy6rzhSf4ydcYjJw3WoVg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1386, 989], [1379, 989], [1379, 983], [1385, 983], [1386, 984]]}, "center": {"56-165, T:0-1": [1382, 986]}},
{"id": "txflla", "name": "Mac Miller", "description": "Mac Miller was a rapper, singer, and record producer from Pittsburgh, Pennsylvania. He was born in 1992 and passed away in 2018.\n\nThis memorial piece was created and defended by a subreddit and Discord channel consisting of fans.", "links": {"website": ["https://www.macmillerswebsite.com/", "https://en.wikipedia.org/wiki/Mac_Miller"], "subreddit": ["MacMiller"]}, "path": {"138-166, T:0-1": [[1737, 605], [1737, 631], [1743, 631], [1743, 605]]}, "center": {"138-166, T:0-1": [1740, 618]}},
{"id": "txfkln", "name": "Gabumon", "description": "Gabumon is a shy reptile Digimon from the Digimon franchise's first generation. It is a rookie/child-level Digimon often paired with the concept of friendship. It covers itself in the data that the wolf Digimon Garurumon leaves behind, shaping it into a fur pelt to wear. It can later evolve (digivolve) into Garurumon. In the anime Digimon Adventure (1999 and 2020 reboot), it is one of the eight Digimon partnered up with the eight chosen children (Digidestined), being the Digimon partner of Digidestined Yamato (Matt) Ishida.", "links": {"website": ["https://digimon.fandom.com/wiki/Gabumon"], "subreddit": ["digimon"]}, "path": {"56-166, T:0-1": [[1321, 103], [1321, 105], [1322, 106], [1322, 109], [1318, 112], [1318, 114], [1322, 118], [1322, 119], [1319, 123], [1319, 128], [1321, 130], [1327, 130], [1328, 131], [1334, 131], [1341, 126], [1341, 121], [1343, 117], [1338, 117], [1333, 107], [1335, 107], [1338, 104], [1333, 104], [1332, 103]]}, "center": {"56-166, T:0-1": [1331, 122]}},
{"id": "txfkan", "name": "Skeppy", "description": "Skeppy is a YouTuber and streamer that makes Minecraft videos and loves to troll BadBoyHalo and make him mad. He is a builder (maybe), and also appears in the Dream SMP (survival multiplayer).", "links": {"website": ["https://www.youtube.com/c/Skeppy"], "subreddit": ["skeppy", "dreamsmp"]}, "path": {"34-165, T:0-1": [[164, 917], [173, 917], [173, 926], [164, 926]]}, "center": {"34-165, T:0-1": [169, 922]}},
@@ -4691,7 +4681,7 @@
{"id": "txh8xv", "name": "Komeiji Koishi", "description": "Komeiji Koishi is a character from the Touhou Project, a series of Japanese bullet hell shoot 'em up (shmup) games.\n\nThis art was independently built by streamer tevin_vr, but quickly came under protection of the Touhou r/place 2022 group after its discovery, who took a liking to this cute chibi artwork. It was named Koosh within the Touhou r/place Discord server. It was protected by Spongebob when xQc attacked at the left side of the art piece. It almost got replaced by the adjacent Computer Science House of Rochester Institute of Technology, but the Touhou group was able to push the logo off.", "links": {"website": ["https://en.touhouwiki.net/wiki/Koishi_Komeiji", "https://www.twitch.tv/tevin_vr"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"76-166, T:0-1": [[1437, 347], [1437, 366], [1466, 366], [1466, 348]]}, "center": {"76-166, T:0-1": [1451, 357]}},
{"id": "txhezr", "name": "Forts RTS", "description": "Forts is a physics-based 2D real-time strategy video game developed and published by Australian studio EarthWork Games.", "links": {"website": ["https://store.steampowered.com/app/410900/Forts/"], "subreddit": ["FortsGame"]}, "path": {"109-165, T:0-1": [[379, 1950], [399, 1950], [399, 1961], [391, 1961], [391, 1967], [396, 1967], [396, 1970], [379, 1970]]}, "center": {"109-165, T:0-1": [388, 1959]}},
{"id": "txhejq", "name": "Tweek X Craig", "description": "A small pice representing the couple of Tweek and Craig from the show South Park", "links": {"subreddit": ["southpark"]}, "path": {"109-166, T:0-1": [[474, 1683], [481, 1683], [481, 1687], [474, 1687], [474, 1685], [480, 1684], [479, 1685], [481, 1683], [481, 1687], [474, 1687], [474, 1683], [480, 1686]]}, "center": {"109-166, T:0-1": [478, 1685]}},
-{"id": "txhdcu", "name": "A", "description": "Catchphrase of Hololive VTuber Gawr Gura coined during her first livestream.", "links": {"subreddit": ["GawrGura", "Hololive"]}, "path": {"34-108": [[263, 759], [263, 764], [267, 764], [267, 759]], "109-166, T:0-1": [[264, 759], [264, 764], [268, 764], [268, 759]]}, "center": {"34-108": [265, 762], "109-166, T:0-1": [266, 762]}},
+{"id": "txhdcu", "name": "A", "description": "Catchphrase of Hololive VTuber Gawr Gura coined during her first livestream.", "links": {"subreddit": ["GawrGura", "Hololive"], "discord": ["holofans"]}, "path": {"34-108": [[263, 759], [263, 764], [267, 764], [267, 759]], "109-166, T:0-1": [[264, 759], [264, 764], [268, 764], [268, 759]]}, "center": {"34-108": [265, 762], "109-166, T:0-1": [266, 762]}},
{"id": "txhjk0", "name": "Minecraft loading screen", "description": "This screen is shown when first creating a world in Minecraft.\n\nThis art was made by the Minecraft Speedrunning community. Speedrunners see the loading screen very often when they reset their runs.", "links": {}, "path": {"68-92": [[1969, 384], [1965, 390], [1965, 393], [1964, 394], [1960, 394], [1960, 395], [1962, 397], [1962, 400], [1973, 400], [1973, 401], [1988, 401], [1988, 396], [1986, 392], [1986, 389], [1984, 387], [1984, 384]], "60-67": [[1971, 388], [1971, 401], [1984, 401], [1984, 388]], "110-166, T:0-1": [[1436, 1454], [1436, 1472], [1454, 1472], [1454, 1454]]}, "center": {"68-92": [1976, 392], "60-67": [1978, 395], "110-166, T:0-1": [1445, 1463]}},
{"id": "txhjdf", "name": "Southern pudu", "description": "The southern pudu, found in southern Chili is one of the two species of pudu, the world's smallest species of deer. It is depicted here drinking mote con huesillo.", "links": {"website": ["https://en.wikipedia.org/wiki/Southern_pudu"], "subreddit": ["chile"]}, "path": {"27-108": [[299, 492], [299, 487], [296, 485], [296, 473], [294, 470], [289, 475], [288, 475], [283, 470], [282, 470], [282, 478], [279, 481], [277, 484], [277, 486], [279, 488], [283, 489], [286, 492]], "2-19": [[638, 476], [638, 481], [636, 481], [634, 485], [634, 488], [636, 490], [638, 490], [639, 491], [639, 501], [638, 501], [638, 508], [640, 511], [647, 511], [647, 515], [651, 515], [653, 513], [666, 513], [666, 503], [668, 501], [668, 493], [665, 490], [665, 484], [651, 484], [651, 478], [649, 476]], "109-165, T:0-1": [[285, 498], [285, 492], [284, 492], [284, 491], [283, 490], [281, 490], [281, 489], [280, 489], [280, 487], [278, 487], [278, 484], [279, 484], [279, 482], [280, 481], [280, 480], [281, 480], [281, 478], [282, 478], [282, 472], [283, 471], [284, 472], [285, 473], [286, 474], [287, 475], [290, 475], [290, 474], [291, 474], [291, 473], [292, 473], [292, 472], [293, 471], [294, 470], [295, 471], [295, 485], [296, 485], [296, 486], [297, 486], [297, 487], [315, 487], [315, 488], [316, 489], [317, 490], [318, 491], [318, 498]]}, "center": {"27-108": [288, 483], "2-19": [653, 498], "109-165, T:0-1": [287, 484]}},
{"id": "txhj71", "name": "Memes Out 4 Duterte", "description": "Currently stylized as meme$ out 4 du30: election year (杜特爾特·梅姆斯: 選舉年), This is the name of a public Facebook group dedicated to posting memes typically clowning on Philippine politics, politicians, and/or other people and topics related.", "links": {"subreddit": ["mo4d", "Philippines"]}, "path": {"109-165, T:0-1": [[397, 1670], [417, 1670], [417, 1675], [397, 1675]]}, "center": {"109-165, T:0-1": [407, 1673]}},
@@ -4713,7 +4703,7 @@
{"id": "txhpbb", "name": "Indigo flower", "description": "Small indigo flower made by a small discord of French friends with the protection of Q and Tom fursonas.", "links": {}, "path": {"109-166, T:0-1": [[444, 1527], [443, 1527], [443, 1528], [442, 1528], [442, 1529], [442, 1530], [443, 1530], [443, 1531], [443, 1532], [446, 1532], [446, 1531], [447, 1531], [447, 1530], [447, 1529], [446, 1529], [446, 1528], [445, 1528], [445, 1527]]}, "center": {"109-166, T:0-1": [444, 1530]}},
{"id": "txhom4", "name": "Fifi Dragon", "description": "An 8-bit mascot of Twitch streamer FireDragon, known for speedrunning and Shiny Pokémon hunting.", "links": {"website": ["https://www.twitch.tv/firedragon"], "subreddit": ["FireDragon"]}, "path": {"109-166, T:0-1": [[653, 1552], [664, 1552], [661, 1557], [661, 1564], [651, 1564], [651, 1552]]}, "center": {"109-166, T:0-1": [656, 1558]}},
{"id": "txhnym", "name": "FR FLAG", "description": "By @lewizooo & @ZupShay", "links": {"website": ["https://www.twitter.com/lewizooo"]}, "path": {"109-165, T:0-1": [[359, 1535], [364, 1535], [364, 1536], [359, 1536]]}, "center": {"109-165, T:0-1": [362, 1536]}},
-{"id": "txhnq9", "name": "Kyomu Suzume", "description": "A sparrow drawn by Holostars member Hanasaki Miyabi.", "links": {"website": ["https://virtualYouTuber.fandom.com/wiki/Hanasaki_Miyabi"], "subreddit": ["holostars", "Hololive"]}, "path": {"109-165, T:0-1": [[1333, 1116], [1341, 1116], [1340, 1110], [1339, 1109], [1335, 1109], [1334, 1110], [1333, 1111]]}, "center": {"109-165, T:0-1": [1337, 1113]}},
+{"id": "txhnq9", "name": "Kyomu Suzume", "description": "A sparrow drawn by Holostars member Hanasaki Miyabi.", "links": {"website": ["https://virtualYouTuber.fandom.com/wiki/Hanasaki_Miyabi"], "subreddit": ["holostars", "Hololive"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1333, 1116], [1341, 1116], [1340, 1110], [1339, 1109], [1335, 1109], [1334, 1110], [1333, 1111]]}, "center": {"109-165, T:0-1": [1337, 1113]}},
{"id": "txhnix", "name": "T_Wagz", "description": "Innovator in Minecraft speedrunning, known for discovering groundbreaking strategies in the game, notably bastion and monument routing. Fastest to obtain all advancements in a set seed without glitches in Minecraft.", "links": {"website": ["https://www.youtube.com/c/TWagz"]}, "path": {"109-166, T:0-1": [[1482, 1464], [1489, 1464], [1489, 1471], [1482, 1471]]}, "center": {"109-166, T:0-1": [1486, 1468]}},
{"id": "txhmtd", "name": "Digital Ideation", "description": "A Swiss Bachelor's Degree.", "links": {"website": ["https://www.hslu.ch/en/lucerne-school-of-information-technology/degree-programs/bachelor/digital-ideation/"]}, "path": {"109-165, T:0-1": [[1075, 1114], [1075, 1122], [1083, 1122], [1083, 1114]]}, "center": {"109-165, T:0-1": [1079, 1118]}},
{"id": "txhmsg", "name": "Battle of the Heroes", "description": "A mural depicting the duel between Obi-Wan Kenobi and Anakin Skywalker on Mustafar from Episode 3: Revenge of the Sith.\n\nInitially designed to be the 'Revenge of the Sith' poster with an osu! hit circle speaking 'botting is a sin' due to accusations. A collaboration between the supposed 'League of Pixels' of r/place, including r/starwars_place, r/PrequelMemes, /r/osuplace, Wookieepedia, and more. However, when their manpower started to dwindle near the end of the event, They struggled to claim their entire desired plot and decided to welcome other smaller communities into their space, like the Black Bauhinia flag, The Swiss flag in the shape of a heart, and more community logos. The resulting 'fading' into surrounding artwork was even preferred by many of its creators, as a testament to the acceptance and diplomacy of the League of Pixels founding subreddits, which was part of why this particular poster was chosen to begin with. A raid was conducted by xQc, but failed due to the efforts of the Discord and r/PrequelMemes. Throughout r/place, The lightsabers were continuously extended by multiple Redditors.", "links": {"website": ["https://cdn.mirai.gg/tmp/dotted-place-template.png"], "subreddit": ["starwars_place", "PrequelMemes", "osuplace", "osugame"]}, "path": {"109-166, T:0-1": [[683, 1510], [710, 1553], [707, 1555], [707, 1571], [707, 1573], [697, 1574], [675, 1570], [673, 1591], [638, 1595], [627, 1604], [628, 1678], [733, 1684], [732, 1691], [724, 1696], [718, 1702], [716, 1714], [720, 1726], [728, 1733], [742, 1734], [754, 1728], [758, 1715], [757, 1703], [751, 1695], [741, 1690], [740, 1691], [739, 1684], [750, 1682], [750, 1670], [779, 1669], [786, 1674], [787, 1711], [830, 1713], [829, 1706], [834, 1705], [833, 1697], [843, 1695], [837, 1660], [831, 1652], [831, 1632], [808, 1609], [812, 1601], [810, 1592], [796, 1586], [789, 1586], [760, 1590], [752, 1585], [751, 1560], [758, 1558], [758, 1544], [753, 1545], [752, 1534], [745, 1541], [743, 1547], [733, 1565], [730, 1565], [726, 1563], [723, 1561], [698, 1521], [685, 1510]]}, "center": {"109-166, T:0-1": [733, 1637]}},
@@ -4779,11 +4769,10 @@
{"id": "txl4cf", "name": "Nevish Line", "description": "A region in Foxhole.", "links": {"website": ["https://foxhole.fandom.com/wiki/Nevish_Line"], "subreddit": ["foxholegame"]}, "path": {"3-165, T:0-1": [[705, 560], [710, 560], [710, 561], [711, 561], [711, 563], [712, 563], [712, 565], [711, 565], [711, 567], [710, 567], [710, 568], [705, 568], [705, 567], [704, 567], [704, 565], [703, 565], [703, 563], [704, 563], [704, 561], [705, 561]]}, "center": {"3-165, T:0-1": [708, 564]}},
{"id": "txl3mf", "name": "Unitystation logo", "description": "a logo representing the unity station project, https://rplace.space/combined/1649108202.png a record of when it wasn't being griefed by bots", "links": {"website": ["https://unitystation.org/"], "subreddit": ["unitystation"]}, "path": {"109-166, T:0-1": [[837, 1615], [844, 1615], [844, 1621], [837, 1621], [837, 1617]]}, "center": {"109-166, T:0-1": [841, 1618]}},
{"id": "txl3kj", "name": "Callum's Cape", "description": "A region in Foxhole.", "links": {"website": ["https://foxhole.fandom.com/wiki/Callum%27s_Cape"], "subreddit": ["foxholegame"]}, "path": {"3-164, T:0-1": [[712, 556], [717, 556], [717, 557], [718, 557], [718, 559], [719, 559], [719, 561], [718, 561], [718, 563], [717, 563], [717, 564], [712, 564], [712, 563], [711, 563], [711, 561], [710, 561], [710, 559], [711, 559], [711, 557], [712, 557]]}, "center": {"3-164, T:0-1": [715, 560]}},
-{"id": "txl32q", "name": "Aespa", "description": "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.", "links": {"website": ["https://www.smtown.com/artist/musician/10766"], "subreddit": ["aespa"]}, "path": {"56-166, T:0-1": [[1516, 888], [1524, 888], [1524, 897], [1514, 897], [1514, 888], [1515, 889], [1524, 889], [1523, 888], [1524, 897], [1514, 897], [1514, 888]]}, "center": {"56-166, T:0-1": [1519, 893]}},
{"id": "txl2y0", "name": "Gadsden flag", "description": "The Gadsden flag is a historical American flag depicting a timber rattlesnake coiled and ready to strike with \"don't tread on me\" written at the bottom. The flag carries the notions of individualism and liberty, embodying anti-authoritarianism. The message basically means \"just leave me alone\", and as one may expect, r/place took that message personally.\n\nThe flag is named after the politician Christopher Gadsden who designed it in 1775 during the American Revolution as a motto flag against Great Britain. It makes several appearances in the game Assassin's Creed III, set in the American Revolution. It is also on the cover of heavy metal band Metallica's fifth studio album, which contains the track \"Don't Tread On Me\".\n\nThis art was made by the r/Conservative subreddit with the help of the r/placesnek, DSP, anarcho-capitalism, Israeli flag, and American flag communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Gadsden_flag"], "subreddit": ["Conservative", "placesnek"]}, "path": {"134-160": [[1473, 501], [1499, 501], [1499, 527], [1473, 527]], "112-133": [[1473, 501], [1473, 523], [1499, 523], [1499, 501]], "70-98": [[1473, 501], [1473, 526], [1499, 526], [1499, 501]]}, "center": {"134-160": [1486, 514], "112-133": [1486, 512], "70-98": [1486, 514]}},
{"id": "txl2ul", "name": "Speaking Woods", "description": "A region in Foxhole.", "links": {"website": ["https://foxhole.fandom.com/wiki/Speaking_Woods"], "subreddit": ["foxholegame"]}, "path": {"3-164, T:0-1": [[719, 552], [724, 552], [724, 553], [725, 553], [725, 555], [726, 555], [726, 557], [725, 557], [725, 559], [724, 559], [724, 560], [719, 560], [719, 559], [718, 559], [718, 557], [717, 557], [717, 555], [718, 555], [718, 553], [719, 553]]}, "center": {"3-164, T:0-1": [722, 556]}},
{"id": "txl2o9", "name": "Rainbow Six Siege", "description": "Rainbow Six Siege is a tactical shooter game. Its logo is a '6' with a downwards pointed pistol inside of it.\n\nDue to the minimal space we had, we had to simplify the logo a lot, but it is still noticeable for people who have seen the original before.", "links": {"website": ["https://store.playstation.com/store/api/chihiro/00_09_000/container/AT/de/99/EP0001-CUSA01788_00-AV00000000000041/0/image?_version=00_09_000&platform=chihiro&bg_color=000000&opacity=100&w=360&h=360", "https://en.wikipedia.org/wiki/Tom_Clancy's_Rainbow_Six_Siege"], "subreddit": ["Rainbow6", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"134-152": [[1453, 1015], [1451, 1017], [1451, 1022], [1453, 1024], [1454, 1024], [1456, 1022], [1456, 1017], [1454, 1015]], "56-61": [[900, 226], [897, 229], [897, 244], [899, 246], [904, 246], [907, 243], [907, 229], [904, 226]], "155-166, T:0-1": [[253, 1159], [254, 1158], [255, 1158], [256, 1159], [257, 1160], [256, 1161], [255, 1161], [255, 1160], [254, 1160], [254, 1161], [255, 1161], [256, 1162], [257, 1163], [257, 1164], [257, 1165], [256, 1166], [255, 1167], [254, 1167], [253, 1166], [252, 1165], [252, 1163], [252, 1162], [252, 1161], [252, 1160]]}, "center": {"134-152": [1454, 1020], "56-61": [902, 236], "155-166, T:0-1": [254, 1163]}},
-{"id": "txl2ir", "name": "Pogostuck: Rage With Your Friends", "description": "Pogostuck is a game made by the developer Superku. This artwork includes Pogodude jumping from earth, The Monolith, a mushroom and a bee.", "links": {"website": ["https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/"], "subreddit": ["PogoStuck"]}, "path": {"56-166, T:0-1": [[1217, 802], [1217, 818], [1239, 818], [1239, 805], [1241, 803], [1239, 801], [1238, 801], [1237, 802], [1236, 801], [1235, 801], [1234, 802], [1226, 802], [1226, 803], [1225, 803], [1225, 804], [1224, 804], [1223, 803], [1223, 802]]}, "center": {"56-166, T:0-1": [1228, 810]}},
+{"id": "txl2ir", "name": "Pogostuck: Rage With Your Friends", "description": "Pogostuck: Rage With Your Friends is a 2019 indie game made by the developer Superku (Hendrik Felix Pohl). It is known for its extreme difficuly. This artwork includes the player character jumping from earth, The Monolith, a mushroom, and a bee.", "links": {"website": ["https://www.pogostuck.com/", "https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/"], "subreddit": ["PogoStuck"]}, "path": {"56-97": [[1217, 802], [1217, 823], [1235, 823], [1235, 825], [1237, 827], [1238, 827], [1240, 825], [1240, 824], [1239, 823], [1239, 807], [1235, 807], [1235, 805], [1232, 802], [1226, 802], [1224, 804], [1223, 804], [1223, 802]], "98-166, T:0-1": [[1217, 802], [1217, 818], [1239, 818], [1239, 807], [1235, 807], [1235, 805], [1232, 802], [1226, 802], [1224, 804], [1223, 804], [1223, 802]]}, "center": {"56-97": [1228, 813], "98-166, T:0-1": [1228, 810]}},
{"id": "txl1xj", "name": "Basin Sionnach", "description": "A region in Foxhole.", "links": {"website": ["https://foxhole.fandom.com/wiki/Basin_Sionnach"], "subreddit": ["foxholegame"]}, "path": {"2-164, T:0-1": [[726, 556], [731, 556], [731, 555], [732, 555], [732, 553], [733, 553], [733, 551], [732, 551], [732, 549], [731, 549], [731, 548], [726, 548], [726, 549], [725, 549], [725, 551], [724, 551], [724, 553], [725, 553], [725, 555], [726, 555]]}, "center": {"2-164, T:0-1": [729, 552]}},
{"id": "txl1q8", "name": "Austria", "description": "Tiny map of Austria with a miniature flag of Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria"], "subreddit": ["Austria"]}, "path": {"67-166, T:0-1": [[1309, 242], [1312, 240], [1315, 238], [1322, 241], [1324, 246], [1321, 247], [1321, 252], [1318, 254], [1316, 254], [1315, 255], [1314, 255], [1312, 256], [1311, 256], [1310, 255], [1310, 254], [1309, 254], [1308, 254], [1308, 255], [1307, 255], [1306, 254], [1303, 254], [1302, 255], [1300, 256], [1298, 255], [1297, 252], [1294, 250], [1293, 249], [1292, 249], [1292, 246], [1295, 247], [1296, 247], [1298, 246], [1300, 246], [1302, 247], [1304, 247], [1305, 248], [1307, 244], [1308, 243]]}, "center": {"67-166, T:0-1": [1314, 247]}},
{"id": "txl11q", "name": "Viper Pit", "description": "A region in Foxhole. \"Honey, it's 11PM. Time for your bridge battle.\"", "links": {"website": ["https://foxhole.fandom.com/wiki/Viper_Pit"], "subreddit": ["foxholegame"]}, "path": {"3-164, T:0-1": [[733, 560], [738, 560], [738, 561], [739, 561], [739, 563], [740, 563], [740, 565], [739, 565], [739, 567], [738, 567], [738, 568], [733, 568], [733, 567], [732, 567], [732, 565], [731, 565], [731, 563], [732, 563], [732, 561], [733, 561]]}, "center": {"3-164, T:0-1": [736, 564]}},
@@ -4808,7 +4797,7 @@
{"id": "txkt1p", "name": "Etterna Logo", "description": "Logo added by the community for the 4 key rhythm game Etterna", "links": {"website": ["https://etternaonline.com/"]}, "path": {"109-166, T:0-1": [[1522, 1596], [1517, 1586], [1533, 1585], [1533, 1604], [1523, 1604], [1522, 1599], [1520, 1597], [1518, 1597], [1517, 1588], [1517, 1585]]}, "center": {"109-166, T:0-1": [1526, 1594]}},
{"id": "txkqnq", "name": "Talking Heads logo", "description": "Talking Heads was a rock band from New York City, New York, United States. This particular logo was used on their seventh album, True Stories (1986).", "links": {"website": ["https://talkingheadsofficial.com/", "https://en.wikipedia.org/wiki/Talking_Heads"], "subreddit": ["talkingheads"]}, "path": {"26-47": [[684, 170], [694, 180], [694, 183], [713, 183], [718, 177], [718, 170]], "113-166, T:0-1": [[530, 1366], [530, 1379], [559, 1379], [559, 1366]]}, "center": {"26-47": [704, 177], "113-166, T:0-1": [545, 1373]}},
{"id": "txkqhq", "name": "GwinGlade", "description": "GwinGlade is a Russian streamer and a member of the streamer group 89squad, created by streamer Bratishkinoff.\n\nThis art was drawn by fellow 89squad member T2x2 and his viewers.", "links": {"website": ["https://www.twitch.tv/gwinglade"], "subreddit": ["89SQUAD89"]}, "path": {"145-166, T:0-1": [[1971, 530], [1977, 539], [1999, 539], [1999, 512], [1997, 507], [1992, 504], [1988, 504], [1983, 506], [1981, 509], [1981, 510], [1982, 511], [1982, 516], [1980, 516], [1979, 517], [1977, 517], [1977, 519], [1976, 519], [1974, 521], [1971, 526]]}, "center": {"145-166, T:0-1": [1987, 527]}},
-{"id": "txkqb1", "name": "Hero", "description": "Hero is one of the three deuteragonists in the indie game Omori. He was originally created as his headspace/Dreamspace version, but was later changed into his normal version, after being wiped out by the Lean pathway added by streamer xQc.", "links": {"website": ["https://omori.fandom.com/wiki/HERO"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"56-165, T:0-1": [[1009, 824], [1010, 823], [1011, 823], [1012, 822], [1019, 822], [1020, 823], [1021, 823], [1022, 824], [1026, 824], [1026, 825], [1025, 826], [1025, 828], [1024, 829], [1024, 830], [1025, 831], [1025, 833], [1023, 835], [1022, 835], [1019, 838], [1025, 844], [1025, 846], [1023, 846], [1021, 844], [1020, 844], [1020, 850], [1019, 851], [1018, 851], [1017, 850], [1017, 848], [1014, 848], [1014, 850], [1013, 851], [1012, 851], [1011, 850], [1011, 846], [1009, 846], [1008, 845], [1008, 843], [1009, 842], [1009, 841], [1012, 838], [1009, 835], [1008, 835], [1006, 833], [1006, 831], [1007, 830], [1007, 827], [1008, 826], [1008, 825]]}, "center": {"56-165, T:0-1": [1016, 835]}},
+{"id": "txkqb1", "name": "HERO", "description": "HERO is one of the three deuteragonists in the indie game OMORI. He was originally created as his headspace/Dreamspace version, but was later changed into his normal version after being wiped out by the Lean pathway added by streamer xQc.", "links": {"website": ["https://omori.fandom.com/wiki/HERO"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"65-86": [[1011, 821], [1005, 824], [1001, 829], [1002, 830], [1003, 830], [1003, 833], [1006, 835], [1006, 836], [1003, 836], [1001, 838], [1007, 844], [1008, 844], [1008, 849], [1011, 853], [1017, 853], [1019, 851], [1019, 847], [1020, 847], [1023, 844], [1023, 843], [1020, 840], [1020, 839], [1023, 836], [1023, 827], [1024, 826], [1020, 823], [1018, 822], [1015, 822], [1014, 821]], "88-165, T:0-1": [[1012, 821], [1008, 824], [1005, 830], [1005, 833], [1010, 838], [1007, 843], [1007, 846], [1009, 848], [1009, 850], [1011, 852], [1020, 852], [1022, 850], [1022, 846], [1026, 846], [1026, 844], [1022, 840], [1022, 837], [1025, 835], [1026, 833], [1026, 826], [1028, 824], [1028, 823], [1022, 823], [1019, 821]]}, "center": {"65-86": [1014, 831], "88-165, T:0-1": [1016, 831]}},
{"id": "txkq7j", "name": "Jacex beer.", "description": "A bottle of beer made by the community of Jacex Dowóz Wideo, a Polish Twitch channel.", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"]}, "path": {"109-165, T:0-1": [[1110, 1053], [1112, 1053], [1112, 1058], [1115, 1061], [1115, 1076], [1107, 1075], [1107, 1060], [1110, 1057], [1110, 1053], [1112, 1053]]}, "center": {"109-165, T:0-1": [1111, 1066]}},
{"id": "txkply", "name": "The Cheese", "description": "it stands alone", "links": {}, "path": {"109-166, T:0-1": [[655, 1540], [655, 1551], [670, 1551], [670, 1541], [670, 1540]]}, "center": {"109-166, T:0-1": [663, 1546]}},
{"id": "txkosa", "name": "Sonya - Kill me Baby", "description": "A foreign trained assassin attending a regular high school. As she constantly takes on assassin work she is constantly alert and often attacks Yasuna when she takes her by surprise or tries to play jokes on her. Despite her tough composure, she is scared of various things such as cockroaches, ghosts, wild animals and dogs (even domestic dogs). She also has been shown to care a little for Yasuna.", "links": {"website": ["https://killmebaby.fandom.com/wiki/Kill_Me_Baby_Wiki"], "subreddit": ["KillMeBaby"]}, "path": {"109-166, T:0-1": [[342, 1235], [327, 1235], [327, 1249], [341, 1249]]}, "center": {"109-166, T:0-1": [334, 1242]}},
@@ -4818,7 +4807,7 @@
{"id": "txki1v", "name": "Lagtrain", "description": "Part of the music video for the inabakumori song lagtrain", "links": {"subreddit": ["inabakumori"]}, "path": {"109-165, T:0-1": [[1035, 1657], [1035, 1658], [1042, 1658], [1042, 1655], [1040, 1655], [1040, 1651], [1039, 1651], [1038, 1652], [1036, 1652], [1036, 1654], [1035, 1655], [1034, 1657], [1035, 1658]]}, "center": {"109-165, T:0-1": [1038, 1655]}},
{"id": "txkhov", "name": "LeonardDM", "description": "The glorious one and only Redditor and gamer LeonardDM cemented himself in Reddit history over here. On display is the head of his Minecraft skin as well the word 'LEO'.", "links": {"website": ["https://www.reddit.com/user/LeonardDM"]}, "path": {"109-165, T:0-1": [[1110, 1596], [1110, 1611], [1119, 1611], [1119, 1596]]}, "center": {"109-165, T:0-1": [1115, 1604]}},
{"id": "txkgyj", "name": "sunshORB", "description": "Emote by Twitch streamer sunshinebread.", "links": {"website": ["https://www.twitchmetrics.net/e/emotesv2_65e24155dda14e32b535e5009102f39d-sunshORB", "https://www.twitch.tv/sunshinebread"]}, "path": {"110-115": [[1758, 698], [1755, 701], [1755, 705], [1758, 708], [1762, 708], [1765, 705], [1765, 701], [1762, 698]], "149-166, T:0-1": [[1756, 691], [1753, 694], [1753, 698], [1756, 701], [1760, 701], [1763, 698], [1763, 694], [1760, 691]]}, "center": {"110-115": [1760, 703], "149-166, T:0-1": [1758, 696]}},
-{"id": "txkgn7", "name": "Hou (Danish town)", "description": "A Danish infiltration of the German flag, The name of a small Danish town called Hou. Planned by a few locals outside any subreddit.", "links": {}, "path": {"56-166, T:0-1": [[1629, 834], [1631, 834], [1631, 842], [1629, 842]]}, "center": {"56-166, T:0-1": [1630, 838]}},
+{"id": "txkgn7", "name": "Hou", "description": "Hou is a small Danish town.\n\nThis Danish infiltration of the German flag was planned by a few locals outside any subreddit.", "links": {"website": ["https://en.wikipedia.org/wiki/Hou_(Odder_Municipality)"]}, "path": {"159-166, T:0-1": [[1628, 833], [1628, 843], [1632, 843], [1632, 833]]}, "center": {"159-166, T:0-1": [1630, 838]}},
{"id": "txkg8t", "name": "CDLB", "description": "CDLB Is a French group of friend named \"Confrerie De La Biture\". At this moment, The Crypto group was invading us transforming our B in an S", "links": {"website": ["https://www.tiktok.com/@confreriedelabiture"]}, "path": {"109-165, T:0-1": [[391, 1564], [404, 1564], [404, 1570], [391, 1570]]}, "center": {"109-165, T:0-1": [398, 1567]}},
{"id": "txkfqa", "name": "Flag of Switzerland", "description": "Switzerland, officially the Swiss Confederation, is a landlocked country at the confluence of Western, Central and Southern Europe.\n\nThis flag was made by Swiss streamers including Tonton.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"109-164, T:0-1": [[291, 1926], [291, 1969], [251, 1969], [251, 1927]]}, "center": {"109-164, T:0-1": [271, 1948]}},
{"id": "txkfo5", "name": "/r/Gunners collaboration with 332 & the University of Pittsburgh", "description": "332; a highly secret, private cybersecurity discord = 332\n\n/r/Gunners; a subreddit dedicated to Arsenal Football Club, of London. 49 = 49 undefeated matches in the famous invincible season, 523 = the 523 Rob Holding protocol, a football formation/tactic used by Mikel Arteta to great effect.\n\nUniversity of Pittsburgh; 412 = Pittsburgh area code.", "links": {"subreddit": ["Gunners"]}, "path": {"109-166, T:0-1": [[1499, 1456], [1508, 1456], [1508, 1429], [1500, 1428], [1498, 1428], [1498, 1456]]}, "center": {"109-166, T:0-1": [1503, 1442]}},
@@ -4857,7 +4846,7 @@
{"id": "txjwan", "name": "Exilium and Zag", "description": "The mascots of the guilds Exilium (left) and Zag (right) from the game Black Desert Online holding hands. Exilium pictures a small blue character with a white-yellow stomach and usually wears a crown on his head. The mascot of Zag pictures the face of the Pokémon Zigzagoon, which has been slightly destructed before the white-out.\n\nTheir guild's history goes far back starting in 2018 after the fall of the guild Alterium the community mainly split into these 2 communities. A lot of the ex-Alterium members nowadays play casually and formed bonds outside of the game Black Desert Online, but due to its history, Exilium and Zag share its roots together, which makes them an inseperable couple.", "links": {"subreddit": ["blackdesertonline"]}, "path": {"109-166, T:0-1": [[1312, 1962], [1312, 1971], [1293, 1970], [1293, 1962]]}, "center": {"109-166, T:0-1": [1303, 1966]}},
{"id": "txjw9b", "name": "Philippines Sub-base Delta", "description": "The Philippines is a country in Southeast Asia.\n\nThis Philippines area is known as Sub-base Delta by r/Philippines. It consists of the De La Salle University (DLSU) and Ateneo de Manila University (ADMU), two private Catholic Philippine universities engaged in an infamous and long-running rivalry in the University Athletic Association of the Philippines (UAAP) and previously in the National Collegiate Athletic Associate (NCAA), the Philippine collegiate sports leagues.\n\nThe area originally contained a message saying DLSU SUX ❤️ ATENEO in blue and light blue, which are colors generally associated with ADMU. The pixel art was altered later on, primarily by the replacement of the letters in \"ATENEO\" with Among Us crewmates. Some of the other alterations were presumably by Redditors from DLSU who replaced the ADMU colors with DLSU's green and white. This conflict was known as bardagulan, which roughly translates to \"shitposting\" or \"flaming\" in Filipino slang.\n\nOther communities also inserted their own pixel art when the ADMU Redditors failed to defend the space, but did not finish in time to completely fill the area.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"], "subreddit": ["Philippines"]}, "path": {"156-162": [[1481, 366], [1481, 401], [1495, 401], [1495, 366]]}, "center": {"156-162": [1488, 384]}},
{"id": "txjv93", "name": "Dubhar x Drieft alliance", "description": "A small valorant esports team, which collaborated with the Drieft connoisseur to form this DBR ESPORTS logo", "links": {"website": ["https://youtube.com/channel/UC47BE8B_lWUDfcY18wxHMPQ"], "subreddit": ["Dubhar"]}, "path": {"109-166, T:0-1": [[1090, 1712], [1106, 1710], [1106, 1683], [1091, 1681]]}, "center": {"109-166, T:0-1": [1098, 1697]}},
-{"id": "txjupr", "name": "Himemori Luna", "description": "A member of Hololive's 4th generation of Japanese VTubers, notorious for her intentionally infuriating spoiled child-like personality and manner of speech.", "links": {"website": ["https://en.hololive.tv/portfolio/items/himemori-luna"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1356, 973], [1360, 973], [1361, 970], [1364, 977], [1363, 981], [1355, 981], [1354, 978], [1355, 974]]}, "center": {"56-165, T:0-1": [1359, 977]}},
+{"id": "txjupr", "name": "Himemori Luna", "description": "A member of Hololive's 4th generation of Japanese VTubers, notorious for her intentionally infuriating spoiled child-like personality and manner of speech.", "links": {"website": ["https://en.hololive.tv/portfolio/items/himemori-luna"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1356, 973], [1360, 973], [1361, 970], [1364, 977], [1363, 981], [1355, 981], [1354, 978], [1355, 974]]}, "center": {"56-165, T:0-1": [1359, 977]}},
{"id": "txjtpw", "name": "Philippines Base Bravo", "description": "The Philippines is a country in Southeast Asia.\n\nThis Philippines area is known as Base Bravo of r/Philippines. It is alternatively named the Visayas base, named after the middle region of the Philippines. It includes the artwork \"Tumindig\", the Philippine tarsier, Zuko and Toph (Twitch streamer Buddha's shiba inus), the ASEAN flag, the Myanmar flag, and the r/vexillology flag. It was once the space for the Philippine jeepney now in Base Charlie (Mindanao base) of r/Philippines.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines"], "subreddit": ["Philippines", "Asean", "myanmar", "vexillology"]}, "path": {"88-145": [[1333, 599], [1333, 671], [1374, 671], [1374, 599]], "56-69": [[1334, 599], [1334, 671], [1460, 671], [1460, 599]], "151-165, T:0-1": [[1333, 599], [1333, 671], [1374, 671], [1374, 658], [1387, 658], [1387, 659], [1390, 661], [1406, 661], [1408, 660], [1420, 660], [1421, 658], [1490, 658], [1490, 599]]}, "center": {"88-145": [1354, 635], "56-69": [1397, 635], "151-165, T:0-1": [1400, 630]}},
{"id": "txjtmz", "name": "ARSEHOLE Alliance", "description": "The ARSEHOLE Alliance is an alliance of the communities r/foxholegame and r/Gunners. These communities made some of the earliest finished works on r/place. After seeing an early unmoderated Ukrainian flag plow through many other works, these two communities were brought together and formed an alliance to protect each other. After the flag lost steam and fell to ill maintenance, the two communities made the alliance visible with the mixing of the two main words for their communities (Foxhole and Arsenal), creating ARSEHOLE. This alliance lasted until the very end against many threats", "links": {"website": ["https://www.arsenal.com/", "https://www.foxholegame.com/"], "subreddit": ["foxholegame", "Gunners"]}, "path": {"10-164, T:0-1": [[701, 482], [753, 482], [753, 547], [755, 547], [755, 602], [753, 604], [753, 607], [701, 607]]}, "center": {"10-164, T:0-1": [728, 563]}},
{"id": "txjs09", "name": "Tomb of the Unknown Soldier", "description": "A French memorial under the Arc de Triomphe to honor the death of millions of fighters of World War I, often unknown, lost, or killed beyond recognition.\n\nThe flame is lit up every evening at 6:30 PM.", "links": {"website": ["https://en.wikipedia.org/wiki/Arc_de_Triomphe#Tomb_of_the_Unknown_Soldier"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-164, T:0-1": [[113, 1903], [113, 1931], [135, 1931], [134, 1904]]}, "center": {"109-164, T:0-1": [124, 1917]}},
@@ -4900,12 +4889,12 @@
{"id": "txiv4x", "name": "Hanukkiah", "description": "A Hanukkiah, also known as a Hanukkah menorah, is a candelabrum used in the Jewish holiday Hanukkah. It has eight candles on its sides and one taller candle (Shamash) in the middle.\n\nThis art was made by r/Israel. Originally, it was a set of exclamation marks after the phrase \"!!!!! עם ישראל חי\" (The nation of Israel lives!!!!!)", "links": {"website": ["https://en.wikipedia.org/wiki/Hanukkah_menorah"], "subreddit": ["Israel", "ani_bm"], "discord": ["israel"]}, "path": {"4-13": [[46, 631], [42, 635], [42, 643], [60, 643], [62, 640], [62, 631]], "148-164, T:0-1": [[1540, 460], [1531, 461], [1531, 466], [1535, 470], [1545, 470], [1549, 466], [1549, 461]]}, "center": {"4-13": [52, 637], "148-164, T:0-1": [1540, 465]}},
{"id": "txiuw9", "name": "Jeff Park", "description": "A collaboration between content creator 'StreetMan' and the animated television series 'South Park'. Both communities struggled to keep their art on /r/place which started the partnership. StreetMan's community contributed Jeff from the 'My Name Jeff' meme and the South Park community contributed six of the show's characters at the iconic Bus Stop. Together they created the 'Jeff Park' sign.", "links": {"website": ["https://www.twitch.tv/streetmanttv"], "subreddit": ["southpark"]}, "path": {"109-166, T:0-1": [[461, 1675], [499, 1675], [499, 1688], [500, 1688], [500, 1699], [461, 1699], [461, 1692], [462, 1691], [463, 1690], [464, 1689], [464, 1687], [463, 1686], [462, 1686], [461, 1686]]}, "center": {"109-166, T:0-1": [480, 1687]}},
{"id": "txitjp", "name": "Warp Pipe", "description": "A green pipe used for transporting things and people between different locations, as popularized by the Mario game series.", "links": {"website": ["https://www.mariowiki.com/Warp_Pipe"], "subreddit": ["Mario"]}, "path": {"109-166, T:0-1": [[0, 1122], [8, 1122], [9, 1121], [19, 1121], [19, 1122], [17, 1122], [17, 1128], [15, 1128], [15, 1132], [14, 1132], [14, 1144], [13, 1144], [13, 1154], [14, 1154], [14, 1160], [15, 1160], [15, 1162], [16, 1162], [16, 1165], [17, 1165], [17, 1170], [1, 1170], [0, 1169]]}, "center": {"109-166, T:0-1": [8, 1146]}},
-{"id": "txisod", "name": "Pogostuck", "description": "Art of the player character from the 2019 indie game, Pogostuck.", "links": {}, "path": {"56-166, T:0-1": [[1217, 802], [1217, 818], [1239, 818], [1239, 802]]}, "center": {"56-166, T:0-1": [1228, 810]}},
+{"id": "txisod", "name": "The Monolith of Perseverance", "description": "The Monolith of Perseverance is the second map in the game Pogostuck: Rage With Your Friends.", "links": {"website": ["https://www.youtube.com/watch?v=kD8gZZh1ejQ"], "subreddit": ["PogoStuck"]}, "path": {"62-166, T:0-1": [[1217, 802], [1217, 813], [1218, 813], [1221, 811], [1223, 811], [1223, 802]]}, "center": {"62-166, T:0-1": [1220, 808]}},
{"id": "txisco", "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell is a platforming game on the Roblox platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. This mural, nicknamed Tiny Towers, depicts two towers from the game: Tower of Hecc and Not Even A Tower.\n\nThis art was allied with the Troll Discord. The Tiny Towers were a subsidiary build of the main JTOH project on r/place in the event that the primary construction could not come to fruition.", "links": {"website": ["https://www.roblox.com/games/8562822414/Jukes-Towers-of-Hell"], "subreddit": ["JToH2"]}, "path": {"73-78": [[873, 538], [873, 548], [872, 548], [872, 550], [874, 552], [876, 552], [878, 550], [878, 548], [877, 548], [877, 543], [875, 543], [875, 538]], "108-166, 79-98, T:0-1": [[873, 534], [877, 534], [877, 552], [873, 552]]}, "center": {"73-78": [875, 549], "108-166, 79-98, T:0-1": [875, 543]}},
{"id": "txisb0", "name": "עם ישראל חי", "description": "\"Am Yisrael Chai\" (\"עם ישראל חי\") is a common sentence from a simple song expressing the indomitable spirit of the Jewish people, surviving against all odds and keeping \"their father\" God alive in thought and practice.\n\nחי (Chai) is a Hebrew word that means \"living\". The word features prominently in modern Jewish culture; the Hebrew letters of the word are often used as a visual symbol.\n\nThere was a short internal debate on whether or not to add flames to the tips of the letters. The compromise ended up coming with the creation of the Hanukkiah. For a while, it had exclamation marks; these were transformed into the Hanukkiah that now sits next to the word חי. The חי part was made over a seedling that r/Israel originally cooperated with.", "links": {"website": ["https://en.wikipedia.org/wiki/Chai_(symbol)"], "subreddit": ["Israel", "ani_bm"], "discord": ["israel"]}, "path": {"117-135": [[1537, 448], [1537, 455], [1548, 455], [1549, 456], [1556, 456], [1556, 449], [1547, 449], [1547, 448]], "138-164, T:0-1": [[1534, 448], [1561, 448], [1561, 462], [1549, 462], [1549, 463], [1552, 466], [1552, 468], [1557, 468], [1557, 462], [1561, 462], [1561, 456], [1557, 456], [1557, 454], [1534, 454]]}, "center": {"117-135": [1541, 452], "138-164, T:0-1": [1557, 451]}},
{"id": "txis0w", "name": "Nini", "description": "Nini is the mascot of Twitch streamer Cristinini.", "links": {"website": ["https://www.twitch.tv/iamcristinini"], "subreddit": ["IamCristinini"]}, "path": {"143-147": [[1842, 677], [1842, 680], [1845, 680], [1848, 683], [1856, 683], [1859, 680], [1862, 680], [1862, 677], [1859, 677], [1856, 674], [1848, 674], [1845, 677]], "148-167, T:0-1": [[1840, 667], [1831, 667], [1831, 679], [1840, 679]]}, "center": {"143-147": [1852, 679], "148-167, T:0-1": [1836, 673]}},
{"id": "txircg", "name": "The r/Monero-r/BOLIVIA-r/riskuniversalis Alliance", "description": "An alliance betweeen Monero, Risk Universalis and Bolivia", "links": {"subreddit": ["Monero", "BOLIVIA", "riskuniversalis"]}, "path": {"109-166, T:0-1": [[1354, 1231], [1354, 1237], [1362, 1237], [1362, 1231]]}, "center": {"109-166, T:0-1": [1358, 1234]}},
-{"id": "txir0o", "name": "The Stormlight Archive", "description": "An epic fantasy book series by American author Brandon Sanderson, known for its huge sprawling world filled with lots of characters and factions.", "links": {"website": ["https://www.brandonsanderson.com/the-stormlight-archive-series/"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"109-166, T:0-1": [[1683, 1376], [1672, 1382], [1666, 1394], [1674, 1411], [1682, 1415], [1686, 1422], [1690, 1417], [1707, 1395], [1704, 1386], [1693, 1375], [1686, 1368], [1683, 1370]]}, "center": {"109-166, T:0-1": [1686, 1395]}},
+{"id": "txir0o", "name": "The Stormlight Archive", "description": "The Stormlight Archive is an epic fantasy book series by American author Brandon Sanderson, known for its huge sprawling world filled with lots of characters and factions.", "links": {"website": ["https://www.brandonsanderson.com/the-stormlight-archive-series/"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"109-166, T:0-1": [[1683, 1376], [1672, 1382], [1666, 1394], [1674, 1411], [1682, 1415], [1686, 1422], [1690, 1417], [1707, 1395], [1704, 1386], [1693, 1375], [1686, 1368], [1683, 1370]]}, "center": {"109-166, T:0-1": [1686, 1395]}},
{"id": "txiqwe", "name": "Brighton and Hove Albion", "description": "Premier League club from East Sussex.", "links": {"subreddit": ["BrightonHoveAlbion"]}, "path": {"109-166, T:0-1": [[715, 1787], [727, 1787], [727, 1802], [715, 1803]]}, "center": {"109-166, T:0-1": [721, 1795]}},
{"id": "txiqd6", "name": "Heart of the Tennessean-Mongol-Ligue Alliance", "description": "A heart with the colors of the Tennessee Vols, flag of Mongolia, and La Ligue artworks.\n\nIt was a pleasure defending this part of the map with you guys! Much love - La Ligue.", "links": {"website": ["http://utsports.com/", "https://en.wikipedia.org/wiki/Mongolia"], "subreddit": ["GeoGuessr", "mongolia", "ockytop"], "discord": ["5nug94RrxV"]}, "path": {"158-165, T:0-1": [[106, 463], [104, 465], [104, 467], [109, 472], [114, 467], [114, 465], [112, 463]]}, "center": {"158-165, T:0-1": [109, 467]}},
{"id": "txiq2m", "name": "Šegrt Glapić (Lapitch the Little Shoemaker)", "description": "Lapitch the Little Shoemaker is a 1997 animated feature that was originally released by Croatia Film. It is based on The Brave Adventures of Lapitch, a 1913 novel by Croatian author Ivana Brlić-Mažuranić. All of the characters are animals, and the title character is a mouse. Lapitch remains Croatia's most successful production in terms of viewership.", "links": {"website": ["https://en.wikipedia.org/wiki/Lapitch_the_Little_Shoemaker"], "subreddit": ["croatia"]}, "path": {"109-166, T:0-1": [[370, 1116], [364, 1116], [364, 1118], [356, 1118], [356, 1115], [364, 1112], [367, 1106], [366, 1102], [361, 1100], [362, 1098], [356, 1092], [358, 1091], [363, 1096], [366, 1094], [356, 1088], [356, 1079], [362, 1079], [365, 1075], [372, 1075], [376, 1081], [380, 1079], [382, 1081], [382, 1085], [376, 1093], [381, 1097], [378, 1103], [386, 1116], [383, 1117], [372, 1115], [370, 1115]]}, "center": {"109-166, T:0-1": [370, 1096]}},
@@ -4999,7 +4988,7 @@
{"id": "txn7og", "name": "Chase's Storm", "description": "A symbol representing the small community of Chase's Storm Discord server!", "links": {}, "path": {"140-148, 68-122": [[1737, 569], [1737, 578], [1727, 578], [1727, 569]]}, "center": {"140-148, 68-122": [1732, 574]}},
{"id": "txn5d7", "name": "Torp", "description": "A torp is a type of croft emblematic of the Swedish countryside. It comes from the Old Norse þorp. In modern usage, it is the emblematic Swedish summer house, a small cottage painted Falu röd and white, and evidence of the way in which urbanization came quite late to all of Scandinavia. Its characteristic Falu röd colour is ubiquitous in Sweden and became popular due to the paint's affordability. In the meaning of 'simple second home', The concept exists under other names in Danish, Norwegian (hytte – but the term torp is also used in Norwegian) and Finnish (mökki or torppa).\n\nIn the strict sense, crofts refer to a form of lease, with long contract periods but without the right of occupancy, whose lease was paid in full or in part in kind. In Finland, The croft institution was abolished in 1918, and in Sweden in 1943.", "links": {"website": ["https://en.wikipedia.org/wiki/Torp_(architecture)"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"143-147": [[537, 41], [537, 92], [572, 92], [572, 80], [578, 80], [578, 76], [572, 76], [572, 75], [570, 75], [570, 71], [565, 71], [565, 66], [560, 66], [560, 65], [558, 65], [558, 71], [549, 71], [549, 60], [548, 56], [548, 48], [541, 48], [538, 41]], "100-142": [[537, 38], [537, 92], [572, 92], [572, 80], [578, 80], [578, 76], [572, 76], [572, 75], [570, 75], [570, 71], [548, 71], [548, 57], [547, 56], [547, 48], [541, 48], [539, 44], [539, 38]], "69-99": [[537, 45], [537, 92], [570, 92], [570, 71], [548, 71], [548, 65], [550, 60], [548, 56], [548, 52], [549, 51], [552, 51], [552, 48], [541, 48], [539, 45]], "155-166, T:0-1": [[538, 91], [538, 80], [537, 80], [537, 71], [542, 71], [541, 71], [541, 67], [537, 61], [537, 44], [539, 45], [540, 48], [541, 49], [547, 49], [547, 56], [550, 62], [548, 68], [548, 71], [558, 71], [558, 63], [560, 63], [560, 64], [569, 64], [569, 71], [570, 71], [570, 75], [572, 75], [572, 76], [577, 76], [577, 80], [572, 80], [572, 88], [574, 89], [575, 88], [576, 90], [578, 91], [578, 92], [538, 92], [538, 90]]}, "center": {"143-147": [561, 81], "100-142": [558, 81], "69-99": [559, 81], "155-166, T:0-1": [560, 81]}},
{"id": "txn568", "name": "Joywave", "description": "Album cover of Possession (2020) by Joywave.", "links": {"subreddit": ["joywave"]}, "path": {"109-166, T:0-1": [[941, 1617], [941, 1621], [949, 1621], [949, 1616]]}, "center": {"109-166, T:0-1": [945, 1619]}},
-{"id": "txn4km", "name": "Hololive-Germany heart", "description": "A heart between Hololive art and the German flag. The Hololive side of the heart follows the color scheme of the Hololive logo.", "links": {"subreddit": ["Hololive", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-166, T:0-1": [[1413, 1122], [1413, 1126], [1406, 1133], [1399, 1126], [1399, 1122], [1402, 1119], [1403, 1119], [1405, 1121], [1406, 1121], [1408, 1119], [1410, 1119]]}, "center": {"109-166, T:0-1": [1406, 1125]}},
+{"id": "txn4km", "name": "Hololive-Germany heart", "description": "A heart between Hololive art and the German flag. The Hololive side of the heart follows the color scheme of the Hololive logo.", "links": {"subreddit": ["Hololive", "placeDE", "de", "germany"], "discord": ["holofans", "placeDE"]}, "path": {"109-166, T:0-1": [[1413, 1122], [1413, 1126], [1406, 1133], [1399, 1126], [1399, 1122], [1402, 1119], [1403, 1119], [1405, 1121], [1406, 1121], [1408, 1119], [1410, 1119]]}, "center": {"109-166, T:0-1": [1406, 1125]}},
{"id": "txn3lj", "name": "SOMBRA", "description": "The logo of SOMBRA, a french multigaming team. We play mainly on Star Citizen, Escape from Tarkov, Barotrauma, or some party games, but as a multigaming team you'll always find someone playing the same game as you.", "links": {"website": ["https://www.sombra.fr"], "subreddit": ["sombrafr"]}, "path": {"109-165, T:0-1": [[1109, 1240], [1119, 1240], [1119, 1249], [1115, 1256], [1113, 1256], [1109, 1252], [1109, 1250], [1108, 1248], [1108, 1242]]}, "center": {"109-165, T:0-1": [1114, 1247]}},
{"id": "txn3k2", "name": "Lesbian flag", "description": "A pride flag representing the lesbian community. Lesbian people are women attracted to other women.\n\nThis lesbian flag sparked a lot of controversy between lesbians and DreamNotFound shippers, the flag having originally been a DNF flag. Lesbian Twitter user @Star0Arts played a big role in the conquering of the land, being sent death threats and lesbiphobic messages by raging DNF shippers in the process. But with the help of Star's followers, they built their flag and defeated the DNF shippers together. Go lesbians!", "links": {"website": ["https://twitter.com/Star0Arts/status/1511210583546232832"]}, "path": {"1-165, T:0-1": [[245, 989], [245, 985], [247, 985], [247, 987], [254, 987], [254, 985], [254, 988], [260, 988], [261, 988], [261, 985], [262, 985], [262, 987], [267, 987], [267, 989]]}, "center": {"1-165, T:0-1": [255, 988]}},
{"id": "txn3dy", "name": "CodeMiko", "description": "Art coordinated by Twitch streamer CodeMiko and built and maintained by her community, with organizational help from PaymoneyWubby's community whose art is below it. A majority of the art constitutes a cartoon of the face of the CodeMiko VTuber avatar with her name in the upper corners, also containing icons of VTuber Castlehead in the lower left, her cat Pearl in the lower right, and stream manager Jormh in the middle right.", "links": {"website": ["https://twitch.tv/codemiko"], "subreddit": ["CodeMiko"]}, "path": {"109-165, T:0-1": [[370, 1418], [370, 1460], [425, 1460], [425, 1418]]}, "center": {"109-165, T:0-1": [398, 1439]}},
@@ -5013,14 +5002,14 @@
{"id": "txmy58", "name": "Endou Minecraft face", "description": "A Minecraft-style face of the character Endou Mamoru from the series Inazuma Eleven was here until it was taken over by the green lattice. The remains of his brown hair can still be seen here.", "links": {"website": ["https://inazuma-eleven.fandom.com/wiki/Endou_Mamoru"], "subreddit": ["inazumaeleven"]}, "path": {"109-166, T:0-1": [[1507, 1499], [1507, 1509], [1499, 1509], [1498, 1499]]}, "center": {"109-166, T:0-1": [1503, 1504]}},
{"id": "txmxpz", "name": "Chicken", "description": "A chicken is a passive mob in the 2010 sandbox game Minecraft, developed by Mojang Studios in Sweden.", "links": {"website": ["https://minecraft.fandom.com/wiki/Chicken"], "subreddit": ["Minecraft"]}, "path": {"60-67": [[1969, 459], [1969, 465], [1976, 465], [1976, 459]], "159-164, T:0-1": [[1138, 442], [1138, 446], [1137, 446], [1137, 450], [1138, 450], [1138, 452], [1143, 452], [1143, 450], [1144, 450], [1144, 446], [1143, 446], [1143, 442], [1142, 442], [1141, 441], [1140, 442]]}, "center": {"60-67": [1973, 462], "159-164, T:0-1": [1141, 448]}},
{"id": "txmx7w", "name": "Gaming community", "description": "A discord invite to a small lithuanian gamers community. Each evening you can almost certainly find someone playing together and having fun. Feel free to join :P", "links": {"discord": ["JW6HRNM"]}, "path": {"109-166, T:0-1": [[581, 1654], [624, 1654], [624, 1661], [581, 1661]]}, "center": {"109-166, T:0-1": [603, 1658]}},
-{"id": "txmvc9", "name": "NiziU", "description": "NiziU is a Japanese-Korean idol girl group formed by JYP Entertainment and Sony Music Entertainment Japan. The group is composed of nine members: Mako, Rio, Maya, Riku, Ayaka, Mayuka, Rima, Miihi and Nina.", "links": {"website": ["https://niziu.com/s/n123/?ima=3631"], "subreddit": ["niziu"]}, "path": {"56-166, T:0-1": [[1532, 889], [1556, 889], [1556, 897], [1533, 897], [1533, 890]]}, "center": {"56-166, T:0-1": [1544, 893]}},
+{"id": "txmvc9", "name": "NiziU", "description": "NiziU is a Japanese-Korean idol girl group formed by JYP Entertainment and Sony Music Entertainment Japan. The group is composed of nine members: Mako, Rio, Maya, Riku, Ayaka, Mayuka, Rima, Miihi, and Nina.", "links": {"website": ["https://niziu.com/s/n123/?ima=3631", "https://en.wikipedia.org/wiki/NiziU"], "subreddit": ["niziu", "kpop"]}, "path": {"119-166, T:0-1": [[1533, 889], [1557, 889], [1557, 897], [1533, 897]]}, "center": {"119-166, T:0-1": [1545, 893]}},
{"id": "txmud9", "name": "The End of Everything", "description": "A spell from the game Noita, upon being cast, it will summon a series of 13 chaotic and destructive effects.\n\nYou're heavily advised not to cast this spell.", "links": {"website": ["https://noita.fandom.com/wiki/The_End_of_Everything"], "subreddit": ["noita", "place_CentralAlliance"]}, "path": {"1-166, T:0-1": [[549, 929], [549, 922], [554, 917], [561, 918], [565, 923], [564, 930], [560, 933], [554, 934], [551, 932]]}, "center": {"1-166, T:0-1": [557, 926]}},
{"id": "txmu62", "name": "Punz", "description": "This is Punz's Minecraft skin. He is a Twitch streamer known to be in the Dream SMP (survival multiplayer). This was make by the DSMP and Punz community.", "links": {"website": ["https://www.twitch.tv/punz"], "subreddit": ["Punz", "dreamsmp"]}, "path": {"75-165, T:0-1": [[155, 953], [164, 953], [164, 962], [155, 962]]}, "center": {"75-165, T:0-1": [159, 957]}},
{"id": "txmtny", "name": "Burt's Casino", "description": "Burt's Casino is a private community.", "links": {}, "path": {"101-126": [[1746, 458], [1746, 464], [1782, 464], [1782, 458]], "92-100": [[1720, 489], [1720, 495], [1737, 495], [1737, 489]], "139-166, T:0-1": [[1746, 459], [1746, 465], [1782, 465], [1782, 459]]}, "center": {"101-126": [1764, 461], "92-100": [1729, 492], "139-166, T:0-1": [1764, 462]}},
{"id": "txmtao", "name": "Flag of the Azores", "description": "The Azores is an autonomous region of Portugal.", "links": {"website": ["https://en.wikipedia.org/wiki/Azores", "https://en.wikipedia.org/wiki/Flag_of_the_Azores"], "subreddit": ["azores", "portugal", "PORTUGALCARALHO"]}, "path": {"43-166, T:0-1": [[937, 360], [937, 367], [951, 367], [951, 360]]}, "center": {"43-166, T:0-1": [944, 364]}},
{"id": "txmrtw", "name": "Avi", "description": "Avi is a young girl from the Netherlands who has fought hard to keep her space. Her father contacted r/PlaceNL to ask for help in keeping her name on the canvas. They have succeeded.", "links": {"subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[1085, 1800], [1085, 1804], [1093, 1804], [1093, 1800]]}, "center": {"109-166, T:0-1": [1089, 1802]}},
{"id": "txmr28", "name": "Three Crowns", "description": "Three Crowns (Swedish: tre kronor) is the national emblem of Sweden, present in the coat of arms of Sweden, and composed of three yellow or gilded coronets ordered two above and one below, placed on a blue background. Similar designs are found on a number of other coats of arms or flags.", "links": {"website": ["https://en.wikipedia.org/wiki/Three_Crowns"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"14-45": [[543, 53], [541, 55], [541, 59], [545, 64], [550, 64], [550, 71], [554, 76], [562, 76], [566, 72], [566, 64], [571, 64], [575, 59], [575, 55], [573, 53], [568, 53], [567, 52], [566, 53], [550, 53], [549, 52], [548, 53]], "46-166, T:0-1": [[539, 38], [545, 38], [545, 37], [547, 37], [547, 38], [553, 38], [551, 38], [553, 38], [553, 39], [557, 39], [557, 38], [563, 38], [563, 37], [565, 37], [565, 38], [571, 38], [571, 39], [572, 39], [572, 45], [571, 45], [571, 46], [571, 47], [570, 47], [570, 49], [563, 49], [563, 58], [562, 58], [562, 59], [561, 59], [561, 61], [549, 61], [549, 59], [548, 59], [548, 57], [547, 57], [547, 49], [540, 49], [540, 47], [539, 47], [539, 45], [538, 45], [538, 39], [539, 39]]}, "center": {"14-45": [558, 62], "46-166, T:0-1": [555, 47]}},
-{"id": "txmqrk", "name": "f(x)", "description": "f(x) is a South Korean girl group formed by SM Entertainment in 2009. The group is composed of Victoria, Amber, Luna, and Krystal and previously Sulli until her departure from the group in August 2015. f(x) officially debuted in September 2009 with the release of the digital single 'La Cha Ta'.", "links": {"subreddit": ["fxKorea"]}, "path": {"56-166, T:0-1": [[1686, 898], [1696, 898], [1696, 910], [1696, 909], [1686, 909]]}, "center": {"56-166, T:0-1": [1691, 904]}},
+{"id": "txmqrk", "name": "f(x)", "description": "f(x) is a South Korean girl group formed by SM Entertainment in 2009. The group is composed of Victoria, Amber, Luna, and Krystal, and previously Sulli until her departure from the group in August 2015. f(x) officially debuted in September 2009 with the release of the digital single \"La Cha Ta\".", "links": {"website": ["https://www.fx-jp.jp/", "https://en.wikipedia.org/wiki/F(x)_(musical_group)"], "subreddit": ["fxKorea"]}, "path": {"129-166, T:0-1": [[1686, 897], [1686, 910], [1697, 910], [1697, 897]]}, "center": {"129-166, T:0-1": [1692, 904]}},
{"id": "txmpt7", "name": "Flat Eric", "description": "Flat Eric is the mascot of the community site choualbox.com, a French sharing site. The character of Flat Eric was originally a puppet named Mr. Oizo visible in the clips of artist Quentin Dupieux. It was also in Levi's advertisements in the late 90s and early 2000s.", "links": {"website": ["https://choualbox.com/", "https://en.wikipedia.org/wiki/Flat_Eric"]}, "path": {"95-127": [[1684, 377], [1684, 395], [1701, 395], [1701, 377]], "88-94": [[1690, 386], [1690, 395], [1699, 395], [1699, 386]], "138-164, T:0-1": [[1682, 368], [1682, 377], [1692, 377], [1692, 368]]}, "center": {"95-127": [1693, 386], "88-94": [1695, 391], "138-164, T:0-1": [1687, 373]}},
{"id": "txmn5e", "name": "Amongus in love", "description": "Two Among Us crewmates have found love in the chaos of r/place. Created by Michael & Ivan.", "links": {}, "path": {"109-166, T:0-1": [[843, 1791], [833, 1791], [833, 1801], [843, 1801]]}, "center": {"109-166, T:0-1": [838, 1796]}},
{"id": "txmlog", "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": {"16": [[672, 762], [672, 765], [671, 766], [671, 775], [672, 776], [672, 779], [676, 779], [676, 780], [683, 780], [684, 779], [687, 779], [689, 777], [689, 775], [690, 774], [690, 617], [688, 617], [688, 768], [686, 768], [678, 762]], "26-59": [[672, 762], [672, 765], [671, 766], [671, 775], [672, 776], [672, 779], [676, 779], [676, 780], [683, 780], [684, 779], [687, 779], [689, 777], [689, 775], [690, 774], [690, 765], [691, 763], [684, 756], [680, 747], [679, 744], [676, 744], [675, 743], [675, 741], [677, 739], [677, 733], [675, 733], [674, 732], [674, 726], [672, 724], [672, 707], [670, 707], [670, 725], [672, 727], [672, 732], [675, 736], [675, 739], [673, 739], [673, 744], [675, 746], [678, 746], [678, 749], [680, 749], [680, 752], [684, 759], [687, 762], [688, 762], [688, 768], [686, 768], [681, 764], [681, 761]], "17-25": [[672, 762], [672, 765], [671, 766], [671, 775], [672, 776], [672, 779], [676, 779], [676, 780], [683, 780], [684, 779], [687, 779], [689, 777], [689, 775], [690, 774], [690, 760], [689, 760], [686, 762], [683, 762], [683, 758], [684, 756], [684, 755], [682, 755], [681, 758], [681, 761]], "10-15, 60-165, T:0-1": [[672, 762], [672, 765], [671, 766], [671, 775], [672, 776], [672, 779], [676, 779], [676, 780], [683, 780], [684, 779], [687, 779], [689, 777], [689, 775], [690, 774], [690, 765], [688, 765], [688, 768], [682, 766], [680, 762]]}, "center": {"16": [678, 772], "26-59": [680, 772], "17-25": [680, 771], "10-15, 60-165, T:0-1": [680, 773]}},
@@ -5050,7 +5039,7 @@
{"id": "txm05j", "name": "Captain Viridian", "description": "Captain Viridian is the player character from the game VVVVVV.\n\nThis is the second depiction of Captain Viridian on the canvas, graciously hosted by r/HKPlace. This art was added in the final few hours of r/place.", "links": {"website": ["https://vvvvvv.fandom.com/wiki/Viridian#:~:text=Captain%20Viridian%20is%20a%20Villi,human%20beings%20to%20get%20through."]}, "path": {"125-138": [[1389, 86], [1387, 88], [1387, 93], [1389, 95], [1395, 95], [1397, 93], [1397, 88], [1395, 86]], "163-166, T:0-1": [[1396, 67], [1394, 69], [1394, 72], [1396, 74], [1399, 74], [1401, 72], [1401, 69], [1399, 67]]}, "center": {"125-138": [1392, 91], "163-166, T:0-1": [1398, 71]}},
{"id": "txlzfi", "name": "Red and purple flower", "description": "A little flower for someone special.", "links": {"website": ["https://en.wikipedia.org/wiki/Flower"]}, "path": {"155-165, T:0-1": [[966, 679], [965, 679], [963, 681], [963, 682], [964, 683], [965, 684], [966, 684]]}, "center": {"155-165, T:0-1": [965, 682]}},
{"id": "txlyvs", "name": "Honse Rabbit", "description": "A tiny honse by some gamers and a rabbit", "links": {}, "path": {"109-166, T:0-1": [[1560, 1416], [1560, 1422], [1575, 1422], [1575, 1416], [1567, 1416]]}, "center": {"109-166, T:0-1": [1568, 1419]}},
-{"id": "txlyc8", "name": "Ookami Mio's evergreen tree", "description": "The evergreen tree is the oshi mark (fan symbol) of virtual YouTuber Ookami Mio from Hololive GAMERS. It is said to reflect the tree-like silhouette of Mio's feathered hair.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1399, 969], [1400, 969], [1400, 970], [1401, 970], [1401, 971], [1401, 972], [1402, 972], [1402, 973], [1402, 974], [1403, 975], [1403, 976], [1403, 977], [1402, 977], [1401, 977], [1401, 978], [1400, 978], [1399, 978], [1398, 978], [1397, 978], [1397, 977], [1397, 976], [1396, 976], [1396, 975], [1396, 974], [1396, 973], [1396, 972], [1397, 972], [1397, 971], [1397, 970], [1398, 970], [1398, 969]]}, "center": {"56-166, T:0-1": [1399, 974]}},
+{"id": "txlyc8", "name": "Ookami Mio's evergreen tree", "description": "The evergreen tree is the oshi mark (fan symbol) of virtual YouTuber Ookami Mio from Hololive GAMERS. It is said to reflect the tree-like silhouette of Mio's feathered hair.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1399, 969], [1400, 969], [1400, 970], [1401, 970], [1401, 971], [1401, 972], [1402, 972], [1402, 973], [1402, 974], [1403, 975], [1403, 976], [1403, 977], [1402, 977], [1401, 977], [1401, 978], [1400, 978], [1399, 978], [1398, 978], [1397, 978], [1397, 977], [1397, 976], [1396, 976], [1396, 975], [1396, 974], [1396, 973], [1396, 972], [1397, 972], [1397, 971], [1397, 970], [1398, 970], [1398, 969]]}, "center": {"56-166, T:0-1": [1399, 974]}},
{"id": "txlxc2", "name": "Red Heart", "description": "A mini red heart", "links": {}, "path": {"109-166, T:0-1": [[1603, 1360], [1602, 1359], [1601, 1359], [1599, 1361], [1599, 1362], [1602, 1365], [1604, 1365], [1607, 1362], [1607, 1361], [1605, 1359], [1604, 1359]]}, "center": {"109-166, T:0-1": [1603, 1362]}},
{"id": "txlx4c", "name": "Town Deam", "description": "A very small discord group which managed to get representation on the canvas by working together.", "links": {"subreddit": ["TownDeam"]}, "path": {"109-166, T:0-1": [[1692, 1616], [1701, 1616], [1701, 1621], [1700, 1622], [1699, 1623], [1693, 1623], [1693, 1618], [1692, 1617]]}, "center": {"109-166, T:0-1": [1697, 1619]}},
{"id": "txlv1u", "name": "CUL", "description": "CUL is a group of French friends that bravely fought to defend this art. The word \"cul\" means \"ass\" in French.", "links": {"subreddit": ["cul"]}, "path": {"95-164, T:0-1": [[1729, 495], [1741, 495], [1741, 501], [1729, 501]]}, "center": {"95-164, T:0-1": [1735, 498]}},
@@ -5067,15 +5056,15 @@
{"id": "txlozt", "name": "Mr. Anderbro", "description": "A small group of friends came up with the idea to draw Mr. Anderbro from Broforce, They asked for help on the Broforce Subreddit and carried their Artwork till the end", "links": {"subreddit": ["Broforce"]}, "path": {"109-166, T:0-1": [[1587, 1360], [1594, 1360], [1594, 1367], [1587, 1367], [1587, 1363]]}, "center": {"109-166, T:0-1": [1591, 1364]}},
{"id": "txlogk", "name": "ISA", "description": "Discord user ISA, a notable member from the Political Compass Memes community and former owner of the PCM5 server.", "links": {"subreddit": ["PoliticalCompassMemes"]}, "path": {"162-165": [[18, 340], [18, 346], [30, 346], [30, 340]]}, "center": {"162-165": [24, 343]}},
{"id": "txlnn9", "name": "Serbia", "description": "A map of northern Serbia (mostly Vojvodina) with a flag of Serbia.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia"], "subreddit": ["serbia"]}, "path": {"142-166, T:0-1": [[1333, 256], [1335, 256], [1337, 255], [1341, 255], [1341, 257], [1341, 259], [1342, 260], [1343, 261], [1344, 262], [1345, 263], [1345, 264], [1343, 264], [1342, 264], [1342, 265], [1341, 266], [1340, 267], [1339, 267], [1338, 266], [1337, 266], [1335, 265], [1334, 264], [1334, 263], [1333, 262], [1333, 261], [1334, 261], [1334, 260], [1334, 258], [1333, 258]]}, "center": {"142-166, T:0-1": [1338, 262]}},
-{"id": "txlnm7", "name": "Ookami Mio's hairpin", "description": "The hairpin of virtual YouTuber Ookami Mio from Hololive GAMERS.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1396, 958], [1395, 958], [1395, 957], [1395, 956], [1395, 955], [1396, 955], [1397, 955], [1398, 955], [1399, 955], [1400, 955], [1402, 955], [1403, 955], [1403, 956], [1403, 957], [1403, 958], [1402, 958], [1402, 959], [1401, 959], [1400, 959], [1399, 959], [1398, 959], [1397, 959], [1396, 959]]}, "center": {"56-165, T:0-1": [1399, 957]}},
+{"id": "txlnm7", "name": "Ookami Mio's hairpin", "description": "The hairpin of virtual YouTuber Ookami Mio from Hololive GAMERS.", "links": {"website": ["https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1396, 958], [1395, 958], [1395, 957], [1395, 956], [1395, 955], [1396, 955], [1397, 955], [1398, 955], [1399, 955], [1400, 955], [1402, 955], [1403, 955], [1403, 956], [1403, 957], [1403, 958], [1402, 958], [1402, 959], [1401, 959], [1400, 959], [1399, 959], [1398, 959], [1397, 959], [1396, 959]]}, "center": {"56-165, T:0-1": [1399, 957]}},
{"id": "txlmpo", "name": "Squirtle", "description": "Squirtle is the Water-type starter Pokémon in Kanto (Generation I).\n\nThis art is the rebirth of a Pokemon after his destruction by Mizkif's 100k-soldier army. This art (finished on the last screenshot of r/place) was created and defended by the Discord groups WTF Tante and La niche des Alphas.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Squirtle_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"109-165, T:0-1": [[1353, 1345], [1353, 1353], [1361, 1353], [1361, 1345]]}, "center": {"109-165, T:0-1": [1357, 1349]}},
-{"id": "txllu0", "name": "Middle-Eastern Alliance", "description": "The Middle-Eastern alliance is an alliance consisting of the groups who made the art in this area, in addition to r/monstercat, r/Bengals, r/Cardinals, and other supporting groups.", "links": {"subreddit": ["admiral_tidebringer", "battlebots", "Bengals", "canada", "Cardinals", "EdmontonOilers", "ElementalOnDiscord", "Eminem", "eurovision", "furry", "furry_irl", "garfield", "GreekGodGear", "JohnMayer", "Marisad", "monstercat", "oddlof", "PowiTeam", "StardewValley", "starsector", "stlouisblues", "touhou", "winnipegjets"], "discord": ["Z5p4hQF6"]}, "path": {"56-166, T:0-1": [[1708, 1043], [1768, 1043], [1768, 999], [1769, 999], [1769, 963], [1782, 964], [1782, 970], [1799, 970], [1799, 1045], [1830, 1045], [1830, 1013], [1800, 1013], [1800, 971], [1805, 971], [1805, 965], [1797, 965], [1797, 958], [1796, 958], [1796, 939], [1791, 939], [1791, 936], [1792, 935], [1806, 935], [1806, 951], [1829, 951], [1829, 949], [1868, 949], [1868, 869], [1785, 869], [1785, 889], [1780, 893], [1777, 890], [1775, 890], [1772, 895], [1772, 898], [1773, 899], [1773, 901], [1749, 901], [1749, 933], [1748, 934], [1740, 934], [1740, 941], [1729, 941], [1729, 963], [1708, 963], [1708, 989], [1721, 989], [1721, 979], [1731, 979], [1731, 989], [1741, 989], [1741, 999], [1708, 999]]}, "center": {"56-166, T:0-1": [1830, 906]}},
+{"id": "txllu0", "name": "Middle-Eastern Alliance", "description": "The Middle-Eastern Alliance is an alliance consisting of the groups who made the art in this area, in addition to r/monstercat, r/Bengals, r/Cardinals, and other supporting groups.", "links": {"subreddit": ["admiral_tidebringer", "battlebots", "Bengals", "canada", "Cardinals", "EdmontonOilers", "ElementalOnDiscord", "Eminem", "eurovision", "furry", "furry_irl", "garfield", "GreekGodGear", "JohnMayer", "Marisad", "monstercat", "oddlof", "PowiTeam", "StardewValley", "starsector", "stlouisblues", "touhou", "winnipegjets"], "discord": ["Z5p4hQF6"]}, "path": {"109-122": [[1766, 869], [1766, 888], [1772, 888], [1772, 900], [1749, 900], [1749, 927], [1753, 927], [1753, 950], [1762, 950], [1763, 951], [1767, 951], [1768, 964], [1708, 964], [1708, 999], [1768, 999], [1768, 964], [1785, 964], [1785, 958], [1798, 958], [1798, 975], [1799, 975], [1799, 999], [1807, 999], [1807, 1018], [1814, 1018], [1820, 1014], [1830, 1014], [1835, 1017], [1839, 1022], [1840, 1025], [1840, 1035], [1837, 1041], [1830, 1045], [1820, 1045], [1814, 1042], [1810, 1035], [1810, 1025], [1814, 1018], [1807, 1018], [1807, 999], [1799, 999], [1799, 975], [1798, 975], [1798, 951], [1797, 951], [1797, 934], [1806, 934], [1806, 951], [1828, 951], [1828, 950], [1869, 950], [1869, 954], [1894, 954], [1894, 929], [1869, 929], [1869, 869]], "56-108": [[1766, 869], [1766, 888], [1772, 888], [1772, 900], [1749, 900], [1749, 927], [1753, 927], [1753, 950], [1762, 950], [1763, 951], [1767, 951], [1768, 964], [1708, 964], [1708, 999], [1768, 999], [1768, 964], [1785, 964], [1785, 958], [1798, 958], [1798, 941], [1793, 941], [1793, 934], [1806, 934], [1806, 951], [1829, 951], [1829, 950], [1869, 950], [1869, 869]], "123-166, T:0-1": [[1708, 1043], [1768, 1043], [1768, 999], [1769, 999], [1769, 963], [1782, 964], [1782, 970], [1799, 970], [1799, 1045], [1830, 1045], [1830, 1013], [1800, 1013], [1800, 971], [1805, 971], [1805, 965], [1797, 965], [1797, 958], [1796, 958], [1796, 939], [1791, 939], [1791, 936], [1792, 935], [1806, 935], [1806, 951], [1829, 951], [1829, 949], [1868, 949], [1868, 869], [1785, 869], [1785, 889], [1780, 893], [1777, 890], [1775, 890], [1772, 895], [1772, 898], [1773, 899], [1773, 901], [1749, 901], [1749, 933], [1748, 934], [1740, 934], [1740, 941], [1729, 941], [1729, 963], [1708, 963], [1708, 989], [1721, 989], [1721, 979], [1731, 979], [1731, 989], [1741, 989], [1741, 999], [1708, 999]]}, "center": {"109-122": [1831, 906], "56-108": [1832, 907], "123-166, T:0-1": [1830, 906]}},
{"id": "txljg1", "name": "Croatia", "description": "A map of the northern part of Croatia with a flag of Croatia.", "links": {"website": ["https://en.wikipedia.org/wiki/Croatia"], "subreddit": ["croatia"]}, "path": {"78-86": [[1323, 255], [1319, 259], [1319, 261], [1316, 264], [1308, 264], [1304, 267], [1304, 269], [1306, 271], [1310, 268], [1312, 270], [1316, 270], [1319, 272], [1320, 270], [1331, 265], [1331, 264], [1338, 260], [1338, 257], [1336, 257], [1330, 260], [1328, 260]], "95-103": [[1321, 257], [1317, 263], [1313, 265], [1310, 264], [1308, 264], [1307, 265], [1307, 267], [1309, 270], [1312, 270], [1317, 268], [1322, 268], [1331, 260], [1331, 259], [1330, 258], [1328, 258], [1327, 259], [1325, 259], [1323, 257]], "109-166, T:0-1": [[1322, 257], [1316, 263], [1316, 265], [1307, 265], [1306, 266], [1306, 270], [1308, 272], [1311, 272], [1317, 277], [1317, 279], [1321, 279], [1321, 278], [1318, 275], [1316, 271], [1316, 270], [1318, 268], [1327, 268], [1331, 266], [1333, 266], [1334, 267], [1336, 267], [1336, 266], [1334, 264], [1334, 259], [1332, 257], [1331, 257], [1330, 258], [1325, 258], [1324, 257]]}, "center": {"78-86": [1324, 263], "95-103": [1322, 262], "109-166, T:0-1": [1324, 263]}},
{"id": "txljfp", "name": "Bubble O' Bill", "description": "Bubble O' Bill is a classic Australian ice cream brand. It is a blend of strawberry, chocolate and caramel ice confection with a mega bubblegum nose and a bullet hole through his hat.", "links": {"website": ["http://streetsicecream.com.au/brands/bubble-o-bill.html", "https://en.wikipedia.org/wiki/Bubble_O%27_Bill"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"85-165, T:0-1": [[671, 710], [671, 712], [670, 712], [670, 716], [671, 716], [671, 720], [673, 720], [673, 726], [675, 726], [675, 720], [677, 720], [677, 716], [678, 716], [678, 712], [677, 712], [677, 710]]}, "center": {"85-165, T:0-1": [674, 714]}},
{"id": "txlh60", "name": "Team Fortress 2-Titanfall 2 heart", "description": "A heart made by the Czech community to celebrate the alliance with r/tf2 and r/titanfall2. A Czech heart can also be found on TF2's part of the canvas.", "links": {"website": ["https://www.teamfortress.com", "https://www.ea.com/games/titanfall/titanfall-2"], "subreddit": ["czech", "tf2", "titanfall2"]}, "path": {"159-166, T:0-1": [[1320, 167], [1318, 166], [1317, 167], [1316, 168], [1316, 169], [1316, 170], [1317, 171], [1318, 172], [1319, 173], [1320, 174], [1321, 173], [1322, 172], [1323, 171], [1324, 170], [1324, 169], [1324, 168], [1323, 167], [1322, 166], [1321, 166]]}, "center": {"159-166, T:0-1": [1320, 170]}},
{"id": "txlgtl", "name": "Ecole Pour l'Informatique et les Techniques Avancées", "description": "Ecole Pour l'Informatique et les Techniques Avancées (EPITA) is a prestigious computer science and engineering in France.\n\nThe presence of this logo for days, and until the antivoid, is not only a testimony to the sheer will and resilience of its students, but also the proof that diplomacy, peacefulness, and loyalty are a valid strategy in a game of survival of the fittest.\n\nHaving befriended r/wallstreetbets, r/trans, r/hinduism, r/PuzzleGames, r/esPlace, r/Blasphemous, and much more, the students gathered allies who both protected them and were protected by them.\n\nThis logo proudly stands here, in the hand of a Hindu god, despite the many attacks by r/GreenLattice, 4chan, EFREI, CESI, and other jealous communities and French schools. It was also honored to be held for hours by Fuckboy, r/wallstreetbets's mascot, before they both got betrayed by rogue members of the r/GreenLattice community.", "links": {"website": ["https://www.epita.fr/", "https://en.wikipedia.org/wiki/%C3%89cole_pour_l'informatique_et_les_techniques_avanc%C3%A9es"], "subreddit": ["epita"]}, "path": {"71-98": [[1199, 312], [1190, 319], [1190, 322], [1194, 325], [1194, 327], [1196, 329], [1199, 329], [1201, 333], [1206, 333], [1210, 336], [1212, 336], [1212, 330], [1227, 330], [1227, 328], [1228, 327], [1229, 323], [1225, 319], [1224, 319], [1221, 312]], "56-61": [[1165, 337], [1146, 350], [1146, 352], [1148, 356], [1150, 359], [1155, 359], [1155, 363], [1164, 363], [1168, 369], [1169, 367], [1169, 362], [1171, 359], [1184, 359], [1185, 355], [1185, 353], [1180, 349], [1177, 340]], "39-54": [[980, 374], [963, 386], [963, 387], [966, 390], [966, 393], [967, 394], [971, 394], [971, 398], [974, 397], [976, 397], [981, 401], [982, 401], [982, 396], [985, 394], [998, 394], [999, 389], [994, 385], [994, 382], [992, 380], [990, 375], [987, 377], [984, 377], [984, 375]], "1-13": [[860, 428], [840, 441], [840, 444], [846, 448], [843, 451], [843, 452], [852, 452], [852, 456], [857, 456], [862, 460], [865, 460], [865, 453], [868, 452], [885, 452], [885, 448], [886, 448], [888, 446], [881, 440], [875, 426], [869, 431], [868, 431], [864, 427], [861, 427]], "62-70, 99-166, T:0-1": [[1209, 307], [1191, 320], [1191, 321], [1194, 324], [1194, 327], [1196, 329], [1199, 329], [1199, 333], [1207, 333], [1211, 337], [1212, 337], [1212, 330], [1214, 329], [1229, 329], [1229, 328], [1227, 326], [1227, 325], [1229, 323], [1224, 318], [1222, 314], [1220, 309], [1219, 308], [1214, 311]]}, "center": {"71-98": [1206, 322], "56-61": [1163, 351], "39-54": [980, 386], "1-13": [861, 442], "62-70, 99-166, T:0-1": [1207, 321]}},
{"id": "txlgg0", "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"]}, "path": {"134-162": [[51, 139], [49, 141], [49, 145], [48, 145], [48, 148], [51, 148], [51, 154], [54, 154], [54, 148], [57, 148], [57, 145], [56, 145], [56, 141], [54, 139]], "163-165, T:0-1": [[33, 149], [30, 149], [30, 146], [33, 146], [31, 145], [31, 142], [33, 140], [36, 140], [38, 142], [38, 145], [36, 146], [39, 146], [39, 149], [36, 149], [36, 151], [33, 155]]}, "center": {"134-162": [53, 144], "163-165, T:0-1": [34, 143]}},
-{"id": "txlfxa", "name": "aespa", "description": "Logo of 4th-generation girl group aespa (æspa), which debuted under SM Entertainment.", "links": {"website": ["https://www.instagram.com/aespa_official/?hl=en"], "subreddit": ["Aespa"]}, "path": {"56-166, T:0-1": [[1514, 891], [1514, 897], [1523, 897], [1523, 890], [1514, 890]]}, "center": {"56-166, T:0-1": [1519, 894]}},
+{"id": "txlfxa", "name": "aespa", "description": "aespa (æspa) is a 4th-generation girl group which debuted under 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.smtown.com/artists/10766", "https://www.instagram.com/aespa_official/?hl=en", "https://en.wikipedia.org/wiki/Aespa"], "subreddit": ["Aespa", "kpop"]}, "path": {"77-137": [[1514, 890], [1514, 896], [1522, 896], [1522, 890]], "138-143, 72-76": [[1514, 890], [1514, 896], [1523, 896], [1523, 890]], "144-166, T:0-1": [[1515, 890], [1515, 896], [1523, 896], [1523, 890]]}, "center": {"77-137": [1518, 893], "138-143, 72-76": [1519, 893], "144-166, T:0-1": [1519, 893]}},
{"id": "txlevt", "name": "Raise The Black Flag", "description": "Raise The Black Flag (RTBF) is an album made by Teminite. The album is themed around pirates with a dubstep twist, and it contains a song by the same name as the album, along with 10 other songs for a total of 11 songs.\n\nMade by the community of Teminite, primarily members of his Discord server.", "links": {"website": ["https://youtu.be/X1E9bKNpJYM"], "subreddit": ["Teminite"]}, "path": {"68-167, T:0-1": [[1953, 270], [1969, 270], [1969, 276], [1953, 276]]}, "center": {"68-167, T:0-1": [1961, 273]}},
{"id": "txlevk", "name": "Hungary", "description": "A map of Hungary with a flag of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary"], "subreddit": ["hungary"]}, "path": {"66-166, T:0-1": [[1321, 248], [1323, 246], [1324, 246], [1326, 245], [1328, 246], [1330, 246], [1332, 245], [1333, 245], [1334, 244], [1335, 244], [1337, 243], [1340, 243], [1341, 242], [1343, 242], [1344, 243], [1344, 244], [1346, 244], [1347, 245], [1348, 247], [1347, 248], [1346, 249], [1346, 251], [1344, 252], [1342, 253], [1342, 254], [1341, 254], [1341, 255], [1337, 255], [1336, 255], [1336, 256], [1333, 256], [1333, 257], [1330, 257], [1330, 258], [1325, 258], [1325, 257], [1322, 257], [1322, 255], [1321, 254]]}, "center": {"66-166, T:0-1": [1337, 249]}},
{"id": "txlei8", "name": "Flower", "description": "An indigo-colored flower, most likely a forget-me-not, which symbolizes remembrance. Placed by a random user, but kept and preserved by Dance Dance Revolution place users.", "links": {"website": ["https://en.wikipedia.org/wiki/Myosotis"], "subreddit": ["DanceDanceRevolution"]}, "path": {"147-165, T:0-1": [[783, 692], [783, 699], [784, 699], [784, 701], [786, 701], [786, 698], [787, 698], [787, 692]]}, "center": {"147-165, T:0-1": [785, 694]}},
@@ -5099,7 +5088,7 @@
{"id": "txsr34", "name": "Grian", "description": "Grian is a Minecraft YouTuber known for his building skills. He has been a member of Hermitcraft since season six. He is the creator of Evolution SMP and 3rd/Last Life SMP, and the co-owner of the Minecraft MMO Wynncraft.", "links": {"website": ["https://www.youtube.com/c/Grian", "https://hermitcraft.fandom.com/wiki/Grian"], "subreddit": ["HermitCraft"]}, "path": {"16-165, T:0-1": [[878, 599], [878, 607], [887, 607], [887, 599]]}, "center": {"16-165, T:0-1": [883, 603]}},
{"id": "txsqeb", "name": "Heisenberg Drawing", "description": "The iconic drawing of Heisenberg from the TV show Breaking Bad.", "links": {}, "path": {"109-164, T:0-1": [[261, 1713], [261, 1725], [271, 1725], [271, 1713]]}, "center": {"109-164, T:0-1": [266, 1719]}},
{"id": "txsoo5", "name": "r/Ooer", "description": "r/Ooer is a meme subreddit. The 36 included is an inside joke on the Discord server.\n\nr/Ooer helped maintain the Emotiguy icon above, who they lovingly refer to as \"Botto\".", "links": {"subreddit": ["Ooer"]}, "path": {"137-166, 66-123, T:0-1": [[1539, 170], [1558, 170], [1558, 165], [1557, 163], [1555, 163], [1555, 162], [1554, 162], [1553, 162], [1553, 159], [1549, 159], [1549, 158], [1548, 158], [1547, 158], [1547, 159], [1545, 159], [1545, 160], [1540, 160], [1539, 160], [1539, 166]]}, "center": {"137-166, 66-123, T:0-1": [1548, 165]}},
-{"id": "txsm1h", "name": "Towa-sama Maji Tenshi", "description": "Towa-sama Maji Tenshi (TMT) is a fan nickname for Hololive 4th Gen. member Tokoyami Towa, meaning \"Towa-sama is actually an angel\". Towa-sama vehemently rejects the accusation, insisting that she is in fact a devil despite all evidence being to the contrary (except her singing). Related acronyms include TMD (Towa-sama Maji Debiru/Devil or Towa-sama Maji Daitenshi) and TMA (Towa-sama Maji Akuma or Towa-sama Maji Angel).", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "https://virtualyoutuber.fandom.com/wiki/Tokoyami_Towa"], "subreddit": ["tokoyamitowa", "Hololive"]}, "path": {"38-166, T:0-1": [[254, 803], [254, 804], [252, 804], [252, 814], [254, 814], [254, 815], [256, 815], [256, 803]]}, "center": {"38-166, T:0-1": [254, 809]}},
+{"id": "txsm1h", "name": "Towa-sama Maji Tenshi", "description": "Towa-sama Maji Tenshi (TMT) is a fan nickname for Hololive 4th Gen. member Tokoyami Towa, meaning \"Towa-sama is actually an angel\". Towa-sama vehemently rejects the accusation, insisting that she is in fact a devil despite all evidence being to the contrary (except her singing). Related acronyms include TMD (Towa-sama Maji Debiru/Devil or Towa-sama Maji Daitenshi) and TMA (Towa-sama Maji Akuma or Towa-sama Maji Angel).", "links": {"website": ["https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "https://virtualyoutuber.fandom.com/wiki/Tokoyami_Towa"], "subreddit": ["tokoyamitowa", "Hololive"], "discord": ["holofans"]}, "path": {"38-166, T:0-1": [[254, 803], [254, 804], [252, 804], [252, 814], [254, 814], [254, 815], [256, 815], [256, 803]]}, "center": {"38-166, T:0-1": [254, 809]}},
{"id": "txsl5e", "name": "Duck!", "description": "A little duckling made by twitch streamer saucini's community!", "links": {"website": ["https://Twitch.tv/saucini"], "subreddit": ["Saucini"]}, "path": {"109-165, T:0-1": [[836, 1375], [844, 1375], [845, 1375], [844, 1376], [846, 1376], [845, 1377], [847, 1377], [847, 1378], [848, 1378], [848, 1379], [849, 1379], [849, 1380], [850, 1380], [850, 1381], [851, 1381], [851, 1382], [852, 1382], [852, 1383], [852, 1384], [836, 1384]]}, "center": {"109-165, T:0-1": [843, 1380]}},
{"id": "txsjdm", "name": "Plane Crash Corner", "description": "Plane Crash Corner is a frequent segment on the Hello Internet podcast in which Grey and Brady discuss events and news about plane crashes.", "links": {"subreddit": ["HelloInternet", "BradyHaran", "CGPGrey"]}, "path": {"32-70": [[84, 825], [81, 828], [81, 830], [87, 830], [89, 828], [89, 826], [87, 826], [87, 825]], "88-166, T:0-1": [[81, 826], [81, 830], [94, 830], [94, 825], [89, 825], [89, 826]]}, "center": {"32-70": [85, 828], "88-166, T:0-1": [91, 828]}},
{"id": "txsi1e", "name": "Andean condor", "description": "An Iconic vulture, national symbol of Bolivia.", "links": {"subreddit": ["BOLIVIA"]}, "path": {"109-166, T:0-1": [[1473, 1228], [1464, 1220], [1460, 1218], [1462, 1207], [1470, 1205], [1475, 1213], [1480, 1219], [1487, 1226], [1492, 1229], [1494, 1230], [1489, 1232], [1481, 1232], [1473, 1229]]}, "center": {"109-166, T:0-1": [1474, 1220]}},
@@ -5110,7 +5099,7 @@
{"id": "txs9cz", "name": "SoulKnight", "description": "Just a random group of Uruguayan friends that managed to infiltrate in place 2022.", "links": {}, "path": {"109-166, T:0-1": [[1883, 1323], [1901, 1323], [1902, 1323], [1902, 1330], [1883, 1330]]}, "center": {"109-166, T:0-1": [1893, 1327]}},
{"id": "txs946", "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 was initially a three-pixel-wide flag on the left side of the neoliberal/NonCredibleDefence collaborative art. The flag quickly grew to six pixels before extending out further to the left and reaching the Hungarian flag. Sweden and Hungary would eventually take over the flag. The flag then moved to its current location.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://en.wikipedia.org/wiki/Transgender_flag"], "subreddit": ["neoliberal", "NonCredibleDefence"]}, "path": {"3-13": [[745, 100], [745, 121], [774, 121], [774, 130], [800, 130], [800, 100]], "21-166, T:0-1": [[877, 99], [878, 102], [878, 103], [879, 104], [879, 111], [885, 117], [885, 119], [884, 120], [882, 120], [880, 122], [881, 123], [882, 123], [883, 124], [882, 125], [880, 125], [879, 126], [878, 125], [877, 125], [877, 129], [893, 129], [893, 99]]}, "center": {"3-13": [786, 114], "21-166, T:0-1": [886, 108]}},
{"id": "txs8wu", "name": "_Neroxis", "description": "The profile picture of the Redditor _Neroxis.", "links": {"website": ["http://neroxis.net"]}, "path": {"57-61": [[1605, 148], [1602, 150], [1600, 153], [1600, 158], [1613, 157], [1615, 155], [1615, 152], [1612, 149], [1610, 148]], "62-166, T:0-1": [[1522, 159], [1527, 154], [1534, 154], [1539, 160], [1539, 166], [1534, 171], [1527, 171], [1522, 166]]}, "center": {"57-61": [1607, 153], "62-166, T:0-1": [1530, 163]}},
-{"id": "txs8wk", "name": "Weeekly", "description": "Weeekly (위클리) (formerly known as PlayM Girls and FAVE Girls) is a seven-member girl group under under IST Entertainment (formerly Play M Entertainment) consisting of Lee Soojin, Shin Jiyoon, Monday, Park Soeun, Lee Jaehee, Jihan, and Zoa. They debuted in June 30, 2020 with their debut album 'We Are' which features the title track Tag Me (@Me).", "links": {"website": ["https://en.wikipedia.org/wiki/Weeekly"], "subreddit": ["weeekly"]}, "path": {"56-165, T:0-1": [[1453, 879], [1453, 883], [1486, 883], [1486, 879]]}, "center": {"56-165, T:0-1": [1470, 881]}},
+{"id": "txs8wk", "name": "Weeekly", "description": "Weeekly (위클리) (formerly known as PlayM Girls and FAVE Girls) is a seven-member girl group under under IST Entertainment (formerly Play M Entertainment) consisting of Lee Soojin, Shin Jiyoon, Monday, Park Soeun, Lee Jaehee, Jihan, and Zoa. They debuted on June 30, 2020 with their debut album \"We Are\" which features the title track Tag Me (@Me).", "links": {"website": ["http://www.planaent.co.kr/weeekly", "https://en.wikipedia.org/wiki/Weeekly"], "subreddit": ["weeekly", "kpop"]}, "path": {"75-148": [[1453, 878], [1453, 884], [1487, 884], [1487, 878]], "149-166, T:0-1": [[1452, 878], [1452, 884], [1487, 884], [1487, 878]]}, "center": {"75-148": [1470, 881], "149-166, T:0-1": [1470, 881]}},
{"id": "txs7pd", "name": "Command-line interface", "description": "A command-line interface is a text-based computer interface where a user can input commands to run processes on the computer.", "links": {"website": ["https://en.wikipedia.org/wiki/Command-line_interface"]}, "path": {"155-160": [[1456, 337], [1467, 337], [1467, 347], [1456, 347], [1456, 340]]}, "center": {"155-160": [1462, 342]}},
{"id": "txs72v", "name": "HoliHowls", "description": "HoliHowls is a trans artist and streamer. The wolf depicted is her fursona.", "links": {"website": ["https://www.twitch.tv/holihowls"], "subreddit": ["transplace"]}, "path": {"80-165, T:0-1": [[541, 429], [535, 435], [535, 436], [532, 436], [532, 439], [534, 441], [534, 452], [533, 453], [533, 455], [540, 455], [541, 456], [542, 455], [552, 455], [552, 456], [554, 456], [556, 454], [556, 448], [561, 448], [566, 440], [566, 433], [564, 431], [563, 432], [562, 432], [554, 440], [546, 440], [546, 437], [548, 435], [546, 433], [542, 433], [542, 429]]}, "center": {"80-165, T:0-1": [542, 447]}},
{"id": "txs3hw", "name": "The Green Line", "description": "The Green Line is a train line in Boston, MA.", "links": {"website": ["https://www.mbta.com/schedules/Green"]}, "path": {"109-165, T:0-1": [[300, 1564], [344, 1565], [343, 1574], [300, 1574], [301, 1565]]}, "center": {"109-165, T:0-1": [322, 1569]}},
@@ -5134,10 +5123,10 @@
{"id": "txro77", "name": "Chocobo", "description": "A Chocobo is a recurring bird in the Final Fantasy series, first appearing in Final Fantasy II. They are often used for fast travelling, and often respond with \"Kweh!\".", "links": {"website": ["https://en.wikipedia.org/wiki/Chocobo"], "subreddit": ["ffxiv", "FinalFantasy"]}, "path": {"99-166, T:0-1": [[1254, 519], [1252, 521], [1250, 524], [1250, 527], [1251, 528], [1251, 533], [1255, 537], [1256, 537], [1256, 539], [1258, 541], [1259, 541], [1263, 537], [1261, 535], [1261, 534], [1262, 533], [1262, 532], [1261, 531], [1261, 527], [1264, 524], [1264, 521], [1265, 520], [1265, 519]]}, "center": {"99-166, T:0-1": [1256, 525]}},
{"id": "txrnpu", "name": "Baguette", "description": "On the initiative of the french streamer ZeratoR, a baguette was placed on some characters with their hands open. After the Bratishkin community wrote \"stop baguette\" ZeratoR's community stopped placing baguette here and replied with a small \"Ok\" accompanied by a french flag.", "links": {}, "path": {"109-165, T:0-1": [[1905, 1969], [1855, 1930], [1872, 1911], [1920, 1954]]}, "center": {"109-165, T:0-1": [1887, 1940]}},
{"id": "txrnkr", "name": "r/placeDE Discord server", "description": ".gg/placeDE is short for discord.gg/placeDE, an invite link to the official r/placeDE Discord server.", "links": {"subreddit": ["de", "placeDE"], "discord": ["de", "placeDE"]}, "path": {"97-166, T:0-1": [[587, 845], [587, 859], [590, 859], [591, 860], [606, 860], [606, 866], [610, 866], [610, 860], [631, 860], [631, 847], [629, 845]]}, "center": {"97-166, T:0-1": [608, 853]}},
-{"id": "txrkoq", "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)"], "subreddit": ["Kirby"]}, "path": {"98-129": [[37, 323], [37, 329], [43, 329], [43, 323]], "150-165, T:0-1": [[35, 354], [33, 356], [32, 358], [32, 360], [33, 361], [33, 363], [40, 363], [40, 356], [38, 354]]}, "center": {"98-129": [40, 326], "150-165, T:0-1": [36, 359]}},
+{"id": "txrkoq", "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)"], "subreddit": ["Kirby"]}, "path": {"98-129": [[37, 323], [37, 329], [43, 329], [43, 323]], "57-60": [[1152, 890], [1149, 892], [1148, 893], [1148, 900], [1158, 900], [1158, 897], [1159, 896], [1159, 894], [1158, 893], [1158, 890]], "150-165, T:0-1": [[35, 354], [33, 356], [32, 358], [32, 360], [33, 361], [33, 363], [40, 363], [40, 356], [38, 354]]}, "center": {"98-129": [40, 326], "57-60": [1154, 895], "150-165, T:0-1": [36, 359]}},
{"id": "txrjyk", "name": "Kawaii transgender cat pile", "description": "This pile of cute kittens, known popularly as \"cat pillow\", has each kitten colored as a stripe of the trans flag. It was originally drawn by Irene Koh. Cats with pride flag stripes are common in LGBT representation.", "links": {"website": ["https://irenekohstudio.com/products/kawaii-cat-pile-transgender-pride-sticker"], "subreddit": ["transplace"]}, "path": {"75, 77-165, T:0-1": [[484, 437], [484, 445], [483, 445], [483, 452], [482, 453], [482, 454], [486, 458], [484, 460], [484, 462], [482, 462], [479, 465], [479, 468], [480, 469], [480, 472], [477, 475], [477, 476], [501, 476], [501, 473], [506, 468], [501, 461], [498, 461], [498, 454], [497, 453], [497, 448], [498, 447], [496, 443], [496, 436], [494, 436], [492, 438], [487, 438], [486, 437]]}, "center": {"75, 77-165, T:0-1": [491, 467]}},
-{"id": "txrjxw", "name": "CLC", "description": "CLC (CrystaL Clear, 씨엘씨) is a South Korean girl group formed by Cube Entertainment. The group consists of five members: Seunghee, Yujin, Seungyeon, Yeeun, and Eunbin. A seven-piece ensemble for most of their career, Elkie departed from the group in February 2021, and Sorn departed from the group in November 2021. The group debuted on March 19, 2015 with the mini-album \"First Love\" and title track \"PePe\".", "links": {"website": ["http://cubeent.co.kr/clc", "https://en.wikipedia.org/wiki/CLC_(group)"], "subreddit": ["crystalclear"]}, "path": {"56-166, T:0-1": [[1488, 879], [1488, 884], [1498, 884], [1498, 879]]}, "center": {"56-166, T:0-1": [1493, 882]}},
-{"id": "txri6s", "name": "IU", "description": "IU is a South Korean singer, songwriter, and actress. The name IU is a combination of 'I' and 'you' meaning 'you and I become one through music'. She signed with Kakao M in 2007 as a trainee and debuted as a singer with her first mini album Lost and Found (2008).", "links": {"website": ["https://en.wikipedia.org/wiki/IU_(singer)"], "subreddit": ["aiyu"]}, "path": {"56-166, T:0-1": [[1670, 880], [1670, 890], [1680, 890], [1680, 880]]}, "center": {"56-166, T:0-1": [1675, 885]}},
+{"id": "txrjxw", "name": "CLC", "description": "CLC (CrystaL Clear, 씨엘씨) is a South Korean girl group formed by Cube Entertainment. The group consists of five members: Seunghee, Yujin, Seungyeon, Yeeun, and Eunbin. The group debuted on March 19, 2015 with the mini-album \"First Love\" and title track \"PePe\". A seven-piece ensemble for most of their career, Elkie departed from the group in February 2021, and Sorn departed from the group in November 2021. The group is currently effectively disbanded.", "links": {"website": ["http://cubeent.co.kr/clc", "https://en.wikipedia.org/wiki/CLC_(group)"], "subreddit": ["crystalclear", "kpop"]}, "path": {"83-166, T:0-1": [[1488, 879], [1488, 884], [1498, 884], [1498, 879]]}, "center": {"83-166, T:0-1": [1493, 882]}},
+{"id": "txri6s", "name": "IU", "description": "IU, real name Lee Ji Eun, is a South Korean singer, songwriter, and actress. The name IU is a combination of \"I\" and \"you\", meaning \"you and I become one through music\". She signed with Kakao M in 2007 as a trainee and debuted as a singer with her first mini-album Lost and Found (2008).", "links": {"website": ["https://en.wikipedia.org/wiki/IU_(singer)"], "subreddit": ["aiyu", "kpop"]}, "path": {"125-135": [[1670, 879], [1670, 890], [1680, 890], [1680, 879]], "70-122": [[1670, 879], [1670, 889], [1680, 889], [1680, 879]], "136-166, T:0-1": [[1669, 879], [1669, 891], [1681, 891], [1681, 879]]}, "center": {"125-135": [1675, 885], "70-122": [1675, 884], "136-166, T:0-1": [1675, 885]}},
{"id": "txrgvc", "name": "Danganronpa", "description": "Danganronpa is a game series made by Spike Chunsoft. Along with Nagito Komaeda and his green Among Us crewmate, several other characters from the Danganronpa franchise resided here, namely Makoto Naegi, Hajime Hinata, Kaede Akamatsu and Korekiyo Shinguchi.\n\nThis art were added on day 2 of r/place, replacing the word HOUSE from the book House of Leaves. By the evening of day 2, the word HOUSE had retaken its position where the tiny Danganronpa characters were, and 12-15 hours later, by the end of day 2, the word NOVEL was added by Novelhouse fans.", "links": {"website": ["https://en.wikipedia.org/wiki/Danganronpa"], "subreddit": ["danganronpa"]}, "path": {"51-71": [[730, 823], [728, 825], [728, 826], [729, 827], [729, 830], [753, 830], [753, 825], [751, 823], [748, 823], [747, 822], [732, 822], [731, 823]], "44-49": [[735, 828], [733, 830], [733, 832], [734, 833], [734, 835], [773, 835], [773, 830], [771, 828]], "29-43": [[733, 828], [733, 831], [734, 832], [734, 835], [758, 835], [758, 830], [756, 828], [753, 828], [752, 827], [737, 827], [736, 828]]}, "center": {"51-71": [741, 826], "44-49": [753, 832], "29-43": [746, 831]}},
{"id": "txrg84", "name": "Flag of France", "description": "France is a country in Western Europe.\n\nThis very large flag of France was made by the French Twitch sphere of streamers and their communities.\n\nAfter battling against Spanish streamer Ibai for hours in the bottom-left corner of r/place (before the third space was opened), The French streamers, led by streamer and esports leader Kamet0, migrated to the newly opened blank space in the bottom left of the third space. The original area extended over the One Piece area to the north, but the French were happy to offer up the space to r/OnePiece during the final day, and even helped them build their art.\n\nAfter the French streamers started putting down roots in the bottom left, building a huge French flag and a poorly-drawn Eiffel Tower, a coalition comprised of Spanish and North American streamers (Ibai, Rubius, xQc, Mizkif) started attacking them relentlessly, even overtaking a huge chunk of the north area to draw a huge kid + \"RATIO\". The French Twitch community valiantly rallied and succeeded in retaking the north area; they then resisted until very late into the night, but their numbers ended up dwindling dangerously as people left to sleep.\n\nWhile the late night/early morning crew did their best (French streamers relayed each other around the clock), The Eiffel Tower was completely dismantled and the flag almost entirely disappeared under the onslaught. North American streamer xQc then led an initiative to draw a gigantic version of 2B's ass (a Nier: Automata character). Work was well underway when Reddit moderation intervened to black out the ass several times.\n\nAs people in France woke up, The early morning French streamers and their community, along with r/placefrance, were able to slowly clean up and retake most of the area. They first focused on redoing the flag, Then added the Arc de Triomphe model on the bottom (which ended up promptly taken over by a legion of Among Us crewmates); the Zidane face, croissant and dofus eggs came next. As more and more people woke up on the French side, French streamers congregated and debated over what other art to add. Some art that was drawn but didn't end up making the cut: Rayman (on the right of the Arc de Triomphe), a carte vitale (national health card), and Mr. Mime (around where Remy from Ratatouille is).\n\nThe French Twitch community resisted against a number of assaults during the day, notably on Zidane's face and the Arc de Triomphe. Bangtan Sonyeondan fans also tried to plaster the logo in the upper half, without success. The French steadily kept defending and building numerous new piece of arts such as the Louvre, Jinx, Lofi Girl, Remy, etc. until the late afternoon to evening, when the Spanish streamers came back in force to try and destroy their work once more. They again allied with North American streamers such as xQc and Erobb, drawing a huge BTS logo where Zidane's face was.\n\nThe French streamers once again rallied all together (there were more than 600k viewers on French streams, 400k of them following the \"French general\" Kamet0) to defend and rebuild, along with smaller communities which helped from the shadows such as r/OnePiece. The French Twitch community decided to focus their defense efforts on the flag itself, Thinking that it was easier than trying to rebuild all art at the same time, which meant that while only Thomas Pesquet and the Arc de Triomphe were mostly left standing at the end, The French flag was still there and going strong at the end or r/place.\n\nIn the end, The French area, which was focused by hundreds of thousands by people, ended up being the first one to disappear; when French streamers understood that the great white-out had come, They then rallied to try and write \"FR\" or \"FRA\" in white on the canvas.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Flag_of_France"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-164, T:0-1": [[249, 1469], [0, 1469], [0, 1969], [249, 1969]]}, "center": {"109-164, T:0-1": [125, 1719]}},
{"id": "txrg5c", "name": "rm -rf", "description": "A command for removing a folder and all its contents on Linux and other Unix-like operating systems.", "links": {"website": ["https://en.wikipedia.org/wiki/Rm_(Unix)"]}, "path": {"144-166, T:0-1": [[1551, 260], [1551, 267], [1574, 267], [1574, 261], [1554, 261], [1554, 260]]}, "center": {"144-166, T:0-1": [1554, 264]}},
@@ -5195,7 +5184,7 @@
{"id": "txpuur", "name": "Flag of Spain", "description": "Spain is a country in Western Europe.\n\nThis is one of the many Spanish flags made by the patriots from r/esPlace. Spain fought against France.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"109-166, T:0-1": [[1937, 1369], [1937, 1371], [1949, 1371], [1949, 1369]]}, "center": {"109-166, T:0-1": [1943, 1370]}},
{"id": "txpupl", "name": "Dostot/Arose", "description": "A Discord server who made a gaming organization as a joke, Then people joined it unironically.", "links": {"website": ["https://www.youtube.com/channel/UCXmCW6QkLM9HgvX4RirJQtQ"]}, "path": {"109-165, T:0-1": [[761, 1123], [765, 1123], [765, 1129], [761, 1129]]}, "center": {"109-165, T:0-1": [763, 1126]}},
{"id": "txpttj", "name": "Squishmallows", "description": "The battle to keep these Squishmallow cows on r/place was well-fought and long.\n\nAt first, Their neighbor was Big Chungus. Then Chrono Trigger quickly overtook him and started invading the Squishmallows' space. Luckily a diplomat from r/squishmallow got in contact with Chrono Trigger, and we came to a peace agreement where they allowed the Squishmallows to overlap their border.\n\nAfter that battle, an alliance formed in the entire area and we all helped defend each other from future raids.", "links": {"website": ["https://squishmallows.com/"], "subreddit": ["squishmallow"]}, "path": {"109-166, T:0-1": [[418, 1944], [419, 1969], [431, 1970], [431, 1945]]}, "center": {"109-166, T:0-1": [425, 1957]}},
-{"id": "txpsyk", "name": "Nightblood", "description": "The legendary sentient sword Nightblood. It consumes the souls of its victims and gradually also consumes the soul of its wielder when it is drawn. It is able to harm gods.", "links": {"website": ["https://coppermind.net/wiki/Nightblood"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1830, 869], [1869, 869], [1869, 880], [1830, 880]]}, "center": {"56-166, T:0-1": [1850, 875]}},
+{"id": "txpsyk", "name": "Nightblood", "description": "Nightblood is a legendary sentient sword from the fantasy novel series The Stormlight Archive. It consumes the souls of its victims and gradually also consumes the soul of its wielder when it is drawn. It is able to harm gods.", "links": {"website": ["https://coppermind.net/wiki/Nightblood"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"92-166, T:0-1": [[1830, 869], [1830, 880], [1868, 880], [1868, 869]]}, "center": {"92-166, T:0-1": [1849, 875]}},
{"id": "txpsb9", "name": "Joeseppi", "description": "Joeseppi is a streamer and YouTuber.\n\nThis art was allied with streamer DomCassé's CUL. Joeseppi said \"CUL IS GETTING FUK\" in reference to the alliance.", "links": {"website": ["https://www.twitch.tv/joeseppi_", "https://www.youtube.com/c/Joeseppi"]}, "path": {"101-166, T:0-1": [[1290, 664], [1333, 664], [1333, 673], [1290, 673]]}, "center": {"101-166, T:0-1": [1312, 669]}},
{"id": "txpr67", "name": "Lenna", "description": "The protagonist, Lenna, from the indie game Lenna's Inception. The game is a procedurally generated Zelda-like.", "links": {"subreddit": ["lennasinception"]}, "path": {"109-165, T:0-1": [[953, 1534], [958, 1537], [965, 1534], [968, 1527], [962, 1523], [954, 1525]]}, "center": {"109-165, T:0-1": [960, 1530]}},
{"id": "txpqgc", "name": "Bermuda", "description": "A small island in the middle of the Atlantic Ocean populated by about 60,000 people. The image represents the shape of the island, which resembles a fish hook.", "links": {"website": ["https://en.wikipedia.org/wiki/Bermuda"], "subreddit": ["bermuda"]}, "path": {"100-166, T:0-1": [[1829, 142], [1829, 148], [1837, 148], [1837, 142]]}, "center": {"100-166, T:0-1": [1833, 145]}},
@@ -5206,9 +5195,9 @@
{"id": "txpnba", "name": "Callahan", "description": "The most epic coder, developer and Dream SMP (survival multiplayer) moderator. Member of the Dream SMP.", "links": {"website": ["https://www.youtube.com/channel/UCWYWyBRimEDnIKzABAc7ZiQ"], "subreddit": ["Callahan", "dreamsmp"]}, "path": {"59-165, T:0-1": [[155, 935], [164, 935], [164, 944], [155, 944]]}, "center": {"59-165, T:0-1": [160, 940]}},
{"id": "txpmmz", "name": "YOMU", "description": "Yomu is a reference to one of the best manga.\nThose pixels has been attacked many times, and with Zecroum Disgression, Solshy and Jopiter, we had to defend our pixels.", "links": {}, "path": {"109-167, T:0-1": [[1947, 1643], [1963, 1643], [1963, 1646], [1947, 1646]]}, "center": {"109-167, T:0-1": [1955, 1645]}},
{"id": "txpkqw", "name": "Steve", "description": "One of the default player characters in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Player"], "subreddit": ["Minecraft"]}, "path": {"109-166, T:0-1": [[872, 1817], [867, 1817], [867, 1828], [872, 1828]]}, "center": {"109-166, T:0-1": [870, 1823]}},
-{"id": "txpjmh", "name": "KEL", "description": "KEL is a supporting character from the game OMORI. \"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": {"56-165, T:0-1": [[1050, 827], [1054, 827], [1054, 828], [1055, 828], [1055, 829], [1056, 829], [1056, 830], [1057, 830], [1057, 831], [1056, 831], [1056, 836], [1054, 836], [1054, 838], [1049, 838], [1049, 836], [1048, 836], [1048, 835], [1047, 835], [1047, 834], [1048, 834], [1048, 829], [1049, 829], [1049, 828], [1050, 828]]}, "center": {"56-165, T:0-1": [1052, 833]}},
+{"id": "txpjmh", "name": "KEL", "description": "KEL is a supporting character from the game OMORI. \"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": {"57-63": [[1075, 803], [1073, 805], [1075, 807], [1075, 810], [1072, 817], [1072, 819], [1077, 824], [1074, 827], [1074, 830], [1091, 830], [1091, 827], [1088, 824], [1091, 822], [1093, 819], [1093, 817], [1091, 812], [1091, 811], [1090, 810], [1090, 806], [1091, 805], [1089, 803], [1086, 803], [1086, 802], [1077, 802], [1077, 803]], "91-165, T:0-1": [[1050, 826], [1047, 829], [1047, 832], [1046, 833], [1046, 836], [1047, 837], [1047, 839], [1054, 839], [1057, 836], [1057, 832], [1058, 831], [1058, 830], [1054, 826]]}, "center": {"57-63": [1082, 816], "91-165, T:0-1": [1052, 834]}},
{"id": "txpi8w", "name": "Small Russian Flag", "description": "Small russian flag that was created by russian contributors", "links": {}, "path": {"109-166, T:0-1": [[875, 1625], [879, 1625], [879, 1623], [875, 1623]]}, "center": {"109-166, T:0-1": [877, 1624]}},
-{"id": "txphxw", "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"]}, "path": {"56-165, T:0-1": [[1049, 838], [1056, 838], [1056, 839], [1055, 839], [1055, 845], [1054, 845], [1054, 848], [1053, 848], [1053, 850], [1052, 850], [1052, 851], [1051, 851], [1051, 852], [1050, 852], [1050, 850], [1048, 850], [1048, 851], [1047, 851], [1047, 850], [1048, 850], [1048, 847], [1047, 847], [1047, 846], [1046, 846], [1046, 845], [1047, 845], [1047, 840], [1048, 840], [1048, 839]]}, "center": {"56-165, T:0-1": [1051, 844]}},
+{"id": "txphxw", "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"]}, "path": {"91-165, T:0-1": [[1048, 838], [1046, 840], [1046, 844], [1045, 845], [1045, 852], [1055, 852], [1055, 848], [1056, 847], [1056, 840], [1057, 839], [1055, 837], [1049, 837]]}, "center": {"91-165, T:0-1": [1051, 845]}},
{"id": "txphfg", "name": "RISE", "description": "In-development Russian language Grand Theft Auto role-play server on the alt:V Multiplayer platform.", "links": {"website": ["https://riserp.net/"]}, "path": {"109-166, T:0-1": [[1040, 1742], [1068, 1742], [1068, 1756], [1064, 1756], [1063, 1753], [1063, 1750], [1040, 1750]]}, "center": {"109-166, T:0-1": [1055, 1747]}},
{"id": "txphe2", "name": "Half-Life 2: 21st Century Humor Edition", "description": "Half-Life: 21st Century Humor Edition is an upcoming mod for Half-Life 2 that is full of memes, jokes, and random minigames. The mod has received millions of views on YouTube, with the most notable being a video of the Citadel (a large and tall structure is in Half Life 2) blasting Caramelldansen.\n\nThe project to put it on r/place faced complete failure twice. The first attempt trying to place the logo to the right of 2b2t where r/GreenLattice used to be. The second attempt failed due to botched negotiations with a neighbor. It finally found a secure space with the second expansion of r/place.\n\nIt faced many hardships, but managed to survive until the end of r/place. Its allies included the San Jose Sharks, Rammenstien, Foxhole, CTK+ Alliance, and many more.", "links": {"website": ["https://www.youtube.com/channel/UCvyVX9_sfi8vuFZFqAON2gA/videos"]}, "path": {"109-165, T:0-1": [[674, 1564], [660, 1564], [654, 1570], [654, 1577], [658, 1582], [660, 1583], [667, 1583], [670, 1581], [672, 1579], [672, 1578], [673, 1577], [673, 1574], [674, 1573]]}, "center": {"109-165, T:0-1": [664, 1573]}},
{"id": "txpgdz", "name": "Order 332", "description": "The main hub of The Order, a private collective of groups dedicated to computer science and related studies", "links": {"website": ["https://www.order332.com"]}, "path": {"109-166, T:0-1": [[1499, 1429], [1499, 1435], [1508, 1435], [1508, 1429]]}, "center": {"109-166, T:0-1": [1504, 1432]}},
@@ -5221,7 +5210,7 @@
{"id": "txpbzt", "name": "Mermaid's Pendant", "description": "A representation of a Mermaid's Pendant, which is used to propose marriage in the game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Mermaid%27s_Pendant"], "subreddit": ["StardewValley"]}, "path": {"109-166, T:0-1": [[1708, 1064], [1708, 1081], [1728, 1081], [1728, 1064]]}, "center": {"109-166, T:0-1": [1718, 1073]}},
{"id": "txpbxx", "name": "HUMPHREY", "description": "HUMPHREY is a character in the video game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HUMPHREY"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"118-165, T:0-1": [[964, 802], [964, 814], [965, 815], [965, 817], [969, 821], [978, 821], [982, 817], [983, 813], [983, 802]]}, "center": {"118-165, T:0-1": [974, 811]}},
{"id": "txpbm6", "name": "Inform", "description": "Famous collective of elite Osnabrooklyn-based computer science students.", "links": {}, "path": {"155-165, T:0-1": [[87, 88], [87, 94], [108, 94], [108, 88]]}, "center": {"155-165, T:0-1": [98, 91]}},
-{"id": "txpa9l", "name": "OMOLI", "description": "Character of the video game OMORI", "links": {"website": ["https://omori.fandom.com/wiki/OMOLI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"56-165, T:0-1": [[1108, 804], [1110, 804], [1110, 805], [1115, 805], [1115, 806], [1114, 806], [1114, 807], [1109, 807], [1109, 808], [1108, 808], [1108, 809], [1107, 809], [1107, 813], [1110, 813], [1110, 814], [1112, 814], [1112, 812], [1112, 813], [1113, 813], [1113, 814], [1114, 814], [1113, 814], [1113, 816], [1114, 816], [1114, 817], [1115, 817], [1115, 824], [1119, 824], [1119, 827], [1113, 827], [1113, 826], [1105, 826], [1105, 827], [1100, 827], [1100, 824], [1103, 824], [1103, 822], [1102, 822], [1102, 818], [1103, 818], [1103, 816], [1104, 816], [1104, 815], [1105, 815], [1105, 814], [1106, 814], [1106, 813], [1107, 813], [1107, 809], [1108, 809], [1108, 808], [1109, 808], [1109, 806], [1108, 806]]}, "center": {"56-165, T:0-1": [1109, 820]}},
+{"id": "txpa9l", "name": "OMOLI", "description": "OMOLI is a character in the video game OMORI who resembles a combination of the SPROUT MOLE creature and the character OMORI.\n\nThis art was originally a regular SPROUT MOLE before being replaced with OMOLI.", "links": {"website": ["https://omori.fandom.com/wiki/OMOLI"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"151-165, T:0-1": [[1107, 803], [1107, 808], [1106, 809], [1106, 812], [1102, 816], [1101, 818], [1101, 823], [1099, 823], [1099, 828], [1106, 828], [1106, 827], [1112, 827], [1112, 828], [1120, 828], [1120, 823], [1116, 823], [1116, 817], [1115, 816], [1115, 813], [1113, 813], [1113, 811], [1111, 811], [1111, 812], [1108, 812], [1108, 810], [1110, 808], [1114, 808], [1116, 806], [1116, 804], [1111, 804], [1111, 803]]}, "center": {"151-165, T:0-1": [1109, 820]}},
{"id": "txp8u0", "name": "Pufferfish", "description": "A small image of one of the many possible fish that can be caught in the game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Pufferfish"], "subreddit": ["StardewValley"]}, "path": {"109-166, T:0-1": [[1729, 1064], [1729, 1081], [1749, 1082], [1749, 1064]]}, "center": {"109-166, T:0-1": [1739, 1073]}},
{"id": "txp76h", "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/en/"]}, "path": {"158": [[1657, 766], [1657, 782], [1689, 782], [1689, 766]], "159-164": [[1625, 766], [1625, 782], [1657, 782], [1657, 766]], "144-157, T:0-1": [[1664, 782], [1664, 798], [1696, 798], [1696, 782]]}, "center": {"158": [1673, 774], "159-164": [1641, 774], "144-157, T:0-1": [1680, 790]}},
{"id": "txp6y6", "name": "Leafling", "description": "A leafling is a mascot character from Twitch streamer and YouTuber 5up's emotes and branding.\n\nThis art piece originated from 5up's sub-Twitter and offline chat, and it was his community's first contribution to r/place. This piece evolved from an original design by @Heevanington on Twitter.", "links": {"website": ["https://twitch.tv/5uppp", "https://www.youtube.com/channel/UC_ZguPA4uCaQ8Q3Q8IK-HfQ"], "subreddit": ["5up"]}, "path": {"15-166, T:0-1": [[0, 621], [0, 642], [10, 642], [10, 621]]}, "center": {"15-166, T:0-1": [5, 632]}},
@@ -5241,7 +5230,7 @@
{"id": "txovol", "name": "Hyakanime", "description": "Short name of Hyakanime, a French website used to track anime progression.", "links": {"website": ["https://hyakanime.fr/"]}, "path": {"109-166, T:0-1": [[1498, 1569], [1498, 1585], [1502, 1585], [1502, 1569]]}, "center": {"109-166, T:0-1": [1500, 1577]}},
{"id": "txouzx", "name": "Celtic Knot", "description": "Originally the Celtic Knot was there only to be outnumbered by a Yoshi. Here's what remains of the knot.", "links": {"subreddit": ["mabinogi"]}, "path": {"109-165, T:0-1": [[1017, 1657], [1017, 1665], [1025, 1665], [1025, 1657]]}, "center": {"109-165, T:0-1": [1021, 1661]}},
{"id": "txoubd", "name": "Soy_Fray", "description": "The 'F' represents Twitch streamer Soy_Fray. Press 'F' to pay respects.", "links": {"website": ["https://www.twitch.tv/soy_fray"], "subreddit": ["fray"]}, "path": {"109-166, T:0-1": [[1058, 1813], [1058, 1817], [1062, 1817], [1062, 1813]]}, "center": {"109-166, T:0-1": [1060, 1815]}},
-{"id": "txou0b", "name": "r/fuckcars highway", "description": "Much like the stroads (street-road hybrids) that cover the majority of suburban North America, the r/fuckcars highway at one point spread across much of r/place, connecting communities in perhaps one of the least efficient and most disruptive methods possible. The green lines bordering some of the highway are meant to represent protected bike lanes.\n\nHowever, unlike real-world stroads, the r/fuckcars highway was eventually reduced to a smaller area. The road made collaborative pieces with many communities, including France (Arc de Triomphe and Notre Dame), Argentina (Obelisco de Buenos Aires), Brazil (Maracanã Stadium), Germany (Autobahn), TeosGame, and others.", "links": {"website": ["https://en.wikipedia.org/wiki/Highway"], "subreddit": ["fuckcars", "argentina", "brasil", "dankargentin", "france", "franceplace", "placeDE", "de", "germany", "placeFR", "placefrance", "Republica_Argentina"], "discord": ["w84VM2fbGs", "placeDE"]}, "path": {"143-164": [[905, 714], [1117, 714], [1117, 709], [1123, 705], [1123, 695], [1123, 646], [1123, 606], [1118, 606], [1111, 601], [1108, 597], [1108, 588], [1111, 583], [1117, 579], [1132, 579], [1137, 567], [1141, 567], [1141, 572], [1136, 580], [1141, 586], [1144, 590], [1144, 597], [1140, 602], [1135, 606], [1129, 606], [1129, 647], [1123, 647], [1123, 695], [1129, 695], [1129, 702], [1135, 704], [1135, 709], [1137, 711], [1137, 718], [1129, 730], [1129, 869], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1136], [1110, 1155], [1109, 1157], [1109, 1180], [1099, 1180], [1099, 1149], [1116, 1132], [1116, 1051], [1084, 1051], [1031, 1104], [1040, 1111], [1040, 1125], [1031, 1132], [1024, 1135], [1024, 1170], [1015, 1170], [1015, 1136], [1011, 1132], [1008, 1132], [999, 1123], [1001, 1112], [1016, 1100], [1024, 1096], [1081, 1038], [1116, 1038], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1003], [1129, 876], [1119, 876], [1116, 873], [1116, 843], [1119, 837], [1123, 832], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 735], [905, 735]], "T:0-1": [[905, 714], [1117, 714], [1117, 709], [1123, 705], [1123, 695], [1123, 646], [1123, 606], [1118, 606], [1111, 601], [1108, 597], [1108, 588], [1111, 583], [1117, 579], [1132, 579], [1137, 567], [1141, 567], [1141, 572], [1136, 580], [1141, 586], [1144, 590], [1144, 597], [1140, 602], [1135, 606], [1129, 606], [1129, 647], [1123, 647], [1123, 695], [1129, 695], [1129, 702], [1135, 704], [1135, 709], [1137, 711], [1137, 718], [1129, 730], [1129, 869], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1136], [1110, 1155], [1109, 1157], [1109, 1180], [1099, 1180], [1099, 1149], [1116, 1132], [1116, 1113], [1129, 1113], [1129, 1100], [1116, 1100], [1116, 1074], [1120, 1067], [1126, 1067], [1129, 1074], [1129, 1053], [1126, 1050], [1119, 1050], [1118, 1051], [1084, 1051], [1031, 1104], [1042, 1114], [1042, 1124], [1038, 1130], [1027, 1136], [1023, 1137], [1015, 1137], [1010, 1136], [1001, 1130], [998, 1121], [998, 1112], [1010, 1102], [1022, 1098], [1081, 1038], [1116, 1038], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1002], [1129, 870], [1119, 870], [1116, 867], [1116, 843], [1118, 840], [1118, 834], [1123, 830], [1123, 733], [1110, 721], [917, 721], [917, 800], [909, 800], [909, 735], [905, 735]], "109-142": [[1123, 831], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1135], [1109, 1156], [1109, 1247], [1130, 1265], [1130, 1270], [1132, 1271], [1167, 1271], [1172, 1275], [1172, 1279], [1130, 1279], [1130, 1287], [1131, 1288], [1131, 1363], [1166, 1363], [1166, 1611], [1164, 1611], [1164, 1688], [1332, 1688], [1332, 1758], [1325, 1758], [1325, 1696], [1164, 1695], [1164, 1974], [1176, 1974], [1176, 2000], [1173, 2000], [1173, 1981], [1172, 1980], [1156, 1980], [1155, 1371], [1116, 1371], [1116, 1279], [1099, 1262], [1099, 1149], [1114, 1134], [1114, 1125], [1042, 1124], [1024, 1133], [1024, 1169], [1029, 1171], [1099, 1171], [1099, 1176], [904, 1176], [900, 1173], [818, 1173], [823, 1169], [829, 1167], [865, 1167], [866, 1166], [894, 1166], [902, 1167], [905, 1170], [1016, 1170], [1015, 1135], [1004, 1129], [993, 1122], [902, 1123], [902, 1115], [995, 1115], [1016, 1101], [1022, 1098], [1083, 1038], [1116, 1038], [1116, 1051], [1084, 1051], [1032, 1103], [1032, 1104], [1042, 1114], [1116, 1114], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1002], [1129, 876], [1116, 876], [1116, 839]], "85-100": [[1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 802], [1123, 802]], "56-84": [[1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1134, 713], [1193, 713], [1193, 619], [1252, 619], [1252, 569], [1258, 563], [1258, 559], [1252, 553], [1252, 543], [1260, 543], [1260, 546], [1322, 546], [1322, 552], [1260, 552], [1260, 575], [1252, 587], [1252, 595], [1260, 607], [1260, 627], [1200, 627], [1200, 721], [1138, 721], [1129, 731], [1129, 822], [1125, 830], [1125, 867], [1129, 871], [1129, 880], [1225, 880], [1225, 898], [1221, 902], [1205, 902], [1205, 905], [1219, 923], [1231, 923], [1231, 927], [1216, 927], [1199, 910], [1199, 901], [1202, 898], [1220, 898], [1220, 886], [1015, 886], [1015, 898], [1009, 898], [1009, 880], [1123, 880], [1123, 875], [1114, 869], [1114, 834], [1123, 822], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1143, 564], [1143, 509], [1161, 509], [1161, 312], [1167, 312], [1167, 399], [1199, 399], [1199, 363], [1251, 312], [1259, 312], [1205, 367], [1205, 398], [1316, 398], [1316, 312], [1322, 312], [1395, 313], [1395, 254], [1400, 254], [1400, 313], [1447, 313], [1447, 330], [1441, 330], [1441, 318], [1322, 318], [1322, 404], [1223, 404], [1223, 403], [1180, 403], [1179, 404], [1167, 404], [1167, 509], [1149, 509], [1149, 567], [1145, 567]], "101-108": [[1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 875], [1126, 878], [1119, 878], [1116, 875], [1116, 828], [1123, 818]], "24-55": [[905, 713], [905, 722], [908, 722], [908, 796], [916, 796], [916, 721], [1000, 721], [1000, 714], [919, 714], [919, 713]]}, "center": {"143-164": [1021, 1118], "T:0-1": [1019, 1119], "109-142": [1022, 1116], "85-100": [1123, 592], "56-84": [1126, 593], "101-108": [1123, 592], "24-55": [912, 718]}},
+{"id": "txou0b", "name": "r/fuckcars highway", "description": "Much like the stroads (street-road hybrids) that cover the majority of suburban North America, the r/fuckcars highway at one point spread across much of r/place, connecting communities in perhaps one of the least efficient and most disruptive methods possible. The green lines bordering some of the highway are meant to represent protected bike lanes.\n\nHowever, unlike real-world stroads, the r/fuckcars highway was eventually reduced to a smaller area. The road made collaborative pieces with many communities, including France (Arc de Triomphe and Notre Dame), Argentina (Obelisco de Buenos Aires), Brazil (Maracanã Stadium), Germany (Autobahn), TeosGame, and others.", "links": {"website": ["https://en.wikipedia.org/wiki/Highway"], "subreddit": ["fuckcars"]}, "path": {"143-164": [[905, 714], [1117, 714], [1117, 709], [1123, 705], [1123, 695], [1123, 646], [1123, 606], [1118, 606], [1111, 601], [1108, 597], [1108, 588], [1111, 583], [1117, 579], [1132, 579], [1137, 567], [1141, 567], [1141, 572], [1136, 580], [1141, 586], [1144, 590], [1144, 597], [1140, 602], [1135, 606], [1129, 606], [1129, 647], [1123, 647], [1123, 695], [1129, 695], [1129, 702], [1135, 704], [1135, 709], [1137, 711], [1137, 718], [1129, 730], [1129, 869], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1136], [1110, 1155], [1109, 1157], [1109, 1180], [1099, 1180], [1099, 1149], [1116, 1132], [1116, 1051], [1084, 1051], [1031, 1104], [1040, 1111], [1040, 1125], [1031, 1132], [1024, 1135], [1024, 1170], [1015, 1170], [1015, 1136], [1011, 1132], [1008, 1132], [999, 1123], [1001, 1112], [1016, 1100], [1024, 1096], [1081, 1038], [1116, 1038], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1003], [1129, 876], [1119, 876], [1116, 873], [1116, 843], [1119, 837], [1123, 832], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 735], [905, 735]], "T:0-1": [[905, 714], [1117, 714], [1117, 709], [1123, 705], [1123, 695], [1123, 646], [1123, 606], [1118, 606], [1111, 601], [1108, 597], [1108, 588], [1111, 583], [1117, 579], [1132, 579], [1137, 567], [1141, 567], [1141, 572], [1136, 580], [1141, 586], [1144, 590], [1144, 597], [1140, 602], [1135, 606], [1129, 606], [1129, 647], [1123, 647], [1123, 695], [1129, 695], [1129, 702], [1135, 704], [1135, 709], [1137, 711], [1137, 718], [1129, 730], [1129, 869], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1136], [1110, 1155], [1109, 1157], [1109, 1180], [1099, 1180], [1099, 1149], [1116, 1132], [1116, 1113], [1129, 1113], [1129, 1100], [1116, 1100], [1116, 1074], [1120, 1067], [1126, 1067], [1129, 1074], [1129, 1053], [1126, 1050], [1119, 1050], [1118, 1051], [1084, 1051], [1031, 1104], [1042, 1114], [1042, 1124], [1038, 1130], [1027, 1136], [1023, 1137], [1015, 1137], [1010, 1136], [1001, 1130], [998, 1121], [998, 1112], [1010, 1102], [1022, 1098], [1081, 1038], [1116, 1038], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1002], [1129, 870], [1119, 870], [1116, 867], [1116, 843], [1118, 840], [1118, 834], [1123, 830], [1123, 733], [1110, 721], [917, 721], [917, 800], [909, 800], [909, 735], [905, 735]], "109-142": [[1123, 831], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 1002], [1130, 1003], [1130, 1009], [1129, 1010], [1129, 1135], [1109, 1156], [1109, 1247], [1130, 1265], [1130, 1270], [1132, 1271], [1167, 1271], [1172, 1275], [1172, 1279], [1130, 1279], [1130, 1287], [1131, 1288], [1131, 1363], [1166, 1363], [1166, 1611], [1164, 1611], [1164, 1688], [1332, 1688], [1332, 1758], [1325, 1758], [1325, 1696], [1164, 1695], [1164, 1974], [1176, 1974], [1176, 2000], [1173, 2000], [1173, 1981], [1172, 1980], [1156, 1980], [1155, 1371], [1116, 1371], [1116, 1279], [1099, 1262], [1099, 1149], [1114, 1134], [1114, 1125], [1042, 1124], [1024, 1133], [1024, 1169], [1029, 1171], [1099, 1171], [1099, 1176], [904, 1176], [900, 1173], [818, 1173], [823, 1169], [829, 1167], [865, 1167], [866, 1166], [894, 1166], [902, 1167], [905, 1170], [1016, 1170], [1015, 1135], [1004, 1129], [993, 1122], [902, 1123], [902, 1115], [995, 1115], [1016, 1101], [1022, 1098], [1083, 1038], [1116, 1038], [1116, 1051], [1084, 1051], [1032, 1103], [1032, 1104], [1042, 1114], [1116, 1114], [1116, 1010], [1115, 1009], [1115, 1003], [1118, 1000], [1127, 1000], [1129, 1002], [1129, 876], [1116, 876], [1116, 839]], "85-100": [[1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 802], [1123, 802]], "56-84": [[1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1134, 713], [1193, 713], [1193, 619], [1252, 619], [1252, 569], [1258, 563], [1258, 559], [1252, 553], [1252, 543], [1260, 543], [1260, 546], [1322, 546], [1322, 552], [1260, 552], [1260, 575], [1252, 587], [1252, 595], [1260, 607], [1260, 627], [1200, 627], [1200, 721], [1138, 721], [1129, 731], [1129, 822], [1125, 830], [1125, 867], [1129, 871], [1129, 880], [1225, 880], [1225, 898], [1221, 902], [1205, 902], [1205, 905], [1219, 923], [1231, 923], [1231, 927], [1216, 927], [1199, 910], [1199, 901], [1202, 898], [1220, 898], [1220, 886], [1015, 886], [1015, 898], [1009, 898], [1009, 880], [1123, 880], [1123, 875], [1114, 869], [1114, 834], [1123, 822], [1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1143, 564], [1143, 509], [1161, 509], [1161, 312], [1167, 312], [1167, 399], [1199, 399], [1199, 363], [1251, 312], [1259, 312], [1205, 367], [1205, 398], [1316, 398], [1316, 312], [1322, 312], [1395, 313], [1395, 254], [1400, 254], [1400, 313], [1447, 313], [1447, 330], [1441, 330], [1441, 318], [1322, 318], [1322, 404], [1223, 404], [1223, 403], [1180, 403], [1179, 404], [1167, 404], [1167, 509], [1149, 509], [1149, 567], [1145, 567]], "101-108": [[1123, 733], [1111, 721], [917, 721], [917, 800], [909, 800], [909, 714], [1116, 714], [1118, 716], [1118, 722], [1123, 724], [1129, 724], [1133, 719], [1134, 716], [1134, 709], [1129, 702], [1123, 702], [1123, 665], [1121, 665], [1117, 661], [1117, 650], [1121, 647], [1123, 647], [1123, 606], [1117, 606], [1112, 602], [1108, 596], [1108, 588], [1117, 579], [1129, 579], [1135, 572], [1135, 567], [1141, 567], [1141, 573], [1136, 578], [1136, 579], [1144, 589], [1144, 597], [1135, 606], [1129, 606], [1129, 647], [1131, 647], [1135, 650], [1135, 662], [1132, 665], [1129, 665], [1129, 702], [1134, 710], [1137, 710], [1137, 723], [1129, 729], [1129, 875], [1126, 878], [1119, 878], [1116, 875], [1116, 828], [1123, 818]], "24-55": [[905, 713], [905, 722], [908, 722], [908, 796], [916, 796], [916, 721], [1000, 721], [1000, 714], [919, 714], [919, 713]]}, "center": {"143-164": [1021, 1118], "T:0-1": [1019, 1119], "109-142": [1022, 1116], "85-100": [1123, 592], "56-84": [1126, 593], "101-108": [1123, 592], "24-55": [912, 718]}},
{"id": "txot2g", "name": "Swift", "description": "An image of Twitch streamer QTCinderella's dog Swift.", "links": {"website": ["https://www.twitch.tv/qtcinderella"], "subreddit": ["QTCinderella"]}, "path": {"117-166, T:0-1": [[1807, 224], [1807, 237], [1813, 238], [1815, 238], [1815, 237], [1817, 237], [1817, 236], [1818, 236], [1818, 235], [1819, 235], [1819, 234], [1820, 234], [1820, 232], [1821, 232], [1821, 231], [1822, 231], [1822, 230], [1823, 230], [1823, 226], [1822, 226], [1822, 225], [1821, 225], [1821, 224], [1820, 224], [1820, 223], [1819, 223], [1818, 223], [1818, 222], [1816, 222], [1816, 221], [1811, 221], [1811, 222], [1809, 222], [1809, 223], [1808, 223]]}, "center": {"117-166, T:0-1": [1814, 229]}},
{"id": "txorn3", "name": "Flag of Bosnia and Herzegovina", "description": "Bosnia and Herzegovina (BiH) is a country in Southern Europe. This flag of BiH includes the Stari Most, Bosanski Ljiljan, Vučko, and a memorial for the victim of the Srebrenica genocide.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih", "bosnia"]}, "path": {"48": [[321, 743], [321, 780], [373, 780], [373, 743], [363, 743], [363, 735], [352, 735], [352, 743]], "6-44": [[321, 743], [321, 780], [373, 780], [373, 751], [363, 751], [363, 743]], "1-4": [[115, 897], [115, 913], [133, 913], [133, 897]], "77-78, 80-82": [[321, 743], [321, 780], [373, 780], [373, 743]], "45-46, 49-76, 79, 83-166, T:0-1": [[321, 743], [321, 780], [373, 780], [373, 740], [363, 740], [363, 743]]}, "center": {"48": [343, 761], "6-44": [347, 762], "1-4": [124, 905], "77-78, 80-82": [347, 762], "45-46, 49-76, 79, 83-166, T:0-1": [348, 762]}},
{"id": "txorab", "name": "AEIOU", "description": "A small contribution by the Austrian meme sub r/aeiou supported by the sub r/Austria and r/okoidawappler. It states the motto of the von Habsburg Dynasty, which could stand for: Austria erit in orbe ultima (Austria will be supreme in the world) or Aller Erdreich ist Österreich untertan (The whole earth is subject to Austria), on top of the Austrian flag.", "links": {"subreddit": ["aeiou", "Austria", "okoidawappler"]}, "path": {"109-164, T:0-1": [[251, 1887], [259, 1887], [259, 1861], [251, 1861]]}, "center": {"109-164, T:0-1": [255, 1874]}},
@@ -5257,7 +5246,6 @@
{"id": "txvg13", "name": "Artberry", "description": "Artberry is a Ukrainian based agricultural holding, That focuses on growing blueberries, sweet cherries, blackberries and raspberries. The berry at the top is the logo, followed by the Ukrainian flag in the middle, followed by the word Art rotated 90º clockwise also in Ukrainian flag colours.", "links": {"website": ["https://www.instagram.com/artberry.ua/?hl=en"]}, "path": {"109-165, T:0-1": [[347, 1600], [352, 1600], [352, 1622], [347, 1622]]}, "center": {"109-165, T:0-1": [350, 1611]}},
{"id": "txvfqv", "name": "Overwatch Retribution", "description": "1836 is a score checkpoint used by score-runners in the first section of the Overwatch Archives player-vs.-enemy (PvE) mission Retribution. It relies heavily on randomness, becoming infamous in the PvE community for its heavy run-resetting nature.", "links": {"website": ["https://overwatch.fandom.com/wiki/Overwatch_Retribution"], "subreddit": ["Overwatch"], "discord": ["jEj8QdN"]}, "path": {"63-76, 94-166, T:0-1": [[694, 269], [694, 275], [715, 275], [715, 269]]}, "center": {"63-76, 94-166, T:0-1": [705, 272]}},
{"id": "txvfhb", "name": "The Bible (Book)", "description": "A depiction of the Bible which is a collection of religious texts important for Christianity, Judaism and other faiths.", "links": {"subreddit": ["Christianity"]}, "path": {"109-166, T:0-1": [[634, 1719], [640, 1719], [640, 1730], [634, 1730]]}, "center": {"109-166, T:0-1": [637, 1725]}},
-{"id": "txvf9p", "name": "Our Flag Means Death", "description": "Made by the fandom reddit for Our Flag Means Death, new show in HBO based on Blackbeard´s pirate flag", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"56-166, T:0-1": [[1900, 893], [1900, 917], [1921, 917], [1921, 892], [1900, 892]]}, "center": {"56-166, T:0-1": [1911, 905]}},
{"id": "txve99", "name": "flapin", "description": "6x6 representation of a flaming bunny created and maintained by naskial", "links": {}, "path": {"144-164, T:0-1": [[0, 1012], [7, 1012], [7, 1019], [0, 1019]]}, "center": {"144-164, T:0-1": [4, 1016]}},
{"id": "txvcm4", "name": "mura_vr", "description": "Blue-haired, funny, dorky, boobtastic streamer!", "links": {"website": ["https://twitch.tv/mura_vr"]}, "path": {"109-165, T:0-1": [[609, 1054], [609, 1061], [617, 1061], [617, 1054]]}, "center": {"109-165, T:0-1": [613, 1058]}},
{"id": "txvap2", "name": "Garrus Vakarian", "description": "Garrus is a beloved companion in the Mass Effect franchise, and is long considered the players closest ally.", "links": {"website": ["https://en.wikipedia.org/wiki/Garrus_Vakarian"], "subreddit": ["MassEffect"]}, "path": {"109-165, T:0-1": [[831, 1010], [839, 1010], [839, 1017], [831, 1017]]}, "center": {"109-165, T:0-1": [835, 1014]}},
@@ -5282,7 +5270,7 @@
{"id": "txup8z", "name": "Kolashampan", "description": "A very popular soda from El Salvador", "links": {"subreddit": ["ElSalvador"]}, "path": {"109-165, T:0-1": [[1076, 1390], [1081, 1390], [1082, 1389], [1082, 1383], [1081, 1383], [1081, 1380], [1077, 1380], [1077, 1383], [1076, 1382], [1076, 1388], [1076, 1389], [1076, 1383], [1076, 1388], [1076, 1384], [1076, 1388], [1076, 1389], [1078, 1379], [1079, 1379], [1080, 1379], [1079, 1378]]}, "center": {"109-165, T:0-1": [1079, 1385]}},
{"id": "txup2n", "name": "Ten Words of Wisdom", "description": "Ten Words of Wisdom (TWOW) is an online creative writing competition first created in the form of a YouTube camp made by carykh (depicted as a yellow stickman). The anthropomorphic books represent the player avatars. Since the series's first episode in 2015, hundreds of miniTWOWs have started on Discord.", "links": {"website": ["https://ten-words-of-wisdom.fandom.com/wiki/Ten_Words_of_Wisdom"], "subreddit": ["tenwordsofwisdom"]}, "path": {"109-166, T:0-1": [[1395, 1322], [1432, 1322], [1432, 1337], [1395, 1337]]}, "center": {"109-166, T:0-1": [1414, 1330]}},
{"id": "txuozu", "name": "/r/animepiracy Discord link", "description": "The discord link for the r/animepiracy Discord that was created within the last hour.", "links": {"website": ["https://piracy.moe/"], "subreddit": ["animepiracy"]}, "path": {"109-166, T:0-1": [[1521, 1999], [1482, 1999], [1482, 1994], [1521, 1994]]}, "center": {"109-166, T:0-1": [1502, 1997]}},
-{"id": "txun4q", "name": "Argentine cockade", "description": "The Argentine cockade (Spanish: escarapela) was an identifying insignia used during the Revolución de Mayo in Argentina, the start of Argentina's fight for independence from Spain. Nowadays, it is used in schools as a national pride symbol during the month of May and on National Flag Day.", "links": {"website": ["https://en.wikipedia.org/wiki/Cockade_of_Argentina"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"77-83": [[1256, 663], [1254, 665], [1254, 667], [1260, 667], [1260, 665], [1258, 663]], "84-164, T:0-1": [[1256, 663], [1254, 665], [1254, 667], [1256, 669], [1258, 669], [1260, 667], [1260, 665], [1258, 663]]}, "center": {"77-83": [1257, 665], "84-164, T:0-1": [1257, 666]}},
+{"id": "txun4q", "name": "Argentine cockade", "description": "The Argentine cockade (Spanish: escarapela) was an identifying insignia used during the Revolución de Mayo in Argentina, the start of Argentina's fight for independence from Spain. Nowadays, it is used in schools as a national pride symbol during the month of May and on National Flag Day.", "links": {"website": ["https://en.wikipedia.org/wiki/Cockade_of_Argentina"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"77-83": [[1256, 663], [1254, 665], [1254, 667], [1260, 667], [1260, 665], [1258, 663]], "84-164, T:0-1": [[1256, 663], [1254, 665], [1254, 667], [1256, 669], [1258, 669], [1260, 667], [1260, 665], [1258, 663]]}, "center": {"77-83": [1257, 665], "84-164, T:0-1": [1257, 666]}},
{"id": "txumz5", "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": {"81-166, T:0-1": [[233, 556], [229, 563], [229, 569], [232, 569], [232, 579], [241, 579], [249, 571], [246, 568], [245, 568], [245, 565], [242, 559], [238, 556]]}, "center": {"81-166, T:0-1": [237, 564]}},
{"id": "txulkx", "name": "Red 3.47", "description": "3.47 seconds is the world record time for solving a 3x3x3 Rubik's Cube, achieved by Yusheng Du. His first step for solving the cube was making a red cross. Most cubers solve it with a white cross first for consistency, but Yusheng Du saw that a red cross could make the next step faster.", "links": {"subreddit": ["Cubers"]}, "path": {"148-158": [[1412, 503], [1412, 509], [1425, 509], [1425, 503]], "94-127": [[1418, 503], [1418, 509], [1432, 509], [1432, 503]], "159-166, T:0-1": [[1412, 502], [1425, 502], [1425, 509], [1412, 509]]}, "center": {"148-158": [1419, 506], "94-127": [1425, 506], "159-166, T:0-1": [1419, 506]}},
{"id": "txuhyh", "name": "Lua", "description": "Lua is a lightweight, high-level, multi-paradigm programming language designed primarily for embedded use in applications.", "links": {"subreddit": ["lua"]}, "path": {"109-165, T:0-1": [[373, 1828], [373, 1836], [391, 1835], [390, 1828]]}, "center": {"109-165, T:0-1": [382, 1832]}},
@@ -5303,9 +5291,9 @@
{"id": "txttbf", "name": "Muse", "description": "A little horizontal stripe dedicated to the British rock band Muse, showing their logo on the left. Next to the logo are pixel art renditions of their mainstream albums in chronological order. From left to right: Showbiz (1999), Origin of Symmetry (2001), Absolution (2003), Black Holes and Revelations (2006), The Resistance (2009), The 2nd Law (2012), Drones (2015), Simulation Theory (2018), Will Of The People (2022).", "links": {"website": ["https://muse.mu/", "https://en.wikipedia.org/wiki/Muse_(band)"], "subreddit": ["Muse"]}, "path": {"16-164, T:0-1": [[-1, 55], [-1, 63], [86, 61], [86, 54]]}, "center": {"16-164, T:0-1": [13, 59]}},
{"id": "txtsvn", "name": "TG4", "description": "A French high school class from the Lycée Charles-de-Gaulle de Poissy which wanted to be part of r/place. VIVE LES TG4!", "links": {"website": ["http://www.lyc-cdg-poissy.ac-versailles.fr/"]}, "path": {"138-153": [[144, 165], [144, 170], [156, 170], [156, 165]], "154-165, T:0-1": [[139, 165], [139, 170], [151, 170], [151, 165]]}, "center": {"138-153": [150, 168], "154-165, T:0-1": [145, 168]}},
{"id": "txtsut", "name": "Small duck", "description": "Just a small chilling duck with a small flower next to it.", "links": {"website": ["https://en.wikipedia.org/wiki/Duck"]}, "path": {"109-167, T:0-1": [[1950, 1364], [1950, 1373], [1961, 1373], [1961, 1364], [1952, 1364]]}, "center": {"109-167, T:0-1": [1956, 1369]}},
-{"id": "txtqfh", "name": "Kaladin Stormblessed", "description": "Kaladin is a character from the Stormlight Archive series. His spren Sylphrena can be seen to his top-left.", "links": {"website": ["https://coppermind.net/wiki/Kaladin"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1855, 887], [1856, 903], [1869, 903], [1869, 887]]}, "center": {"56-166, T:0-1": [1862, 895]}},
+{"id": "txtqfh", "name": "Kaladin Stormblessed", "description": "Kaladin Stormblessed is a character from the book series The Stormlight Archive series. His spren Sylphrena can be seen to his top-left.", "links": {"website": ["https://coppermind.net/wiki/Kaladin"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"104-166, T:0-1": [[1861, 886], [1859, 888], [1859, 890], [1858, 891], [1858, 893], [1857, 894], [1857, 896], [1863, 902], [1865, 902], [1865, 903], [1867, 903], [1867, 887], [1864, 887], [1863, 886]]}, "center": {"104-166, T:0-1": [1862, 894]}},
{"id": "txtq8a", "name": "beskardboard", "description": "This is Reddit user beskardboard's profile picture and face and from the game Minecraft. It was made and maintained by a small team of friends on the final day.", "links": {"website": ["https://www.reddit.com/user/beskardboard"], "subreddit": ["beskardboard_hideout"]}, "path": {"150-165": [[825, 515], [831, 515], [831, 521], [825, 521]]}, "center": {"150-165": [828, 518]}},
-{"id": "txtod0", "name": "Shallan", "description": "Shallan is one of the main characters from the Stormlight Archive series. Her spren Pattern can be seen at her top-right.", "links": {"website": ["https://coppermind.net/wiki/Shallan_Davar"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1831, 901], [1830, 888], [1842, 887], [1842, 901]]}, "center": {"56-166, T:0-1": [1836, 894]}},
+{"id": "txtod0", "name": "Shallan Davar", "description": "Shallan Davar is one of the main characters from the book series The Stormlight Archive. Her spren Pattern can be seen at her top-right.", "links": {"website": ["https://coppermind.net/wiki/Shallan_Davar"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"104-166, T:0-1": [[1835, 886], [1832, 890], [1832, 891], [1830, 891], [1830, 894], [1832, 897], [1833, 897], [1833, 901], [1836, 901], [1841, 896], [1841, 894], [1840, 893], [1840, 889], [1837, 886]]}, "center": {"104-166, T:0-1": [1836, 893]}},
{"id": "txto7p", "name": "Polymars", "description": "Drawing in honour of the famous developer and YouTuber \"PolyMars\".", "links": {"website": ["https://www.youtube.com/c/PolyMars/"]}, "path": {"109-165, T:0-1": [[1099, 1232], [1112, 1232], [1112, 1242], [1099, 1242]]}, "center": {"109-165, T:0-1": [1106, 1237]}},
{"id": "txtlmv", "name": "Kamishiro Taishi", "description": "A professional translator and Virtual YouTuber (VTuber) who frequently translates Japanese VTuber live streams in real time for the English-speaking audience. Widely considered an influential figure in connecting the Japanese VTuber scene with the global audience.", "links": {"website": ["https://www.youtube.com/c/TaishiCh%E7%A5%9E%E4%BB%A3%E5%A4%A7%E4%BD%BF"], "subreddit": ["VirtualYoutubers"]}, "path": {"109-166, T:0-1": [[1465, 1074], [1473, 1074], [1473, 1083], [1465, 1083]]}, "center": {"109-166, T:0-1": [1469, 1079]}},
{"id": "txtkvg", "name": "University of Twente", "description": "The University of Twente is a university located in Enschede in the east of the Netherlands. It is one of the three Dutch technical universities.", "links": {"website": ["https://www.utwente.nl/", "https://en.wikipedia.org/wiki/University_of_Twente"], "subreddit": ["UniversityofTwente", "PlaceNL", "thenetherlands"]}, "path": {"107-165, T:0-1": [[1937, 36], [1937, 52], [1945, 52], [1945, 36]]}, "center": {"107-165, T:0-1": [1941, 44]}},
@@ -5322,9 +5310,9 @@
{"id": "txy3g2", "name": "Los Angeles Chargers", "description": "The Los Angeles Chargers is a professional American football team based out of Los Angeles, California, United States. They are in the American Football Club (AFC) West division of the National Football League (NFL). Their team colors are blue and yellow, and they are associated with lightning bolts. #BoltUp\n\nThe Chargers community claimed this spot and formed an alliance with r/Hammers, then was taken over by r/inanimateinsanity in the night. However, with the help of r/hammers, they claimed the spot back while letting r/inanimateinsanity keep a portion of land in the process. Together the three communities kept an alliance from then on until the whiteout.", "links": {"website": ["https://www.chargers.com/", "https://en.wikipedia.org/wiki/Los_Angeles_Chargers"], "subreddit": ["Chargers"]}, "path": {"92-141": [[1540, 35], [1540, 45], [1539, 46], [1528, 46], [1528, 52], [1559, 52], [1559, 35]], "148-166, T:0-1": [[1540, 35], [1540, 46], [1528, 46], [1528, 52], [1559, 52], [1559, 46], [1544, 46], [1544, 35]]}, "center": {"92-141": [1548, 44], "148-166, T:0-1": [1542, 49]}},
{"id": "txy2r8", "name": "Zephra City", "description": "Zephra City is a place where Twitch streamer ZephraCarl plays virtual Yu-Gi-Oh! cards and random stuff. His community is known as Pepegas.", "links": {"website": ["https://www.twitch.tv/zephracarl"], "subreddit": ["00ZephraCity00"]}, "path": {"82-94": [[1552, 249], [1552, 255], [1562, 255], [1562, 249]], "125-166, T:0-1": [[1551, 249], [1564, 249], [1564, 257], [1551, 257]]}, "center": {"82-94": [1557, 252], "125-166, T:0-1": [1558, 253]}},
{"id": "txy1w2", "name": "Vaush", "description": "Popular leftist political streamer Vaush.\n\nThis drawing is the last ditch attempt of Vaush's community to create a space for Vaush in r/place. There were several attempts both before and after the two map expansions, which were all unsuccessful, because of a lack of manpower and constant raids due to a friendly rivalry with DGG, community of Twitch streamer Destiny. Previous attempts included a bigger drawing of Vaush to the right, in the green lattice part of the map, before the first map expansion, a similar drawing of Vaush in front of a trans flag again to the right of the map after the first map expansion, and another drawing of Vaush with red shades on in the middle of the map after both map expansions. There was also an aspiration that never came to be to create the \"Vaush/Joker pride flag\", created by Vaush. Coordination by Vaush's community, who acted without the help of Vaush himself, was mainly done in but not limited to r/VaushV, r/okbuddyvowsh, and VGG (vaush's official site).", "links": {"website": ["https://www.vaush.gg/live"], "subreddit": ["VaushV", "okbuddyvowsh"]}, "path": {"109-166, T:0-1": [[690, 1659], [692, 1659], [695, 1660], [696, 1661], [696, 1665], [688, 1665], [688, 1661], [689, 1660]]}, "center": {"109-166, T:0-1": [692, 1662]}},
-{"id": "txy11o", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"138-143": [[1652, 619], [1652, 625], [1662, 625], [1662, 619]], "154-166, T:0-1": [[1653, 620], [1653, 625], [1678, 625], [1678, 620]]}, "center": {"138-143": [1657, 622], "154-166, T:0-1": [1666, 623]}},
+{"id": "txy11o", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"138-143": [[1652, 619], [1652, 625], [1662, 625], [1662, 619]], "60-64": [[1166, 890], [1166, 894], [1168, 894], [1170, 896], [1176, 896], [1176, 890]], "154-166, T:0-1": [[1653, 620], [1653, 625], [1678, 625], [1678, 620]]}, "center": {"138-143": [1657, 622], "60-64": [1171, 893], "154-166, T:0-1": [1666, 623]}},
{"id": "txy0kq", "name": "MCSRH (Minecraft Speedrunning Hispano)", "description": "The pixel art turtle is the emblem of the Hispanic Minecraft Speedrunning community.", "links": {"website": ["https://twitter.com/MCSRHispano"]}, "path": {"109-166, T:0-1": [[1499, 1456], [1499, 1469], [1508, 1469], [1508, 1456]]}, "center": {"109-166, T:0-1": [1504, 1463]}},
-{"id": "txxyr9", "name": "IRyS's diamond oshi mark", "description": "Two diamonds straddling the Shuba duck representing IRyS, Hololive's English Vsinger under Project: HOPE.", "links": {"website": ["https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g", "https://virtualyoutuber.fandom.com/wiki/IRyS"], "subreddit": ["Hololive"]}, "path": {"53-83": [[245, 793], [243, 795], [246, 798], [249, 795], [247, 793]], "84-165, T:0-1": [[233, 793], [231, 795], [234, 798], [237, 795], [235, 793], [245, 793], [243, 795], [246, 798], [249, 795], [247, 793]]}, "center": {"53-83": [246, 795], "84-165, T:0-1": [234, 795]}},
+{"id": "txxyr9", "name": "IRyS's diamond oshi mark", "description": "Two diamonds straddling the Shuba duck representing IRyS, Hololive's English Vsinger under Project: HOPE.", "links": {"website": ["https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g", "https://virtualyoutuber.fandom.com/wiki/IRyS"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"53-83": [[245, 793], [243, 795], [246, 798], [249, 795], [247, 793]], "84-165, T:0-1": [[233, 793], [231, 795], [234, 798], [237, 795], [235, 793], [245, 793], [243, 795], [246, 798], [249, 795], [247, 793]]}, "center": {"53-83": [246, 795], "84-165, T:0-1": [234, 795]}},
{"id": "txxxt9", "name": "RimWorld", "description": "RimWorld is a sci-fi western colony simulator game set in the distant future and driven by an intelligent AI storyteller. The game follows three survivors from a crashed space liner as they build a colony on a frontier world at the rim of known space. It is inspired by the space western vibe of Firefly, the deep simulation of Dwarf Fortress, and the epic scale of Dune and Warhammer 40,000. Sometimes described as simplified Dwarf Fortress, it is known memetically for making human leather hats and war crimes such as eating without a table.", "links": {"website": ["https://rimworldgame.com/", "https://en.wikipedia.org/wiki/RimWorld"], "subreddit": ["RimWorld"]}, "path": {"17-166, T:0-1": [[100, 647], [96, 651], [96, 655], [100, 659], [104, 659], [108, 655], [108, 651], [104, 647]]}, "center": {"17-166, T:0-1": [102, 653]}},
{"id": "txxv0w", "name": "Wordle", "description": "'PLACE' in the style of Wordle, a popular internet word game created by Josh Wardle (who also helped create r/place)", "links": {"website": ["https://wordleverse.net"], "subreddit": ["wordle"]}, "path": {"109-166, T:0-1": [[1630, 1940], [1630, 1946], [1660, 1946], [1660, 1940]]}, "center": {"109-166, T:0-1": [1645, 1943]}},
{"id": "txxudf", "name": "La Mariana Señal", "description": "Symbol of the mexican streamer ElMariana, made by his community zaza.", "links": {"website": ["https://www.twitch.tv/elmariana"]}, "path": {"109-165, T:0-1": [[1480, 1710], [1489, 1710], [1489, 1724], [1480, 1724]]}, "center": {"109-165, T:0-1": [1485, 1717]}},
@@ -5334,7 +5322,7 @@
{"id": "txxsfj", "name": "The Traveler", "description": "The Traveler is a mysterious spherical paracausal entity associated with the Light in the Destiny franchise.", "links": {"website": ["https://www.destinypedia.com/Traveler"], "subreddit": ["destinythegame", "Destiny2", "place_CentralAlliance"]}, "path": {"109-166, T:0-1": [[468, 1020], [468, 1003], [452, 1003], [451, 1020]]}, "center": {"109-166, T:0-1": [460, 1012]}},
{"id": "txxsca", "name": "Trident", "description": "The iconic symbol of the Roblox game Deepwoken.", "links": {"website": ["https://www.roblox.com/games/4111023553/Deepwoken"], "subreddit": ["deepwokenplace", "deepwoken"]}, "path": {"123-124": [[356, 1448], [358, 1461], [361, 1461], [362, 1462], [363, 1461], [365, 1461], [368, 1447], [362, 1447], [361, 1448]], "76-85": [[1829, 246], [1829, 252], [1836, 252], [1836, 250], [1863, 250], [1864, 251], [1865, 250], [1868, 250], [1868, 248], [1865, 248], [1864, 247], [1863, 248], [1836, 248], [1836, 246]], "125-165, T:0-1": [[368, 1455], [368, 1436], [355, 1436], [356, 1455], [362, 1455]]}, "center": {"123-124": [362, 1453], "76-85": [1832, 249], "125-165, T:0-1": [362, 1445]}},
{"id": "txxqn3", "name": "SLICE Interactive", "description": "SLICE Interactive is an indie software studio created and owned by Isaac Crawford, also known as \"Knowlife4\". They are known for their SpongeBob fan-game \"Bikini Bottom Tales\", inspired by the classic SpongeBob 3D platformers of the early 2000's.", "links": {"discord": ["hs77K3Hf"]}, "path": {"3-9": [[85, 375], [83, 377], [83, 383], [97, 383], [99, 381], [99, 377], [97, 375]], "14-165, T:0-1": [[78, 386], [92, 386], [92, 394], [78, 394]]}, "center": {"3-9": [91, 379], "14-165, T:0-1": [85, 390]}},
-{"id": "txxq20", "name": "Minecraft heart by Lolo Villarreal", "description": "This is the heart of the streamer Lolo Villarreal, who built it together with his community built.", "links": {"website": ["https://www.twitch.tv/lolovillarreal"], "subreddit": ["lolovillarreal"]}, "path": {"56-166, T:0-1": [[1447, 808], [1440, 807], [1440, 810], [1441, 813], [1444, 815], [1447, 809], [1446, 808]]}, "center": {"56-166, T:0-1": [1443, 810]}},
+{"id": "txxq20", "name": "Minecraft heart", "description": "This heart represents the player's health in the game Minecraft.\n\nThis heart was built by streamer Lolo Villarreal together with his community.", "links": {"website": ["https://www.twitch.tv/lolovillarreal", "https://www.reddit.com/user/lolovillarreal", "https://minecraft.fandom.com/wiki/Health"]}, "path": {"156-166, T:0-1": [[1441, 802], [1439, 804], [1439, 806], [1443, 810], [1448, 805], [1448, 804], [1446, 802]]}, "center": {"156-166, T:0-1": [1443, 805]}},
{"id": "txxpu3", "name": "Florida Among Us crewmate", "description": "An Among Us crewmate made inside the University of Florida logo. Spearheaded by deepfry4455, Trashmancan9 and their brave comrades. Memorable battles include the attack from the femboys and the Floridians.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"115-153": [[22, 625], [20, 627], [20, 628], [21, 629], [21, 631], [25, 631], [25, 625]], "157-165, T:0-1": [[22, 624], [20, 626], [20, 628], [22, 630], [25, 630], [25, 624]]}, "center": {"115-153": [23, 628], "157-165, T:0-1": [23, 627]}},
{"id": "txxp5v", "name": "πgeon", "description": "πgeon is the mascot representing the BirdSO Science Olympiad invitational, made by members of the r/scioly subreddit and the Scioly.org Discord server!", "links": {"website": ["https://birdso.org"], "subreddit": ["scioly"]}, "path": {"109-166, T:0-1": [[502, 1458], [512, 1458], [512, 1468], [500, 1468], [500, 1462], [502, 1462]]}, "center": {"109-166, T:0-1": [506, 1463]}},
{"id": "txxow7", "name": "Kimmunity Peepo", "description": "The Kimmunity is the community of Twitch streamer Kimmikichi. They got together to make an emote based on ppL, derived from the Peepo meme. It later became the community's mascot.", "links": {"website": ["https://www.twitch.tv/kimmikichi", "https://knowyourmeme.com/memes/peepo"], "subreddit": ["kimmikichi"], "discord": ["mYvNZ2s"]}, "path": {"133-166, 96-125, T:0-1": [[1672, 309], [1690, 309], [1690, 323], [1672, 323]]}, "center": {"133-166, 96-125, T:0-1": [1681, 316]}},
@@ -5388,11 +5376,11 @@
{"id": "txwgw6", "name": "Mom Lip", "description": "Meme of Kim Lip, sixth member of Loona, a K-pop girl group.", "links": {"website": ["https://en.wikipedia.org/wiki/Loona"], "subreddit": ["LOONA", "Philippines"]}, "path": {"109-165, T:0-1": [[354, 1610], [355, 1624], [360, 1626], [362, 1616], [360, 1611], [355, 1611]]}, "center": {"109-165, T:0-1": [358, 1618]}},
{"id": "txwb3d", "name": "The Boio", "description": "A boio to represent /r/boio_irl and the small community behind it", "links": {"subreddit": ["boio_irl"]}, "path": {"109-166, T:0-1": [[1351, 1311], [1359, 1311], [1361, 1326], [1348, 1326]]}, "center": {"109-166, T:0-1": [1355, 1319]}},
{"id": "txwaws", "name": "Ursi Gaming", "description": "A small gaming clan from Poland founded in 2012.", "links": {"website": ["https://twitter.com/PanMadzior"]}, "path": {"109-166, T:0-1": [[1754, 1118], [1768, 1118], [1768, 1122], [1754, 1122]]}, "center": {"109-166, T:0-1": [1761, 1120]}},
-{"id": "txw87x", "name": "Aki Rosenthal's apple", "description": "This apple is the symbol of Aki Rosenthal, a VTuber of the 1st generation of Hololive Japan. She's an alien talented in belly-dancing, has a beautiful singing voice, and loves to drink.", "links": {"website": ["https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww"], "subreddit": ["Hololive"]}, "path": {"56-165, T:0-1": [[1401, 959], [1401, 960], [1402, 961], [1402, 963], [1401, 964], [1400, 965], [1398, 965], [1397, 964], [1396, 963], [1396, 961], [1397, 960], [1398, 959], [1399, 958], [1400, 958], [1401, 959], [1401, 960], [1402, 960]]}, "center": {"56-165, T:0-1": [1399, 962]}},
+{"id": "txw87x", "name": "Aki Rosenthal's apple", "description": "This apple is the symbol of Aki Rosenthal, a VTuber of the 1st generation of Hololive Japan. She's an alien talented in belly-dancing, has a beautiful singing voice, and loves to drink.", "links": {"website": ["https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-165, T:0-1": [[1401, 959], [1401, 960], [1402, 961], [1402, 963], [1401, 964], [1400, 965], [1398, 965], [1397, 964], [1396, 963], [1396, 961], [1397, 960], [1398, 959], [1399, 958], [1400, 958], [1401, 959], [1401, 960], [1402, 960]]}, "center": {"56-165, T:0-1": [1399, 962]}},
{"id": "txw83h", "name": "Mixed weather", "description": "Placed next to the Maypole, this art reminds us of the Swedes' eternal claim that the weather on their sacrosanct holiday of Midsummer is always bad (rainy/overcast/even snow).", "links": {"website": ["https://en.wikipedia.org/wiki/Midsummer#Sweden"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"108-127": [[651, 44], [644, 47], [644, 52], [655, 72], [660, 72], [663, 81], [669, 83], [669, 76], [674, 76], [674, 72], [671, 68], [671, 58], [674, 53], [664, 42], [663, 42], [658, 46], [653, 46]], "128-166, T:0-1": [[672, 77], [667, 43], [650, 36], [640, 44], [645, 56], [665, 82]]}, "center": {"108-127": [660, 57], "128-166, T:0-1": [656, 51]}},
{"id": "txw4gj", "name": "Samerion", "description": "Samerion is a massively multiplayer online role-playing game (MMORPG). Its logo is named Dragon S.", "links": {"website": ["http://samerion.com"], "subreddit": ["SamerionPlace"]}, "path": {"150-166, T:0-1": [[1853, 276], [1866, 276], [1866, 298], [1850, 298], [1850, 284]]}, "center": {"150-166, T:0-1": [1858, 287]}},
-{"id": "txw457", "name": "Anomander Rake", "description": "The character Anomander Rake, a tiste Andii. He is a central character from The Malazan Book of the Fallen. Fun fact, The Malazan world started as a Dungeons & Dragons game, and Anomander was the character played by the series author, Steven Erikson.", "links": {"website": ["https://malazan.fandom.com/wiki/Anomander_Rake"], "subreddit": ["malazan", "SFFA"]}, "path": {"56-166, T:0-1": [[1835, 927], [1839, 929], [1840, 937], [1837, 944], [1833, 944], [1831, 934], [1833, 927]]}, "center": {"56-166, T:0-1": [1835, 935]}},
-{"id": "txw3nb", "name": "Kiara Fried Phoenix employee", "description": "A small chicken employee of KFP (Kiara Fried Phoenix), the fast-food chain owned by Hololive Myth VTuber Takanashi Kiara.", "links": {"website": ["https://kiarafriedphoenix.com/", "https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww", "https://virtualyoutuber.fandom.com/wiki/Takanashi_Kiara"], "subreddit": ["Hololive"]}, "path": {"43-166, T:0-1": [[229, 768], [227, 770], [227, 775], [234, 775], [234, 770], [232, 768]]}, "center": {"43-166, T:0-1": [231, 772]}},
+{"id": "txw457", "name": "Anomander Rake", "description": "The character Anomander Rake, a tiste Andii. He is a central character from The Malazan Book of the Fallen. Fun fact, The Malazan world started as a Dungeons & Dragons game, and Anomander was the character played by the series author, Steven Erikson.", "links": {"website": ["https://malazan.fandom.com/wiki/Anomander_Rake"], "subreddit": ["Malazan", "SFFA"]}, "path": {"56-166, T:0-1": [[1835, 927], [1839, 929], [1840, 937], [1837, 944], [1833, 944], [1831, 934], [1833, 927]]}, "center": {"56-166, T:0-1": [1835, 935]}},
+{"id": "txw3nb", "name": "Kiara Fried Phoenix employee", "description": "A small chicken employee of KFP (Kiara Fried Phoenix), the fast-food chain owned by Hololive Myth VTuber Takanashi Kiara.", "links": {"website": ["https://kiarafriedphoenix.com/", "https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww", "https://virtualyoutuber.fandom.com/wiki/Takanashi_Kiara"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"43-166, T:0-1": [[229, 768], [227, 770], [227, 775], [234, 775], [234, 770], [232, 768]]}, "center": {"43-166, T:0-1": [231, 772]}},
{"id": "txw3mz", "name": "Omae Wa Mou Shindeiru Dance", "description": "\"Omae Wa Mou Shindeiru Dance\" is a popular remix of the song \"Tiny Little Adiantum\" featuring the titular line from the manga Fist of the North Star and a GIF of an anime girl dancing. A prominent edit features the character Tsukasa Yuzuki from the manga Fly Me to the Moon (Tonikaku Kawaii) doing the dance.", "links": {"website": ["https://www.youtube.com/watch?v=Ejv0Gk-mGko", "https://tonikaku-kawaii.fandom.com/wiki/Tsukasa_Tsukuyomi"], "subreddit": ["TonikakuCawaii"]}, "path": {"2-166, T:0-1": [[270, 773], [266, 777], [266, 781], [263, 781], [260, 784], [261, 785], [261, 789], [263, 791], [266, 791], [267, 792], [267, 797], [269, 797], [269, 804], [271, 806], [272, 806], [274, 804], [274, 802], [275, 801], [276, 802], [276, 804], [278, 806], [279, 806], [281, 804], [281, 798], [283, 795], [283, 794], [281, 791], [281, 777], [277, 773]]}, "center": {"2-166, T:0-1": [273, 786]}},
{"id": "txw2gl", "name": "r/SquareSpiral", "description": "r/SquareSpiral was an initiative to build a red-and-blue square spiral, first created in the original r/place. It had to relocate several times due to invasion by bigger groups.", "links": {"subreddit": ["SquareSpiral"]}, "path": {"147-160": [[1744, 387], [1744, 391], [1742, 394], [1742, 396], [1757, 396], [1757, 387]], "102-138": [[1753, 380], [1746, 387], [1739, 399], [1739, 402], [1732, 402], [1732, 407], [1756, 407], [1756, 389], [1754, 380]], "99-101": [[1796, 391], [1796, 400], [1804, 400], [1804, 391]], "57-66": [[1244, 348], [1244, 363], [1256, 363], [1260, 360], [1260, 348]], "70-75": [[1254, 331], [1254, 339], [1262, 344], [1268, 344], [1268, 331]], "67-69": [[1248, 333], [1248, 336], [1246, 336], [1246, 342], [1256, 342], [1256, 333]], "29-45": [[585, 173], [585, 202], [614, 202], [614, 175], [598, 175], [598, 173]], "4-22": [[115, 737], [115, 766], [143, 766], [143, 737]]}, "center": {"147-160": [1750, 392], "102-138": [1748, 399], "99-101": [1800, 396], "57-66": [1252, 356], "70-75": [1262, 337], "67-69": [1252, 338], "29-45": [600, 189], "4-22": [129, 752]}},
{"id": "txw0yd", "name": "CaptainPuffy", "description": "Caroline Cara, better known online as CaptainPuffy, is a Twitch streamer and YouTuber who is friends with the Dream Team. She joined the Dream SMP (survival multiplayer) on November 16, 2020.", "links": {"website": ["https://m.twitch.tv/captainpuffy"], "subreddit": ["CaptainPuffy", "dreamsmp"]}, "path": {"48-165, T:0-1": [[146, 926], [155, 926], [155, 935], [146, 935]]}, "center": {"48-165, T:0-1": [151, 931]}},
@@ -5430,7 +5418,7 @@
{"id": "ty0hbk", "name": "WellNamedStudio", "description": "WellNamedStudio is a game design studio. Their logo is a periwinkle well.", "links": {"website": ["https://wellnamedstudio.com"], "subreddit": ["wellnamedstudios"]}, "path": {"156-164, T:0-1": [[1753, 377], [1749, 381], [1749, 382], [1751, 382], [1751, 384], [1750, 384], [1750, 388], [1757, 388], [1757, 384], [1756, 384], [1756, 382], [1758, 382], [1758, 381], [1754, 377]]}, "center": {"156-164, T:0-1": [1754, 382]}},
{"id": "ty0git", "name": "Lucid", "description": "Featured here for holding the Pre-1.9 Set Seed Glitchless world record. Lucid's WR is also the first in the category under 3 minutes. Lucid is also a contender for the Pre-1.9 Random Seed Glitchless world record, having entered the End on world-record pace. Also notable for using the Trading route in the same category.", "links": {"website": ["https://youtu.be/xrGIMk3XsTk"]}, "path": {"109-166, T:0-1": [[1471, 1445], [1480, 1445], [1481, 1454], [1472, 1454]]}, "center": {"109-166, T:0-1": [1476, 1450]}},
{"id": "ty0dtb", "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.\n\nThis art was coordinated mainly by the group Sneed Team 6 on 4chan's Random board /b/.", "links": {"website": ["https://en.wikipedia.org/wiki/Yotsuba_Koiwai", "https://en.wikipedia.org/wiki/Yotsuba%26!", "https://knowyourmeme.com/memes/yotsuba-koiwai-404-girl", "https://boards.4chan.org/b/"]}, "path": {"T:0-1": [[1892, 539], [1892, 589], [1947, 589], [1947, 570], [2000, 570], [2000, 539]], "112-142": [[1972, 501], [1972, 540], [2000, 540], [2000, 502], [1976, 502], [1976, 501]], "72-111": [[1975, 509], [1975, 538], [1998, 538], [1998, 509]], "148-166": [[1916, 539], [1916, 541], [1912, 541], [1912, 545], [1909, 545], [1909, 549], [1904, 549], [1901, 553], [1903, 558], [1905, 560], [1901, 564], [1901, 569], [1911, 579], [1911, 583], [1914, 586], [1916, 586], [1916, 587], [1919, 590], [1927, 590], [1939, 583], [1934, 577], [1937, 577], [1946, 569], [1946, 562], [1947, 561], [1947, 558], [1954, 558], [1956, 556], [1953, 553], [1955, 551], [1952, 548], [1952, 547], [1950, 545], [1948, 545], [1945, 547], [1940, 547], [1935, 544], [1927, 544], [1926, 545], [1923, 545], [1923, 544], [1918, 539]]}, "center": {"T:0-1": [1917, 564], "112-142": [1986, 521], "72-111": [1987, 524], "148-166": [1924, 563]}},
-{"id": "ty0cdn", "name": "Ryottaki", "description": "Ryottaki is a famous twitch streamer vtuber from chile.", "links": {"website": ["https://www.twitch.tv/search?term=ryottaki"]}, "path": {"56-166, T:0-1": [[1620, 862], [1620, 853], [1626, 853], [1626, 862], [1623, 863]]}, "center": {"56-166, T:0-1": [1623, 858]}},
+{"id": "ty0cdn", "name": "Ryottaki", "description": "Ryottaki is a Twitch streamer and VTuber from Chile.", "links": {"website": ["https://www.twitch.tv/ryottaki"]}, "path": {"129-166, T:0-1": [[1622, 853], [1620, 855], [1620, 861], [1622, 863], [1624, 863], [1626, 861], [1626, 855], [1624, 853]]}, "center": {"129-166, T:0-1": [1623, 858]}},
{"id": "ty0blu", "name": "Foolish_Gamers", "description": "The face of the Minecraft skin of Foolish_Gamers (FoolishG), a member of the Dream SMP (survival multiplayer).", "links": {"website": ["https://www.youtube.com/channel/UCrvF7crv7U50zCnam5tmyng"], "subreddit": ["FoolishGamers", "dreamsmp"]}, "path": {"109-165, T:0-1": [[1205, 1122], [1214, 1122], [1214, 1114], [1205, 1114]]}, "center": {"109-165, T:0-1": [1210, 1118]}},
{"id": "ty0b05", "name": "Golden Idol", "description": "A valuable collectible item and one of the main icons for the 2009 freeware treasure hunting game Spelunky Classic. It is a direct reference to the Golden Idol in the Indiana Jones movie, Raiders of the Lost Ark.", "links": {"subreddit": ["spelunky"]}, "path": {"109-166, T:0-1": [[1887, 1659], [1884, 1665], [1884, 1668], [1887, 1674], [1893, 1674], [1895, 1667], [1894, 1663], [1892, 1659]]}, "center": {"109-166, T:0-1": [1890, 1667]}},
{"id": "ty0b04", "name": "Reckzy_", "description": "The Minecraft skin of the dumbest kid on earth.", "links": {"website": ["https://www.youtube.com/channel/UC7CFMWpd4jigco5Owyu7PAA"]}, "path": {"109-166, T:0-1": [[1972, 1106], [1963, 1106], [1963, 1100], [1972, 1100]]}, "center": {"109-166, T:0-1": [1968, 1103]}},
@@ -5459,7 +5447,7 @@
{"id": "txzp02", "name": "Honkai Impact 3rd 4th Anniversary Global version", "description": "Honkai Impact 3rd was celebrating its 4th anniversary for the global version by the time this was made, so for the occasion, They decided to put the '4th' in the logo. May all the beauty be blessed.", "links": {"website": ["https://www.youtube.com/watch?v=L-2hDygntWg"], "subreddit": ["houkai3rd"]}, "path": {"109-166, T:0-1": [[1676, 1763], [1677, 1773], [1693, 1773], [1693, 1764]]}, "center": {"109-166, T:0-1": [1685, 1768]}},
{"id": "txzm8d", "name": "Syrian opposition heart", "description": "A heart depicting the flag of the Syrian opposition against the government of the Western Asian country of Syria.", "links": {"website": ["https://en.wikipedia.org/wiki/Syrian_opposition", "https://en.wikipedia.org/wiki/Flag_of_Syria#Flag_of_the_Syrian_Opposition"], "subreddit": ["syria"]}, "path": {"144-156": [[223, 190], [221, 192], [221, 193], [225, 197], [229, 193], [229, 192], [227, 190], [287, 190], [289, 192], [289, 193], [285, 197], [281, 193], [281, 192], [283, 190]], "137-143": [[223, 190], [221, 192], [221, 193], [225, 197], [229, 193], [229, 192], [227, 190], [299, 190], [299, 195], [297, 197], [293, 193], [293, 192], [295, 190]], "123-127": [[229, 178], [227, 180], [227, 181], [231, 185], [235, 181], [235, 180], [233, 178], [293, 178], [295, 180], [295, 181], [291, 185], [287, 181], [287, 180], [289, 178]], "108-112": [[223, 178], [221, 180], [221, 181], [225, 185], [231, 185], [235, 181], [235, 180], [233, 178], [293, 178], [295, 180], [295, 181], [291, 185], [287, 181], [287, 180], [289, 178]], "98-104": [[223, 178], [221, 180], [221, 181], [225, 185], [229, 181], [229, 180], [227, 178], [293, 178], [295, 180], [295, 181], [291, 185], [287, 181], [287, 180], [289, 178]], "64-65": [[142, 178], [140, 180], [140, 181], [144, 185], [168, 185], [172, 181], [172, 180], [170, 178]], "55-63": [[148, 178], [146, 180], [146, 181], [150, 185], [154, 181], [154, 180], [152, 178]], "105-107, 113-122, 128-134, 67-70, 82-97": [[289, 178], [287, 180], [287, 181], [291, 185], [295, 181], [295, 180], [293, 178]], "157-165, T:0-1": [[283, 190], [281, 192], [281, 193], [285, 197], [289, 193], [289, 192], [287, 190]]}, "center": {"144-156": [225, 193], "137-143": [225, 193], "123-127": [231, 181], "108-112": [226, 181], "98-104": [225, 181], "64-65": [156, 182], "55-63": [150, 181], "105-107, 113-122, 128-134, 67-70, 82-97": [291, 181], "157-165, T:0-1": [285, 193]}},
{"id": "txzm3t", "name": "Caliebre", "description": "Spanish streamer\nPresident of Caliebristan", "links": {"website": ["https://www.twitch.tv/caliebre"], "subreddit": ["Caliebre"]}, "path": {"109-166, T:0-1": [[1574, 1017], [1591, 1017], [1591, 999], [1574, 999], [1574, 1004], [1574, 1008]]}, "center": {"109-166, T:0-1": [1583, 1008]}},
-{"id": "txzjyc", "name": "Polyamorous flag", "description": "Polyamory is the practice of engaging in multiple romantic (and typically sexual) relationships, with the consent of all the people involved.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory", "PlacePride"]}, "path": {"115-122": [[457, 618], [457, 628], [465, 628], [465, 618]], "18-20": [[473, 625], [473, 631], [479, 631], [479, 625]], "123-161, 90-114, T:0-1": [[457, 621], [457, 628], [465, 628], [465, 621]]}, "center": {"115-122": [461, 623], "18-20": [476, 628], "123-161, 90-114, T:0-1": [461, 625]}},
+{"id": "txzjyc", "name": "Polyamory flag", "description": "Polyamory is the practice of engaging in multiple romantic (and typically sexual) relationships, with the consent of all the people involved.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory", "PlacePride"]}, "path": {"115-122": [[457, 618], [457, 628], [465, 628], [465, 618]], "18-20": [[473, 625], [473, 631], [479, 631], [479, 625]], "123-161, 90-114, T:0-1": [[457, 621], [457, 628], [465, 628], [465, 621]]}, "center": {"115-122": [461, 623], "18-20": [476, 628], "123-161, 90-114, T:0-1": [461, 625]}},
{"id": "txzg4j", "name": "Beast from Over the Garden Wall", "description": "The Beast is the main antagonist from the show Over the Garden Wall. There is only surrender...", "links": {"subreddit": ["overthegardenwall"]}, "path": {"56-166, T:0-1": [[1426, 936], [1441, 936], [1441, 941], [1426, 941]]}, "center": {"56-166, T:0-1": [1434, 939]}},
{"id": "txzfsf", "name": "Co-Cathedral of Saint Nicholas", "description": "The Co-Cathedral of Saint Nicholas is one of the oldest churches in Slovakia.", "links": {"website": ["https://en.wikipedia.org/wiki/Co-Cathedral_of_Saint_Nicholas,_Pre%C5%A1ov"], "subreddit": ["Slovakia"]}, "path": {"95-166, T:0-1": [[1383, 189], [1383, 174], [1382, 174], [1382, 171], [1383, 171], [1383, 168], [1385, 168], [1385, 165], [1386, 165], [1386, 162], [1388, 162], [1388, 165], [1389, 165], [1389, 168], [1391, 168], [1391, 171], [1392, 171], [1392, 174], [1391, 174], [1391, 177], [1403, 177], [1403, 178], [1398, 182], [1396, 189]]}, "center": {"95-166, T:0-1": [1389, 183]}},
{"id": "txzevl", "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 tail.", "links": {"website": ["https://deltarune.fandom.com/wiki/Susie"], "subreddit": ["Deltarune"]}, "path": {"19-21": [[691, 646], [691, 653], [693, 655], [695, 656], [699, 656], [700, 657], [701, 657], [702, 656], [708, 656], [708, 655], [707, 654], [707, 649], [705, 646], [703, 644], [698, 644], [695, 646]], "30-44": [[708, 617], [705, 619], [701, 619], [701, 620], [703, 623], [701, 625], [701, 626], [705, 629], [709, 629], [710, 630], [711, 630], [713, 628], [717, 628], [717, 622], [715, 619], [713, 617]], "57-166, T:0-1": [[1780, 173], [1774, 173], [1774, 174], [1772, 174], [1772, 175], [1768, 175], [1768, 177], [1769, 177], [1769, 180], [1768, 180], [1768, 183], [1769, 183], [1777, 186], [1778, 186], [1780, 184], [1784, 184], [1784, 183], [1783, 182], [1783, 179], [1780, 179], [1778, 178], [1779, 177], [1783, 177], [1783, 176]]}, "center": {"19-21": [700, 650], "30-44": [710, 623], "57-166, T:0-1": [1774, 180]}},
@@ -5480,7 +5468,7 @@
{"id": "txz6hy", "name": "Lum Invader", "description": "known sometimes simply as Lum, she is the secondary protagonist of the manga and anime series Urusei Yatsura (1978)", "links": {"subreddit": ["uruseiyatsura"]}, "path": {"109-164, T:0-1": [[252, 1709], [258, 1709], [258, 1723], [252, 1723]]}, "center": {"109-164, T:0-1": [255, 1716]}},
{"id": "txz647", "name": "Aegoromantic flag", "description": "Aegoromantic is a micro-label on the aromantic spectrum that describes those who enjoy the concept of romance but have a disconnect between themselves and the subject of romantic fantasies.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Aegoromantic"], "subreddit": ["aegoromantic", "PlacePride"]}, "path": {"150-161, T:0-1": [[457, 616], [457, 621], [465, 621], [465, 616]]}, "center": {"150-161, T:0-1": [461, 619]}},
{"id": "txz58z", "name": "MEWO", "description": "MEWO, also known as BLACK CAT, is a non-player character in the indie role-playing game OMORI. She used to be owned by MARI.\n\nMeow? (Waiting for something to happen?)\n\nMEWO is depicted holding onto our dearest Picture Game bird by the tail.", "links": {"website": ["https://omori.fandom.com/wiki/MEWO"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"8-14": [[944, 837], [939, 842], [937, 846], [934, 843], [932, 846], [932, 849], [934, 851], [938, 853], [952, 853], [954, 850], [954, 846], [953, 845], [953, 839], [951, 837], [948, 841], [947, 841]], "15-165, T:0-1": [[942, 837], [938, 841], [937, 841], [933, 845], [933, 846], [930, 846], [926, 849], [926, 852], [936, 852], [937, 853], [952, 853], [954, 851], [954, 843], [953, 842], [953, 839], [951, 837], [950, 837], [947, 840], [946, 840], [944, 837]]}, "center": {"8-14": [944, 847], "15-165, T:0-1": [942, 846]}},
-{"id": "txz4hy", "name": "ZhokoVT", "description": "Zhoko is a small twitch streamer VTuber from Chile. He is a green fox and has a turtle.", "links": {"website": ["https://www.twitch.tv/zhokovt"]}, "path": {"56-166, T:0-1": [[1614, 868], [1614, 857], [1620, 857], [1620, 863], [1625, 863], [1625, 862], [1626, 862], [1626, 851], [1629, 851], [1630, 862], [1630, 868], [1623, 868]]}, "center": {"56-166, T:0-1": [1622, 862]}},
+{"id": "txz4hy", "name": "ZhokoVT", "description": "Zhoko is a small Twitch streamer and VTuber from Chile. His VTuber avatar is a green fox, and he has a turtle.", "links": {"website": ["https://www.twitch.tv/zhokovt"]}, "path": {"125-166, T:0-1": [[1620, 857], [1614, 857], [1614, 867], [1615, 867], [1615, 869], [1619, 869], [1619, 868], [1627, 868], [1627, 866], [1628, 866], [1630, 864], [1630, 863], [1631, 862], [1630, 861], [1630, 850], [1626, 850], [1626, 861], [1623, 861], [1622, 862], [1620, 862]]}, "center": {"125-166, T:0-1": [1617, 865]}},
{"id": "txz3dc", "name": "Noelle Holiday", "description": "A main character in Chapter 2 of Deltarune, a game created by Toby Fox. She is a mage who can cast ice spells, including a secret one under the right conditions.", "links": {"website": ["https://deltarune.fandom.com/wiki/Noelle_Holiday"], "subreddit": ["Deltarune"]}, "path": {"29-38": [[712, 629], [708, 632], [708, 634], [709, 635], [709, 638], [711, 640], [719, 640], [719, 633], [720, 632], [720, 631], [717, 629]], "56-167, T:0-1": [[1779, 185], [1785, 185], [1785, 186], [1786, 186], [1787, 186], [1788, 185], [1789, 185], [1789, 186], [1788, 186], [1787, 186], [1787, 187], [1787, 188], [1786, 188], [1786, 189], [1786, 190], [1786, 191], [1786, 193], [1786, 196], [1787, 197], [1788, 198], [1787, 199], [1786, 199], [1786, 200], [1786, 202], [1786, 203], [1785, 203], [1784, 203], [1784, 204], [1784, 205], [1780, 205], [1780, 203], [1779, 203], [1779, 204], [1777, 204], [1777, 203], [1776, 203], [1776, 202], [1777, 201], [1777, 198], [1776, 198], [1776, 191], [1775, 191], [1775, 189], [1776, 188], [1777, 187], [1778, 186], [1779, 186]]}, "center": {"29-38": [714, 635], "56-167, T:0-1": [1781, 195]}},
{"id": "txz2gt", "name": "Felipe", "description": "A little visitor from Jacex Dowóz Wideo, a streaming channel made by Polish content creators Bartek Sitek and Jakub Chuptyś, inspired by the likes of Vinesauce. As a tribute to Jerma and Vinesauce, The Jacex community decided to drop this little guy on Otto's back. Although they didn't plan for him to stay there for long, r/place ended minutes after, immortalizing the delivery man on the mural. Sorry Jermites, hope you don't mind! <3", "links": {"website": ["https://www.twitch.tv/jacexdowozwideo"]}, "path": {"164-166, T:0-1": [[116, 1033], [112, 1033], [110, 1037], [110, 1040], [116, 1040]]}, "center": {"164-166, T:0-1": [113, 1037]}},
{"id": "txz26t", "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)", "https://knowyourmeme.com/memes/i-herd-u-liek-mudkips"], "subreddit": ["pokemon"]}, "path": {"83-166, T:0-1": [[1004, 297], [996, 307], [996, 308], [1006, 308], [1006, 305], [1007, 305], [1009, 303], [1006, 300]]}, "center": {"83-166, T:0-1": [1003, 304]}},
@@ -5501,10 +5489,10 @@
{"id": "txyufp", "name": "Enron", "description": "Enron is an American energy company which collapsed in 2005 after a severe accounting scandal.", "links": {"website": ["https://en.wikipedia.org/wiki/Enron"], "subreddit": ["atrioc"]}, "path": {"68-92": [[1819, 187], [1811, 195], [1811, 196], [1820, 205], [1821, 205], [1829, 198], [1829, 196], [1820, 187]], "107-166, T:0-1": [[1822, 192], [1822, 190], [1823, 190], [1823, 189], [1824, 189], [1824, 188], [1825, 188], [1825, 187], [1826, 187], [1826, 186], [1827, 186], [1827, 185], [1828, 185], [1828, 184], [1829, 184], [1829, 183], [1830, 183], [1831, 184], [1832, 184], [1832, 185], [1833, 185], [1833, 186], [1834, 186], [1834, 187], [1835, 187], [1835, 188], [1836, 188], [1836, 189], [1837, 189], [1837, 190], [1838, 190], [1838, 191], [1839, 191], [1839, 194], [1838, 194], [1838, 195], [1837, 195], [1837, 196], [1836, 196], [1836, 197], [1835, 197], [1835, 198], [1834, 198], [1834, 199], [1833, 199], [1833, 200], [1832, 200], [1832, 201], [1830, 201], [1830, 200], [1829, 200], [1829, 199], [1828, 199], [1828, 198], [1827, 198], [1827, 197], [1826, 197], [1826, 196], [1825, 196], [1825, 195], [1824, 195], [1824, 194], [1823, 194], [1823, 193], [1822, 193]]}, "center": {"68-92": [1820, 196], "107-166, T:0-1": [1831, 192]}},
{"id": "txysr4", "name": "PotFriend", "description": "PotFriend is a Twitch emote featuring the character Iron Fist Alexander, an often-memed Living Jar NPC from the 2022 FromSoftware game Elden Ring.\n\nThis art is the lasting result of an early battle between the My Little Pony fandom and Twitch streamers Mizkif and xQc. PotFriend's creation marked an end to the small scuffle, and was subsequently given to the nearby Elden Ring community in an act of good faith, making it the second creation on r/place to represent the game.", "links": {"website": ["https://streamsentials.com/twitch-emotes/potfriend/", "https://knowyourmeme.com/memes/pot-boy-pot-friend", "https://eldenring.wiki.fextralife.com/Iron+Fist+Alexander"], "subreddit": ["Eldenring"]}, "path": {"20-165, T:0-1": [[228, 420], [224, 424], [224, 450], [299, 450], [299, 420]]}, "center": {"20-165, T:0-1": [262, 435]}},
{"id": "txys9b", "name": "Chomptonic", "description": "Chomptonic, alternatively known as Chompworks, is a game development group on Roblox.", "links": {"website": ["https://www.roblox.com/groups/10845609/Chomptonic"]}, "path": {"109-166, T:0-1": [[606, 1583], [606, 1596], [617, 1596], [617, 1583]]}, "center": {"109-166, T:0-1": [612, 1590]}},
-{"id": "txyry3", "name": "Second duck chain", "description": "Started with 4 ducks in a chain where 2 of them turned into penguins", "links": {"subreddit": ["duck_place"]}, "path": {"56-166, T:0-1": [[1200, 828], [1201, 828], [1201, 824], [1206, 824], [1206, 828], [1208, 828], [1208, 824], [1213, 824], [1213, 828], [1215, 828], [1215, 824], [1220, 824], [1220, 828], [1222, 828], [1222, 824], [1227, 824], [1227, 828], [1228, 828], [1227, 828], [1227, 829], [1222, 829], [1222, 828], [1220, 828], [1220, 829], [1215, 829], [1215, 828], [1213, 828], [1213, 829], [1208, 829], [1208, 828], [1206, 828], [1206, 829], [1201, 829], [1201, 828]]}, "center": {"56-166, T:0-1": [1214, 827]}},
-{"id": "txyqpk", "name": "Métis flag", "description": "Flag of the Métis people of Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%A9tis"], "subreddit": ["canada"]}, "path": {"56-166, T:0-1": [[1812, 873], [1812, 878], [1820, 878], [1820, 873]]}, "center": {"56-166, T:0-1": [1816, 876]}},
+{"id": "txyry3", "name": "r/duck_place", "description": "This art started as four ducks in a chain created by r/duck_place. Two of them later turned into penguins.", "links": {"website": ["https://en.wikipedia.org/wiki/Duck"], "subreddit": ["duck_place"]}, "path": {"58-97": [[1200, 823], [1200, 830], [1234, 830], [1236, 828], [1235, 827], [1235, 823]], "98-166, T:0-1": [[1200, 823], [1200, 827], [1199, 828], [1201, 830], [1227, 830], [1229, 828], [1228, 827], [1228, 823]]}, "center": {"58-97": [1218, 827], "98-166, T:0-1": [1214, 827]}},
+{"id": "txyqpk", "name": "Métis flag", "description": "The Métis are indigenous peoples in Canada.", "links": {"website": ["https://en.wikipedia.org/wiki/M%C3%A9tis", "https://en.wikipedia.org/wiki/M%C3%A9tis_flag"], "subreddit": ["placecanada", "canada"]}, "path": {"99-122": [[1807, 872], [1807, 879], [1817, 879], [1817, 872]], "73-98": [[1807, 873], [1807, 880], [1817, 880], [1817, 873]], "126-166, T:0-1": [[1811, 872], [1811, 879], [1821, 879], [1821, 872]]}, "center": {"99-122": [1812, 876], "73-98": [1812, 877], "126-166, T:0-1": [1816, 876]}},
{"id": "txyq6d", "name": "Chatterino", "description": "Chatterino is a application that allows Twitch users to have multiple chats open at once. It is most used for Twitch offline communities.", "links": {"website": ["https://chatterino.com/"], "subreddit": ["offliners"]}, "path": {"109-166, T:0-1": [[735, 1363], [735, 1359], [734, 1359], [734, 1358], [733, 1358], [733, 1357], [730, 1357], [730, 1358], [729, 1358], [729, 1359], [728, 1359], [728, 1364], [730, 1364], [730, 1365], [733, 1365], [733, 1364], [734, 1364], [734, 1363]]}, "center": {"109-166, T:0-1": [731, 1361]}},
-{"id": "txypia", "name": "Medicine wheel", "description": "A medicine wheel, in use by indigenous communities of Canada for generations.", "links": {"website": ["https://en.wikipedia.org/wiki/Medicine_wheel"], "subreddit": ["canada"]}, "path": {"56-166, T:0-1": [[1822, 873], [1822, 876], [1823, 876], [1823, 877], [1824, 878], [1827, 878], [1828, 877], [1829, 876], [1829, 873], [1828, 872], [1827, 871], [1824, 871], [1823, 872]]}, "center": {"56-166, T:0-1": [1826, 874]}},
+{"id": "txypia", "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"], "subreddit": ["placecanada", "canada"]}, "path": {"72-122": [[1821, 870], [1817, 874], [1817, 877], [1821, 881], [1824, 881], [1828, 877], [1828, 874], [1824, 870]], "124-166, T:0-1": [[1824, 870], [1821, 873], [1821, 876], [1824, 879], [1827, 879], [1830, 876], [1830, 873], [1827, 870]]}, "center": {"72-122": [1823, 876], "124-166, T:0-1": [1826, 875]}},
{"id": "txyo0o", "name": "Elden Ring", "description": "Elden Ring is an action role-playing \"Souls-like\" game directed by Hidetaka Miyazaki. It was developed by FromSoftware and published by Bandai Namco.\n\nThis is the first contribution to r/place by the Elden Ring community. It depicts the Elden Ring on its iconic black background with the message \"You died\" next to it. The often-quoted \"Git Gud\" written beside the name would mark the first of many collaborations with the Hollow Knight community, a chance alliance that would go on to be reflected in both groups' future pieces.\nOne of the earliest creations on the first canvas, it stood the test of time with minimal damage during the 4-day-long \"art war\".", "links": {"website": ["https://en.wikipedia.org/wiki/Elden_Ring"], "subreddit": ["Eldenring"]}, "path": {"4-19": [[175, 385], [175, 450], [225, 450], [225, 385]], "20-24": [[175, 385], [175, 450], [299, 450], [299, 420], [225, 420], [225, 385]], "25-165, T:0-1": [[175, 450], [299, 450], [299, 420], [228, 420], [225, 417], [225, 398], [228, 395], [236, 395], [239, 392], [239, 388], [236, 385], [175, 385]]}, "center": {"4-19": [200, 418], "20-24": [200, 424], "25-165, T:0-1": [201, 423]}},
{"id": "txynm2", "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"]}, "path": {"34-64, 83-159": [[0, 862], [0, 868], [32, 868], [32, 862]], "67-82": [[0, 868], [0, 874], [31, 874], [31, 868]], "6-26": [[0, 862], [0, 868], [34, 868], [34, 862]], "160-166, T:0-1": [[0, 862], [29, 862], [29, 868], [0, 868]]}, "center": {"34-64, 83-159": [16, 865], "67-82": [16, 871], "6-26": [17, 865], "160-166, T:0-1": [15, 865]}},
{"id": "txyn3t", "name": "u/GILAY_'s and his GF place", "description": "I always thought drawing something by myself was hopeless. But tried anyway, near the end, To find a little blank space without too much activity. I didn't really know what to do at first, and started making a pink square, That turned into a little head. I told my GF to help me, and she started making flowers and a big Mushroom.\n\nIn the end it wasn't much, and didn't really mean anything other than I love my GF :)", "links": {}, "path": {"109-165, T:0-1": [[1845, 1430], [1845, 1449], [1855, 1446], [1858, 1442], [1858, 1440], [1855, 1440], [1853, 1441], [1854, 1430], [1851, 1432], [1848, 1432], [1847, 1430]]}, "center": {"109-165, T:0-1": [1850, 1440]}},
@@ -5527,7 +5515,7 @@
{"id": "txy52b", "name": "Gona89", "description": "A popular Spanish YouTuber and streamer, well-known for his Minecraft, Plants vs. Zombies, and other games of the like videos.", "links": {"website": ["https://www.youtube.com/channel/UCVrrU-Z0cxcVIX9uq40LoqA"]}, "path": {"109-166, T:0-1": [[1969, 1466], [1969, 1474], [1978, 1474], [1978, 1466]]}, "center": {"109-166, T:0-1": [1974, 1470]}},
{"id": "txy4ag", "name": "MiyuuWAH", "description": "A group of about 300 viewers led by twitch streamer Miyune contested this location for 11 hours and managed to put up one of her emotes - MiyuuWAH - in its entirety before eventually being defeated by the Epic 7 community.", "links": {"website": ["https://www.twitch.tv/miyune"]}, "path": {"124-136": [[1856, 1228], [1825, 1228], [1825, 1257], [1856, 1257]]}, "center": {"124-136": [1841, 1243]}},
{"id": "txy40r", "name": "Nothin' But Lag", "description": "Nothin' But Lag (Justin) is an editor for the YouTube channel SuperMega, and holder of key to the city of Kent, Washington, United States.", "links": {"website": ["https://www.youtube.com/nothinbutlag"], "subreddit": ["SuperMegaShow"]}, "path": {"151-166, T:0-1": [[1852, 395], [1852, 399], [1861, 399], [1861, 395]]}, "center": {"151-166, T:0-1": [1857, 397]}},
-{"id": "000184", "name": "Hololive", "description": "Hololive Production is a virtual YouTuber 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. As of April 2022, the agency manages 68 VTubers between four regional branches totaling over 43 million subscribers, including several of the most subscribed VTubers on YouTube.\n\nAbove the Hololive logo are the five members of HoloCouncil, a group from the English branch: Hakos Baelz, Nanashi Mumei, Ceres Fauna, Ouro Kronii, and Tsukumo Sana.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive", "CeresFauna", "GawrGura", "HakosBaelz", "HoshimachiSuisei", "LaplusDarknesss", "NanashiMumei", "NinomaeInanis", "okbuddyhololive", "oozorasubaru", "OuroKronii", "Pekora", "tokoyamitowa", "TsukumoSana"]}, "path": {"1-24": [[200, 721], [218, 721], [218, 715], [262, 715], [262, 725], [247, 725], [247, 733], [302, 733], [302, 758], [321, 758], [321, 777], [302, 777], [302, 767], [300, 767], [298, 770], [293, 774], [286, 774], [283, 772], [279, 767], [278, 767], [274, 771], [274, 774], [267, 774], [267, 781], [260, 781], [260, 794], [257, 794], [257, 809], [260, 809], [260, 816], [231, 816], [231, 781], [226, 781], [226, 790], [222, 791], [214, 783], [208, 783], [203, 778], [203, 775], [200, 774], [195, 774], [192, 771], [192, 769], [195, 769], [196, 770], [200, 770]], "25-165, T:0-1": [[200, 721], [218, 721], [218, 715], [260, 715], [260, 724], [263, 724], [265, 726], [269, 726], [271, 724], [272, 725], [280, 725], [282, 727], [284, 727], [288, 723], [286, 721], [286, 719], [288, 717], [290, 717], [292, 719], [292, 721], [290, 721], [290, 723], [295, 728], [295, 730], [296, 731], [296, 737], [302, 737], [302, 758], [321, 758], [321, 777], [302, 777], [302, 767], [300, 767], [298, 770], [293, 774], [286, 774], [279, 767], [278, 767], [274, 771], [274, 774], [269, 774], [267, 775], [267, 781], [260, 781], [260, 794], [257, 794], [257, 809], [258, 809], [258, 827], [255, 830], [229, 830], [229, 805], [225, 805], [225, 794], [216, 784], [214, 783], [209, 783], [200, 774], [195, 774], [192, 771], [192, 770], [200, 770]]}, "center": {"1-24": [228, 753], "25-165, T:0-1": [237, 753]}},
+{"id": "000184", "name": "Hololive", "description": "Hololive Production is a virtual YouTuber 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. As of April 2022, the agency manages 68 VTubers between four regional branches totaling over 43 million subscribers, including several of the most subscribed VTubers on YouTube.\n\nAbove the Hololive logo are the five members of HoloCouncil, a group from the English branch: Hakos Baelz, Nanashi Mumei, Ceres Fauna, Ouro Kronii, and Tsukumo Sana.", "links": {"website": ["https://en.hololive.tv/", "https://en.wikipedia.org/wiki/Hololive_Production"], "subreddit": ["Hololive", "CeresFauna", "GawrGura", "HakosBaelz", "HoshimachiSuisei", "LaplusDarknesss", "NanashiMumei", "NinomaeInanis", "okbuddyhololive", "oozorasubaru", "OuroKronii", "Pekora", "tokoyamitowa", "TsukumoSana"], "discord": ["holofans"]}, "path": {"1-24": [[200, 721], [218, 721], [218, 715], [262, 715], [262, 725], [247, 725], [247, 733], [302, 733], [302, 758], [321, 758], [321, 777], [302, 777], [302, 767], [300, 767], [298, 770], [293, 774], [286, 774], [283, 772], [279, 767], [278, 767], [274, 771], [274, 774], [267, 774], [267, 781], [260, 781], [260, 794], [257, 794], [257, 809], [260, 809], [260, 816], [231, 816], [231, 781], [226, 781], [226, 790], [222, 791], [214, 783], [208, 783], [203, 778], [203, 775], [200, 774], [195, 774], [192, 771], [192, 769], [195, 769], [196, 770], [200, 770]], "25-165, T:0-1": [[200, 721], [218, 721], [218, 715], [260, 715], [260, 724], [263, 724], [265, 726], [269, 726], [271, 724], [272, 725], [280, 725], [282, 727], [284, 727], [288, 723], [286, 721], [286, 719], [288, 717], [290, 717], [292, 719], [292, 721], [290, 721], [290, 723], [295, 728], [295, 730], [296, 731], [296, 737], [302, 737], [302, 758], [321, 758], [321, 777], [302, 777], [302, 767], [300, 767], [298, 770], [293, 774], [286, 774], [279, 767], [278, 767], [274, 771], [274, 774], [269, 774], [267, 775], [267, 781], [260, 781], [260, 794], [257, 794], [257, 809], [258, 809], [258, 827], [255, 830], [229, 830], [229, 805], [225, 805], [225, 794], [216, 784], [214, 783], [209, 783], [200, 774], [195, 774], [192, 771], [192, 770], [200, 770]]}, "center": {"1-24": [228, 753], "25-165, T:0-1": [237, 753]}},
{"id": "ty3fac", "name": "Purpled", "description": "Minecraft head of the streamer Purpled. Pictured here with weirdly messed up eyes.", "links": {"website": ["https://twitch.tv/purpled"]}, "path": {"58-165, T:0-1": [[137, 917], [146, 917], [146, 926], [137, 926]]}, "center": {"58-165, T:0-1": [142, 922]}},
{"id": "ty3emk", "name": "Sneegsnag", "description": "Minecraft head of the streamer Sneegsnag. The art was temporarily turned purple, pink, Trans pride colors, and rainbow, usually by his Discord.", "links": {"website": ["https://twitch.tv/sneegsnag"]}, "path": {"60-165, T:0-1": [[155, 944], [164, 944], [164, 953], [155, 953]]}, "center": {"60-165, T:0-1": [160, 949]}},
{"id": "ty3e4n", "name": "CallyAlly", "description": "Minecraft head of a small streamer who allied with r/technoblade.", "links": {"website": ["https://www.twitch.tv/callyally_"]}, "path": {"35-165, T:0-1": [[164, 926], [173, 926], [173, 935], [164, 935]]}, "center": {"35-165, T:0-1": [169, 931]}},
@@ -5549,8 +5537,8 @@
{"id": "ty35gr", "name": "Melon slice", "description": "A food item in Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Melon_Slice"], "subreddit": ["Minecraft"]}, "path": {"109-166, T:0-1": [[1706, 1436], [1706, 1437], [1707, 1437], [1707, 1438], [1715, 1438], [1715, 1437], [1716, 1437], [1716, 1436], [1717, 1436], [1717, 1434], [1718, 1434], [1718, 1429], [1717, 1429], [1717, 1428], [1716, 1428], [1716, 1427], [1715, 1427], [1715, 1428], [1714, 1428], [1714, 1429], [1713, 1429], [1713, 1430], [1712, 1430], [1712, 1431], [1711, 1431], [1711, 1432], [1710, 1432], [1710, 1433], [1709, 1433], [1709, 1434], [1708, 1434], [1708, 1436], [1707, 1435]]}, "center": {"109-166, T:0-1": [1713, 1434]}},
{"id": "ty35fr", "name": "Oh My Girl", "description": "OH MY GIRL (오마이걸) is a girl group from South Korea. They consist of 7 members: Hyojung, Mimi, YooA, Seunghee, Jiho, Yubin, and Arin. OH MY GIRL debuted on April 21, 2015, under WM Entertainment.", "links": {}, "path": {"56-166, T:0-1": [[1688, 938], [1688, 929], [1705, 929], [1704, 938]]}, "center": {"56-166, T:0-1": [1696, 933]}},
{"id": "ty342b", "name": "Among Us family", "description": "Two amongi and a baby amongi", "links": {}, "path": {"109-166, T:0-1": [[1024, 1910], [1024, 1909], [1021, 1909], [1021, 1906], [1020, 1906], [1020, 1905], [1019, 1905], [1019, 1904], [1018, 1904], [1018, 1902], [1017, 1902], [1017, 1900], [1016, 1900], [1016, 1896], [1018, 1896], [1018, 1894], [1022, 1894], [1022, 1895], [1023, 1895], [1023, 1896], [1025, 1896], [1025, 1895], [1026, 1895], [1029, 1894], [1029, 1895], [1030, 1895], [1030, 1896], [1031, 1896], [1031, 1897], [1032, 1897], [1032, 1899], [1031, 1899], [1031, 1901], [1030, 1901], [1030, 1902], [1029, 1902], [1029, 1903], [1028, 1903], [1028, 1905], [1027, 1905], [1027, 1906], [1026, 1906], [1026, 1908], [1025, 1908], [1025, 1909], [1024, 1909]]}, "center": {"109-166, T:0-1": [1024, 1900]}},
-{"id": "ty33l4", "name": "NCT 127", "description": "NCT 127 (엔씨티 127) is the second sub-unit of the boy group NCT from South Korea. The sub-unit consists of 10 members: Taeil, Johnny, Taeyong, Yuta, Doyoung, Jaehyun, Winwin, Jungwoo, Mark, Haechan. NCT 127 debuted on July 7th, 2016 under SM Entertainment with an EP NCT#127.", "links": {}, "path": {"56-166, T:0-1": [[1696, 909], [1696, 898], [1719, 898], [1719, 909]]}, "center": {"56-166, T:0-1": [1708, 904]}},
-{"id": "ty31yu", "name": "PIXY", "description": "PIXY (픽시) is a 6-members girl group from South Korea under ALLART Entertainment and managed by Happy Tribe Entertainment. The group consists of six members: Ella, Lola, Satbyeol, Dia, Sua, and Dajeong. They debuted on February 24, 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/Pixy_(group)"]}, "path": {"56-166, T:0-1": [[1664, 898], [1664, 892], [1669, 892], [1670, 891], [1680, 891], [1681, 898]]}, "center": {"56-166, T:0-1": [1673, 895]}},
+{"id": "ty33l4", "name": "NCT 127", "description": "NCT 127 (엔씨티 127) is the second sub-unit of the 23-member South Korean boy group NCT. The sub-unit consists of 10 members: Taeil, Johnny, Taeyong, Yuta, Doyoung, Jaehyun, Winwin, Jungwoo, Mark, and Haechan. NCT 127 debuted on July 7th, 2016 under SM Entertainment with the extended play NCT#127.", "links": {"website": ["https://www.smtown.com/artist/musician/10033", "https://en.wikipedia.org/wiki/NCT_127"], "subreddit": ["NCT"]}, "path": {"126-166, T:0-1": [[1696, 909], [1696, 898], [1719, 898], [1719, 909]]}, "center": {"126-166, T:0-1": [1708, 904]}},
+{"id": "ty31yu", "name": "PIXY", "description": "PIXY (픽시) is a 6-member girl group from South Korea under ALLART Entertainment and managed by Happy Tribe Entertainment. The group consists of six members: Ella, Lola, Satbyeol, Dia, Sua, and Dajeong. They debuted on February 24, 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/Pixy_(group)"], "subreddit": ["kpop"]}, "path": {"87-122": [[1665, 892], [1665, 898], [1680, 898], [1680, 892], [1678, 892], [1678, 890], [1670, 890], [1670, 892]], "125-166, T:0-1": [[1663, 891], [1663, 899], [1681, 899], [1681, 890], [1669, 890], [1669, 891]]}, "center": {"87-122": [1673, 894], "125-166, T:0-1": [1672, 895]}},
{"id": "ty30rl", "name": "Torches", "description": "A set of 13 multicolored pixel torches. The first orange ones are based on the torches from the video game Minecraft. The other colored ones are based on Minecraft mods that add in more colors for torches to be.", "links": {"website": ["https://minecraft.fandom.com/wiki/Torch"], "subreddit": ["Minecraft"]}, "path": {"109-166, T:0-1": [[1489, 1305], [1489, 1395], [1492, 1396], [1492, 1305], [1492, 1304], [1491, 1304], [1492, 1305], [1491, 1305]]}, "center": {"109-166, T:0-1": [1491, 1350]}},
{"id": "ty2zik", "name": "Grass block", "description": "A common surface block in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Grass_Block"], "subreddit": ["Minecraft"]}, "path": {"109-164, T:0-1": [[326, 1735], [333, 1735], [333, 1742], [326, 1742]]}, "center": {"109-164, T:0-1": [330, 1739]}},
{"id": "ty2zb1", "name": "Shoto Todoroki", "description": "Head of the character Shoto Todoroki from My Hero Academia", "links": {"subreddit": ["BokuNoHeroAcademia"]}, "path": {"109-165, T:0-1": [[392, 1745], [392, 1744], [392, 1743], [390, 1743], [390, 1742], [389, 1742], [389, 1741], [388, 1741], [388, 1740], [388, 1739], [386, 1739], [386, 1737], [387, 1738], [387, 1736], [389, 1736], [389, 1733], [402, 1733], [402, 1734], [403, 1734], [403, 1737], [402, 1737], [402, 1740], [400, 1740], [400, 1741], [399, 1741], [399, 1742], [399, 1743], [400, 1743], [399, 1743], [397, 1743], [397, 1744], [396, 1744], [396, 1749], [394, 1749], [394, 1746], [393, 1746], [393, 1745], [392, 1745], [392, 1744]]}, "center": {"109-165, T:0-1": [395, 1739]}},
@@ -5583,7 +5571,7 @@
{"id": "ty2auc", "name": "Big cactus", "description": "A large Minecraft cactus, celebrating the Minecraft Speedrunning, seedfinding, and big cactus communities' ongoing quest to find the largest naturally generated cactus in Minecraft. They have found cacti over 20 blocks in height.", "links": {"website": ["https://youtu.be/36q4Ze0kFu8"]}, "path": {"109-166, T:0-1": [[1469, 1436], [1476, 1436], [1476, 1400], [1469, 1400]]}, "center": {"109-166, T:0-1": [1473, 1418]}},
{"id": "ty2app", "name": "Lum from Urusei Yatsura", "description": "The oni-alien girl from the Rumiko Takahashi manga (1978–1987) and anime (1981–1986) series Urusei Yatsura", "links": {"subreddit": ["UruseiYatsura"]}, "path": {"109-164, T:0-1": [[253, 1709], [257, 1709], [257, 1710], [258, 1710], [258, 1714], [259, 1715], [258, 1717], [258, 1719], [257, 1719], [257, 1723], [254, 1723], [254, 1719], [252, 1719], [252, 1711], [253, 1711]]}, "center": {"109-164, T:0-1": [255, 1715]}},
{"id": "ty2aj4", "name": "Krneta", "description": "A memorial for MAN3K of Grover.", "links": {}, "path": {"109-166, T:0-1": [[811, 1605], [814, 1605], [814, 1609], [815, 1609], [815, 1611], [816, 1611], [816, 1612], [817, 1612], [818, 1613], [815, 1613], [815, 1612], [814, 1612], [814, 1611], [813, 1611], [813, 1608], [812, 1608], [812, 1607], [811, 1607]]}, "center": {"109-166, T:0-1": [814, 1609]}},
-{"id": "ty2afu", "name": "Kanataso", "description": "Hololive VTuber Amane Kanata, known for her singing range and 50kg grip strength. She wears a star-shaped halo as she is an angel, and voices every single VTuber from Hololive. The art placed here is based on her Kanataso poster from the Hololive Japan Minecraft server.", "links": {"website": ["https://www.youtube.com/c/AmaneKanataCh"], "subreddit": ["Hololive"]}, "path": {"109-166, T:0-1": [[1372, 1112], [1379, 1112], [1378, 1113], [1378, 1114], [1379, 1115], [1379, 1124], [1370, 1124], [1369, 1123], [1369, 1114]]}, "center": {"109-166, T:0-1": [1374, 1118]}},
+{"id": "ty2afu", "name": "Kanataso", "description": "Hololive VTuber Amane Kanata, known for her singing range and 50kg grip strength. She wears a star-shaped halo as she is an angel, and voices every single VTuber from Hololive. The art placed here is based on her Kanataso poster from the Hololive Japan Minecraft server.", "links": {"website": ["https://www.youtube.com/c/AmaneKanataCh"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"109-166, T:0-1": [[1372, 1112], [1379, 1112], [1378, 1113], [1378, 1114], [1379, 1115], [1379, 1124], [1370, 1124], [1369, 1123], [1369, 1114]]}, "center": {"109-166, T:0-1": [1374, 1118]}},
{"id": "ty29i1", "name": "Basset Hound and Peace Offering", "description": "This is a basset hound made by a very small group ~5 people that were very passionate about protecting the cute puppy. The bone and heart were a gift, created by the MV group, given as a peace offering after an alliance was formed between MV and doggy group.", "links": {}, "path": {"109-166, T:0-1": [[1616, 1477], [1614, 1473], [1617, 1473], [1619, 1473], [1619, 1472], [1619, 1471], [1620, 1471], [1620, 1470], [1620, 1484], [1596, 1484], [1596, 1483], [1594, 1483], [1594, 1478], [1610, 1478], [1610, 1477], [1611, 1476], [1612, 1475], [1613, 1474], [1614, 1473], [1618, 1473], [1619, 1473], [1619, 1471], [1620, 1484]]}, "center": {"109-166, T:0-1": [1610, 1479]}},
{"id": "ty25n2", "name": "Bruvs B", "description": "A 5x5 B icon representing the Bruvs, a group of 11 guys mostly connected through their time at Isaac Newton Christian Academy in Cedar Rapids, IA.", "links": {}, "path": {"109-166, T:0-1": [[1570, 1995], [1575, 1995], [1575, 1999], [1570, 1999]]}, "center": {"109-166, T:0-1": [1573, 1997]}},
{"id": "ty23w0", "name": "Crookst", "description": "Crookst is featured for his high skill and unmatched consistency. He is often cited as one of the best 1.16 Random Seed Glitchless runners, and strong world record contender. He has three sub-10 times, which is 60% of all sub-10s.", "links": {"website": ["https://twitch.tv/crookst"]}, "path": {"109-166, T:0-1": [[1472, 1463], [1481, 1463], [1481, 1472], [1472, 1472]]}, "center": {"109-166, T:0-1": [1477, 1468]}},
@@ -5597,7 +5585,7 @@
{"id": "ty1wjl", "name": "fWhip", "description": "fWhip is a YouTuber for the game Minecraft who has been a part of many SMP (survival multiplayer) series such as Legacy, X-Life, Empires, and the modded Afterlife SMP.", "links": {"website": ["https://www.youtube.com/c/fWhip"], "subreddit": ["ThirdLifeSMP", "3rdlife"]}, "path": {"70-71": [[1121, 325], [1121, 334], [1130, 334], [1130, 325]], "68-69": [[1121, 317], [1121, 325], [1129, 325], [1129, 317]], "72-166, T:0-1": [[1129, 313], [1129, 322], [1138, 322], [1138, 313]]}, "center": {"70-71": [1126, 330], "68-69": [1125, 321], "72-166, T:0-1": [1134, 318]}},
{"id": "ty1uh0", "name": "Virginia Discord Logo", "description": "This was the former location of the Virginia Discord server, with a purple and pink star, before it was griefed.", "links": {}, "path": {"109-166, T:0-1": [[410, 1854], [410, 1850], [420, 1850], [420, 1854]]}, "center": {"109-166, T:0-1": [415, 1852]}},
{"id": "ty1uah", "name": "GoodTimesWithScar", "description": "GoodTimesWithScar is a disabled Minecraft YouTuber that joined Hermitcraft in season 4 alongside other members Cubfan, Iskall85, Rendog, Stressmonster, and Welsknight. He is known for his skills in building and terraforming.", "links": {"website": ["https://youtube.com/goodtimeswithscar", "https://hermitcraft.fandom.com/wiki/GoodTimesWithScar"], "subreddit": ["HermitCraft"]}, "path": {"16-31": [[887, 599], [887, 607], [896, 607], [896, 599]], "32-165, T:0-1": [[887, 615], [887, 623], [896, 623], [896, 618], [894, 615]]}, "center": {"16-31": [892, 603], "32-165, T:0-1": [892, 619]}},
-{"id": "ty1tvt", "name": "Ruby Kurosawa's Argentinian armband", "description": "An armband featuring Argentina's flag, symbolizing the alliance between r/LoveLive and the Argentinian Reddit communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina", "LoveLive"]}, "path": {"20-165, T:0-1": [[907, 677], [907, 672], [914, 678], [914, 680], [912, 682]]}, "center": {"20-165, T:0-1": [912, 679]}},
+{"id": "ty1tvt", "name": "Ruby Kurosawa's Argentinian armband", "description": "An armband featuring Argentina's flag, symbolizing the alliance between r/LoveLive and the Argentinian Reddit communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["argentina", "Republica_Argentina", "LoveLive"]}, "path": {"20-165, T:0-1": [[907, 677], [907, 672], [914, 678], [914, 680], [912, 682]]}, "center": {"20-165, T:0-1": [912, 679]}},
{"id": "ty1t2v", "name": "The Eel", "description": "An eel created by a group of friends that miraculously survived to the end despite numerous attacks.\n\nThe eel has gone through multiple iterations following these attacks, but managed to survive in part due to being coincidentally and conveniently placed between a few streamers and communities that took the eel under their wing and helped to defend it.\n\nWe all hate the eel, yet somehow, it remains...", "links": {}, "path": {"109-165, T:0-1": [[1517, 1762], [1517, 1761], [1515, 1758], [1513, 1757], [1525, 1757], [1525, 1766], [1513, 1766], [1513, 1757]]}, "center": {"109-165, T:0-1": [1519, 1762]}},
{"id": "ty1rcq", "name": "Sapnap", "description": "Nicholas \"Nick,\" better known online as Sapnap, is a member of the Dream Team. He is a Minecraft gaming YouTuber who makes videos about plugins he and his friends have coded. He has been uploading on YouTube since 2019.", "links": {"website": ["https://www.youtube.com/sapnap"], "subreddit": ["Sapnap"]}, "path": {"46-166, T:0-1": [[182, 926], [191, 926], [191, 935], [182, 935]]}, "center": {"46-166, T:0-1": [187, 931]}},
{"id": "ty1p7a", "name": "GFRIEND in Hangul (ㅇㅈㅊㄱ)", "description": "Shortened version of the name of the former Korean girl group GFRIEND (여자친구) in Hangul, stylized with their official colors.", "links": {"website": ["https://web.archive.org/web/20210610205222/https://www.sourcemusic.com/ko/girf_profile.php"], "subreddit": ["GFRIEND"]}, "path": {"109-166, T:0-1": [[1571, 1629], [1571, 1645], [1579, 1645], [1579, 1629]]}, "center": {"109-166, T:0-1": [1575, 1637]}},
@@ -5655,7 +5643,7 @@
{"id": "ty3wts", "name": "Grand Master", "description": "Grand Master is the pinnacle achievement in the first Tetris: The Grand Master arcade game.", "links": {"website": ["https://theabsolute.plus/", "https://tetris.wiki/Tetris_The_Grand_Master"], "subreddit": ["Tetris"]}, "path": {"151-158": [[967, 366], [967, 376], [989, 376], [989, 365], [978, 365], [978, 366]], "141-150": [[978, 365], [978, 376], [989, 376], [989, 365]], "36-46": [[755, 571], [755, 582], [766, 582], [766, 574], [761, 574], [761, 571]], "161-167, T:0-1": [[1683, 298], [1683, 309], [1694, 309], [1694, 298]]}, "center": {"151-158": [984, 371], "141-150": [984, 371], "36-46": [759, 578], "161-167, T:0-1": [1689, 304]}},
{"id": "ty3wm8", "name": "Charlotte", "description": "A demon character from the Japanese RPGMaker Game: Witch's Heart.", "links": {}, "path": {"56-166, T:0-1": [[1800, 972], [1812, 972], [1812, 985], [1800, 985]]}, "center": {"56-166, T:0-1": [1806, 979]}},
{"id": "ty3w9b", "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", "Pikminposting"]}, "path": {"29-34": [[151, 363], [148, 366], [148, 374], [147, 375], [147, 381], [150, 385], [152, 385], [155, 381], [155, 375], [154, 374], [154, 366]], "120-166, T:0-1": [[110, 706], [108, 708], [109, 709], [109, 710], [108, 711], [108, 714], [112, 714], [112, 711], [111, 710], [111, 709], [112, 708]]}, "center": {"29-34": [151, 377], "120-166, T:0-1": [110, 712]}},
-{"id": "ty3vor", "name": "Sakura Miko", "description": "Sakura Miko is a VTuber from the VTuber agency Hololive.\n\nThis was a work-in-progress art relocated after Spanish streamer NexxuzHD took over its original spot. It was built and maintained by members of r/okbuddyhololive.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Sakura_Miko"], "subreddit": ["okbuddyhololive", "Hololive"]}, "path": {"T:0-1": [[1896, 654], [1893, 657], [1893, 659], [1894, 660], [1894, 671], [1893, 671], [1893, 678], [1916, 678], [1916, 677], [1915, 676], [1915, 672], [1911, 667], [1911, 663], [1909, 660], [1909, 658], [1907, 656], [1906, 656], [1906, 655], [1904, 653], [1901, 653], [1900, 654]], "144-156": [[1940, 696], [1940, 732], [1973, 732], [1973, 696]], "163-166": [[1893, 695], [1920, 695], [1925, 695], [1925, 659], [1893, 659]]}, "center": {"T:0-1": [1903, 669], "144-156": [1957, 714], "163-166": [1909, 677]}},
+{"id": "ty3vor", "name": "Sakura Miko", "description": "Sakura Miko is a VTuber from the VTuber agency Hololive.\n\nThis was a work-in-progress art relocated after Spanish streamer NexxuzHD took over its original spot. It was built and maintained by members of r/okbuddyhololive.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Sakura_Miko"], "subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holofans"]}, "path": {"T:0-1": [[1896, 654], [1893, 657], [1893, 659], [1894, 660], [1894, 671], [1893, 671], [1893, 678], [1916, 678], [1916, 677], [1915, 676], [1915, 672], [1911, 667], [1911, 663], [1909, 660], [1909, 658], [1907, 656], [1906, 656], [1906, 655], [1904, 653], [1901, 653], [1900, 654]], "144-156": [[1940, 696], [1940, 732], [1973, 732], [1973, 696]], "163-166": [[1893, 695], [1920, 695], [1925, 695], [1925, 659], [1893, 659]]}, "center": {"T:0-1": [1903, 669], "144-156": [1957, 714], "163-166": [1909, 677]}},
{"id": "ty3tc5", "name": "Paula", "description": "Paula Jones is one of the playable characters in EarthBound. She is the first to join Ness, and the only female member of Ness's team. She usually uses frying pans as her primary weapon, along with many powerful PSI powers. This sprite resembles the one used in the Lost Underworld, an area where Ness's team appears to be small due to the relatively large dinosaurs in the area.", "links": {"website": ["https://earthbound.fandom.com/wiki/Paula"], "subreddit": ["earthbound"]}, "path": {"115-134": [[1984, 363], [1984, 368], [1986, 370], [1988, 370], [1990, 368], [1990, 363]], "149-167, T:0-1": [[1981, 317], [1981, 322], [1983, 324], [1985, 324], [1987, 322], [1987, 317]]}, "center": {"115-134": [1987, 366], "149-167, T:0-1": [1984, 320]}},
{"id": "ty3slj", "name": "Flag of Somalia", "description": "Somalia is a country in eastern Africa.\n\nThe flag of Somalia was supposed to be drawn here with help from r/brasil, but unfortunately it was not finished in time.", "links": {"website": ["https://en.wikipedia.org/wiki/Somalia", "https://en.wikipedia.org/wiki/Flag_of_Somalia"], "subreddit": ["Somalia"]}, "path": {"164, T:0-1": [[1233, 573], [1233, 574], [1236, 577], [1236, 581], [1240, 581], [1240, 576], [1241, 576], [1243, 573], [1240, 569], [1239, 569], [1239, 573]]}, "center": {"164, T:0-1": [1238, 576]}},
{"id": "ty3skm", "name": "MC/WC Alliance", "description": "While both the WCUE (Warrior Cats: Ultimate Edition) community and MCSR (Minecraft Speedrunning) community were expanding territory, They met on the left of the Green Windclan logo. The communities entered a war, neither community significantly stronger than the another. They eventually entered a stalemate, in which MCSR leader Feinberg and WCUE leader pavalineox entered a Discord call to negotiate. A very peculiar and chaotic (see website link for VOD timestamp) peace talk was held, and the new alliance took action against a large anime girl in construction. The anime girl was proven to be an overambitious project, and quickly overrun by many communities in the area, including the MC/WC alliance. The new ground gained from the war provided lots of new space for both communities. They were both able to complete the art they wanted; MCSR made art of a Fastion, and WCUE finished construction of all the clan symbols.\n\nMizkif raided the area the next day, cutting through the ground that was gained before. The Fastion was lost, and the Star and Thunder Clans were lost, along with the tree and half of Riverclan. The WCUE gained back ground after Mizkif's art was voided, restoring Thunderclan and Riverclan. MCSR was able to go North and create an End crystal and a big cactus.\n\nThey avoided disaster from Mizkif and a potentially bloody war between the two communities. They amassed multiple military victories. The alliance was not as prosperous as it was at their peak, but it was still alive and in good shape just in time for the whiteout.", "links": {"website": ["https://www.twitch.tv/videos/1445449517?t=03h39m07s"], "subreddit": ["wcueroblox"]}, "path": {"109-166, T:0-1": [[1409, 1498], [1499, 1498], [1499, 1436], [1498, 1436], [1498, 1401], [1469, 1400], [1469, 1436], [1436, 1436], [1436, 1472], [1409, 1472]]}, "center": {"109-166, T:0-1": [1465, 1460]}},
@@ -5673,7 +5661,7 @@
{"id": "ty3li2", "name": "Diamond sword", "description": "A diamond sword is one of the strongest swords in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"], "subreddit": ["Technoblade"]}, "path": {"124-166, T:0-1": [[182, 902], [215, 902], [215, 908], [182, 908]]}, "center": {"124-166, T:0-1": [199, 905]}},
{"id": "ty3kxn", "name": "Telephone", "description": "Telephones are devices that appear in the Mother series. They can be used by the party leader to contact family members and various businesses, but their primary function is to allow the player to save gameplay progress. Also symbolizes main character Ness's father, who never appears in-game and can only be contacted through telephone.", "links": {"website": ["https://earthbound.fandom.com/wiki/Telephone"], "subreddit": ["earthbound"]}, "path": {"78-167, T:0-1": [[1985, 288], [1983, 290], [1983, 295], [1985, 297], [1993, 297], [1996, 295], [1996, 292], [1997, 292], [1997, 290], [1995, 288]]}, "center": {"78-167, T:0-1": [1990, 293]}},
{"id": "ty3kt7", "name": "Schlatt & Co", "description": "A group of three Minecraft heads (ConnorEatsPants, jschlatt, IAmTy) created by Connorplace, a group of fans from Discord and Tumblr that allied with Technoplace. Represents Schlatt & Co. from SMPLive, a now closed Minecraft SMP (survival multiplayer).", "links": {"website": ["https://smplive.fandom.com/wiki/Schlatt_%26_Co."], "subreddit": ["ConnorEatsPants", "jschlatt"]}, "path": {"119-165, T:0-1": [[182, 908], [191, 908], [191, 917], [200, 917], [200, 926], [182, 926]]}, "center": {"119-165, T:0-1": [187, 921]}},
-{"id": "ty3kj0", "name": "Heartflags", "description": "What started as a single red heart in hour 19 soon saw individual hearts adopted as mini-flags representing support from other countries for Ukraine. These \"heartflags\" spread to cover a large part of Ukraine's flag. Like the sunflowers to the right of the Attack on Titan logo, these had to be reduced to make room for other artwork. This created stiff competition among Ukraine's supporters with several countries being relocated or replaced by other countries. These flags constantly changed hands and some were still in flux when the whiteout came.", "links": {"subreddit": ["placeukraine", "ukraine", "AmericanFlagInPlace", "AmericanFlagPlace", "MURICA", "argentina", "Austria", "azerbaijan", "BELGICA", "belgium", "Belgium2", "brasil", "bulgaria", "cambodia", "canada", "dankargentina", "de", "esPlace", "germany", "hungary", "Iraq", "ireland", "Italia", "italy", "ItalyPlace", "latvia", "lithuania", "Luxembourg", "maldives", "Nigeria", "placeazerbaijan", "placeBE", "placecanada", "placeDE", "PlaceIreland", "placeitaly", "PlaceNL", "poland", "Polska", "portugal", "PORTUGALCARALHO", "Republica_Argentina", "Romania", "Scotland", "spain", "syria", "taiwan", "thenetherlands", "ukplace", "unitedkingdom", "Wales"], "discord": ["fMf7RJBMw6"]}, "path": {"94-153": [[218, 172], [218, 212], [229, 212], [229, 196], [290, 196], [290, 212], [304, 212], [304, 207], [299, 204], [299, 172]], "48-67": [[119, 166], [119, 172], [109, 172], [109, 179], [121, 179], [129, 188], [135, 188], [143, 202], [184, 202], [187, 199], [187, 191], [218, 191], [218, 202], [235, 202], [240, 197], [299, 197], [299, 172], [166, 172], [166, 164], [158, 164], [158, 172], [136, 172], [136, 166]], "45-47": [[276, 161], [276, 165], [254, 165], [254, 172], [139, 172], [140, 181], [153, 197], [161, 197], [163, 202], [188, 202], [188, 192], [218, 192], [218, 197], [299, 197], [299, 172], [314, 172], [314, 161]], "11-25": [[0, 165], [276, 165], [276, 161], [847, 161], [847, 165], [999, 165], [999, 171], [0, 171]], "26-37": [[163, 165], [168, 171], [896, 171], [902, 165], [847, 165], [847, 161], [276, 161], [276, 165]], "39-44": [[276, 161], [276, 171], [316, 171], [316, 158], [337, 158], [337, 160], [420, 160], [420, 171], [847, 171], [847, 161], [420, 161], [420, 160], [337, 160], [337, 158], [316, 158], [316, 161]], "68-93": [[192, 172], [192, 191], [218, 191], [218, 199], [218, 209], [229, 209], [229, 202], [232, 196], [239, 196], [240, 197], [287, 197], [287, 198], [289, 200], [289, 208], [299, 208], [299, 172]], "156-165, T:0-1": [[219, 171], [219, 212], [230, 211], [229, 196], [239, 194], [240, 197], [247, 196], [247, 194], [239, 189], [239, 186], [238, 183], [239, 174], [245, 173], [253, 177], [275, 177], [282, 184], [281, 186], [279, 190], [273, 194], [279, 197], [282, 195], [288, 197], [290, 210], [303, 211], [305, 209], [298, 204], [298, 171], [247, 171]]}, "center": {"94-153": [230, 184], "48-67": [163, 187], "45-47": [282, 181], "11-25": [515, 166], "26-37": [538, 166], "39-44": [605, 166], "68-93": [249, 184], "156-165, T:0-1": [229, 180]}},
+{"id": "ty3kj0", "name": "Heartflags", "description": "What started as a single red heart in hour 19 soon saw individual hearts adopted as mini-flags representing support from other countries for Ukraine. These \"heartflags\" spread to cover a large part of Ukraine's flag. Like the sunflowers to the right of the Attack on Titan logo, these had to be reduced to make room for other artwork. This created stiff competition among Ukraine's supporters with several countries being relocated or replaced by other countries. These flags constantly changed hands and some were still in flux when the whiteout came.", "links": {"subreddit": ["placeukraine", "ukraine", "AmericanFlagInPlace", "AmericanFlagPlace", "MURICA", "argentina", "Austria", "azerbaijan", "BELGICA", "belgium", "Belgium2", "brasil", "bulgaria", "cambodia", "canada", "de", "esPlace", "germany", "hungary", "Iraq", "ireland", "Italia", "italy", "ItalyPlace", "latvia", "lithuania", "Luxembourg", "maldives", "Nigeria", "placeazerbaijan", "placeBE", "placecanada", "placeDE", "PlaceIreland", "placeitaly", "PlaceNL", "poland", "Polska", "portugal", "PORTUGALCARALHO", "Republica_Argentina", "Romania", "Scotland", "spain", "syria", "taiwan", "thenetherlands", "ukplace", "unitedkingdom", "Wales"], "discord": ["fMf7RJBMw6"]}, "path": {"94-153": [[218, 172], [218, 212], [229, 212], [229, 196], [290, 196], [290, 212], [304, 212], [304, 207], [299, 204], [299, 172]], "48-67": [[119, 166], [119, 172], [109, 172], [109, 179], [121, 179], [129, 188], [135, 188], [143, 202], [184, 202], [187, 199], [187, 191], [218, 191], [218, 202], [235, 202], [240, 197], [299, 197], [299, 172], [166, 172], [166, 164], [158, 164], [158, 172], [136, 172], [136, 166]], "45-47": [[276, 161], [276, 165], [254, 165], [254, 172], [139, 172], [140, 181], [153, 197], [161, 197], [163, 202], [188, 202], [188, 192], [218, 192], [218, 197], [299, 197], [299, 172], [314, 172], [314, 161]], "11-25": [[0, 165], [276, 165], [276, 161], [847, 161], [847, 165], [999, 165], [999, 171], [0, 171]], "26-37": [[163, 165], [168, 171], [896, 171], [902, 165], [847, 165], [847, 161], [276, 161], [276, 165]], "39-44": [[276, 161], [276, 171], [316, 171], [316, 158], [337, 158], [337, 160], [420, 160], [420, 171], [847, 171], [847, 161], [420, 161], [420, 160], [337, 160], [337, 158], [316, 158], [316, 161]], "68-93": [[192, 172], [192, 191], [218, 191], [218, 199], [218, 209], [229, 209], [229, 202], [232, 196], [239, 196], [240, 197], [287, 197], [287, 198], [289, 200], [289, 208], [299, 208], [299, 172]], "156-165, T:0-1": [[219, 171], [219, 212], [230, 211], [229, 196], [239, 194], [240, 197], [247, 196], [247, 194], [239, 189], [239, 186], [238, 183], [239, 174], [245, 173], [253, 177], [275, 177], [282, 184], [281, 186], [279, 190], [273, 194], [279, 197], [282, 195], [288, 197], [290, 210], [303, 211], [305, 209], [298, 204], [298, 171], [247, 171]]}, "center": {"94-153": [230, 184], "48-67": [163, 187], "45-47": [282, 181], "11-25": [515, 166], "26-37": [538, 166], "39-44": [605, 166], "68-93": [249, 184], "156-165, T:0-1": [229, 180]}},
{"id": "ty3jg5", "name": "Ness", "description": "Ness is the silent main protagonist of EarthBound and is analogous to Ninten and Lucas in their respective games. He greatly enjoys baseball; not only are most of his weapons various types of baseball bats, but he can also equip several baseball caps.", "links": {"website": ["https://earthbound.fandom.com/wiki/Ness"], "subreddit": ["earthbound"]}, "path": {"20-46": [[704, 306], [704, 309], [703, 310], [704, 311], [704, 315], [705, 316], [705, 319], [709, 319], [709, 316], [710, 315], [710, 311], [711, 310], [710, 309], [710, 306]], "57-166, T:0-1": [[1957, 320], [1962, 318], [1967, 320], [1965, 317], [1968, 315], [1968, 313], [1965, 309], [1969, 305], [1969, 300], [1965, 297], [1959, 297], [1955, 300], [1956, 301], [1955, 303], [1955, 305], [1956, 307], [1954, 312], [1958, 317]]}, "center": {"20-46": [707, 310], "57-166, T:0-1": [1962, 303]}},
{"id": "ty3i2w", "name": "Gummy Karl", "description": "The old Minecraft face of the streamer Karl Jacobs.", "links": {"website": ["https://www.twitch.tv/karljacobs"], "subreddit": ["KarlJacobs"]}, "path": {"109-165, T:0-1": [[1277, 1116], [1277, 1125], [1286, 1125], [1286, 1116]]}, "center": {"109-165, T:0-1": [1282, 1121]}},
{"id": "ty3ht0", "name": "Foolsamponk", "description": "The Minecraft heads of the Dream SMP (survival multiplayer) members Awesamdude, DropsByPonk, and Foolish_Gamers with little blush marks.", "links": {"subreddit": ["dreamsmp", "FoolishGamers"]}, "path": {"109-165, T:0-1": [[1188, 1115], [1213, 1115], [1213, 1122], [1188, 1122]]}, "center": {"109-165, T:0-1": [1201, 1119]}},
@@ -5684,15 +5672,15 @@
{"id": "ty3ftt", "name": "TinaKitten", "description": "Minecraft head of the streamer TinaKitten.", "links": {"website": ["https://twitch.tv/TinaKitten"]}, "path": {"60-165, T:0-1": [[137, 935], [146, 935], [146, 944], [137, 944]]}, "center": {"60-165, T:0-1": [142, 940]}},
{"id": "ty3fl9", "name": "Karl Jacobs", "description": "Minecraft head of the streamer Karl Jacobs.", "links": {"website": ["https://twitch.tv/karljacobs"], "subreddit": ["KarlJacobs"]}, "path": {"54-165, T:0-1": [[137, 926], [146, 926], [146, 935], [137, 935]]}, "center": {"54-165, T:0-1": [142, 931]}},
{"id": "ty3bka", "name": "Sulphur-crested cockatoo", "description": "The sulphur-crested cockatoo is a white bird with a gold crest native to Australia. It wrecks anything and everything while knowing fully that what it's doing is wrong.", "links": {"website": ["https://en.wikipedia.org/wiki/Sulphur-crested_cockatoo"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"86-165, T:0-1": [[678, 741], [671, 741], [671, 731], [672, 730], [674, 729], [675, 728], [676, 728], [676, 734], [677, 735], [677, 740]]}, "center": {"86-165, T:0-1": [674, 738]}},
-{"id": "tygqmx", "name": "Swiss / Valais flag", "description": "Originally intended to be the flag of the Swiss canton \"Valais\" (in the Southern area of the country), it was quickly converted into a Swiss flag by other competing cantons.", "links": {"website": ["https://www.valais.ch"]}, "path": {"56-165, T:0-1": [[1186, 885], [1186, 889], [1190, 889], [1190, 885]]}, "center": {"56-165, T:0-1": [1188, 887]}},
-{"id": "tygpkh", "name": "Ktiux", "description": "Ktiux is a famous streamer VTuber from Chile. Twitch people know her for being \"la mas funada\".", "links": {"website": ["https://www.twitch.tv/ktiux"]}, "path": {"56-166, T:0-1": [[1619, 847], [1619, 853], [1627, 853], [1627, 847]]}, "center": {"56-166, T:0-1": [1623, 850]}},
+{"id": "tygqmx", "name": "Flag of Switzerland", "description": "Switzerland is a country in Central Europe.\n\nThis was originally intended to be the flag of the Swiss canton Valais, in the southern area of the country. It was quickly converted into a Swiss flag by other competing cantons.", "links": {"website": ["https://en.wikipedia.org/wiki/Switzerland", "https://en.wikipedia.org/wiki/Flag_of_Switzerland"], "subreddit": ["Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"158-165, T:0-1": [[1185, 884], [1185, 890], [1191, 890], [1191, 884]]}, "center": {"158-165, T:0-1": [1188, 887]}},
+{"id": "tygpkh", "name": "Ktiux", "description": "Ktiux is a famous streamer and VTuber from Chile. Twitch people know her for being \"la mas funada\" (\"the most fun\").", "links": {"website": ["https://www.twitch.tv/ktiux"]}, "path": {"131-166, T:0-1": [[1622, 846], [1620, 848], [1620, 849], [1619, 850], [1622, 853], [1624, 853], [1627, 850], [1626, 849], [1626, 848], [1624, 846]]}, "center": {"131-166, T:0-1": [1623, 850]}},
{"id": "tygoy6", "name": "Costa Rica hearts", "description": "Seven hearts depicting the flag of Costa Rica, one for each Costa Rican province.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"126-151, 156-162": [[1328, 432], [1326, 434], [1326, 436], [1331, 441], [1371, 441], [1376, 436], [1376, 434], [1374, 432]], "152-155": [[1318, 432], [1316, 434], [1316, 436], [1321, 441], [1371, 441], [1376, 436], [1376, 434], [1374, 432]], "163-164, T:0-1": [[1308, 432], [1306, 434], [1306, 436], [1311, 441], [1371, 441], [1376, 436], [1376, 434], [1374, 432]]}, "center": {"126-151, 156-162": [1351, 437], "152-155": [1346, 437], "163-164, T:0-1": [1341, 437]}},
{"id": "tygo29", "name": "Whitetail deer", "description": "A national symbol of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/White-tailed_deer"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"123-166, T:0-1": [[1377, 428], [1377, 434], [1376, 434], [1376, 440], [1377, 440], [1377, 446], [1383, 446], [1383, 441], [1384, 440], [1385, 440], [1385, 446], [1393, 446], [1393, 436], [1394, 436], [1396, 434], [1396, 433], [1397, 432], [1397, 430], [1398, 429], [1398, 425], [1389, 425], [1389, 427], [1387, 429], [1387, 431], [1386, 432], [1381, 432], [1381, 430], [1379, 428]]}, "center": {"123-166, T:0-1": [1388, 436]}},
{"id": "tygmbi", "name": "Bird", "description": "A bird from the game Celeste who appears throughout the game, sometimes teaching new game mechanics. The bird is lightly implied to be friendly or affiliated with another character, Granny. It plays a major role in the story of Chapter 9: Farewell.\n\nOriginally, the controversial character Tingle from the Legend of Zelda franchise was to be constructed sitting on top of the Knight's head instead of the bird. Following a mildly narrow vote in favour, construction began, but the construction was blocked and more people voiced their disapproval of Tingle's inclusion. Inclusion of the more well-known companion Navi from a prior game were proposed as a compromise, but Tingle's relative obscurity made his would-be inclusion special to his proponents and made Navi's inclusion miss the point for them. Most Zelda ambassadors left the coordination server for the Bench project following this event.", "links": {"website": ["https://celestegame.fandom.com/wiki/List_of_characters#Bird", "http://www.celestegame.com", "https://en.wikipedia.org/wiki/Celeste_(video_game)"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"78-166, T:0-1": [[1376, 59], [1376, 61], [1372, 67], [1371, 67], [1371, 69], [1373, 69], [1375, 71], [1379, 71], [1379, 68], [1381, 66], [1381, 63], [1383, 63], [1383, 62], [1380, 59]]}, "center": {"78-166, T:0-1": [1378, 65]}},
-{"id": "tygkaw", "name": "FanoDoro", "description": "Fano is an artist on Twitter.", "links": {"website": ["https://twitter.com/FanoDoro"]}, "path": {"56-166, T:0-1": [[1601, 868], [1601, 857], [1607, 857], [1607, 868], [1604, 868]]}, "center": {"56-166, T:0-1": [1604, 863]}},
+{"id": "tygkaw", "name": "FanoDoro", "description": "FanoDoro (Fano) is an artist on Twitter.", "links": {"website": ["https://twitter.com/FanoDoro"]}, "path": {"129-166, T:0-1": [[1601, 857], [1601, 867], [1602, 867], [1602, 869], [1606, 869], [1606, 867], [1607, 867], [1607, 857]]}, "center": {"129-166, T:0-1": [1604, 863]}},
{"id": "tyginc", "name": "Físico Gamer", "description": "Mexican streamer that teaches physics while playing games. His community is called (átomos de la creación) and they created this on the last hours of the event.", "links": {"website": ["https://www.facebook.com/elfisicogamer"]}, "path": {"109-165, T:0-1": [[1751, 1810], [1727, 1810], [1727, 1818], [1752, 1818], [1752, 1810]]}, "center": {"109-165, T:0-1": [1740, 1814]}},
{"id": "tyggsu", "name": "Amnesty International", "description": "Amnesty International is an international non-governmental organization focused on human rights.\n\nThey were the supported during the Zevent 2020 where the french twitch community raised 5 724 377€ in 55hours.", "links": {}, "path": {"109-166, T:0-1": [[1272, 1446], [1262, 1442], [1262, 1433], [1266, 1432], [1268, 1430], [1266, 1427], [1273, 1421], [1276, 1425], [1274, 1429], [1280, 1435], [1275, 1439], [1280, 1441]]}, "center": {"109-166, T:0-1": [1271, 1435]}},
-{"id": "tygg2d", "name": "Gusel_12", "description": "A small Twitch streamer VTuber from Chile.", "links": {"website": ["https://www.twitch.tv/gusel_12"]}, "path": {"56-166, T:0-1": [[1608, 856], [1608, 868], [1613, 868], [1614, 856], [1611, 856]]}, "center": {"56-166, T:0-1": [1611, 862]}},
+{"id": "tygg2d", "name": "Gusel_12", "description": "Gusel_12 is a small Twitch streamer and VTuber from Chile.", "links": {"website": ["https://www.twitch.tv/gusel_12"]}, "path": {"127-166, T:0-1": [[1610, 856], [1608, 858], [1608, 867], [1609, 867], [1609, 869], [1613, 869], [1613, 867], [1614, 867], [1614, 860], [1612, 858], [1611, 858], [1611, 856]]}, "center": {"127-166, T:0-1": [1611, 863]}},
{"id": "tygfo9", "name": "GameMind", "description": "A Clan created in 2010 for LoL and various multiplayer games. Sadly, it almost disbanded and only two members are left. We wanted to add it as a memory of the past. This logo was our 7th attempt on the canvas, The 6th was destroyed by Rec7", "links": {}, "path": {"109-166, T:0-1": [[1623, 1659], [1616, 1659], [1616, 1664], [1618, 1664], [1618, 1665], [1620, 1665], [1620, 1666], [1622, 1666], [1622, 1667], [1624, 1667], [1624, 1660]]}, "center": {"109-166, T:0-1": [1620, 1662]}},
{"id": "tygfo3", "name": "Athena's Line", "description": "Symbolic of a 426 HP goddess, this 20-pixel line held true as a proud ally of Virginia Tech, Azil, and Cambodia. The line was one of the last pieces tarnished by the great erasing, surviving untouched until 82:34. [Life: 77:01 - 83:01] - MP", "links": {"website": ["https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)"]}, "path": {"154-165, T:0-1": [[988, 379], [1009, 379], [1009, 381], [988, 381]]}, "center": {"154-165, T:0-1": [999, 380]}},
{"id": "tygf32", "name": "Guscord", "description": "This is a sign made by GUSCORD in honor of their mascot Gustavo \"Gus\" Fring", "links": {"discord": ["gus"]}, "path": {"109-167, T:0-1": [[1961, 1475], [1961, 1481], [1976, 1481], [1976, 1475]]}, "center": {"109-167, T:0-1": [1969, 1478]}},
@@ -5706,14 +5694,14 @@
{"id": "tyfsw2", "name": "Flag of Sabadell", "description": "The flag of Sabadell, a city in Catalonia, Spain.", "links": {"subreddit": ["sabadell"], "discord": ["kuCJVzFc2Y"]}, "path": {"109-166, T:0-1": [[704, 1701], [704, 1706], [715, 1706], [715, 1701]]}, "center": {"109-166, T:0-1": [710, 1704]}},
{"id": "tyflqr", "name": "Twinks & Twunks", "description": "The community of the hottest twinks in twunks on the internet.\n\nThe pansexual flag background represents our members that are gay, bi and everything in between.", "links": {"subreddit": ["twinks"]}, "path": {"163-166, T:0-1": [[254, 1039], [284, 1039], [284, 1043], [254, 1043]]}, "center": {"163-166, T:0-1": [266, 1041]}},
{"id": "tyfllf", "name": "GG Games", "description": "GG Games is a Spanish YouTuber focused on Five Nights at Freddy's, a survival horror game franchise where the player has to protect themselves from hostile animatronic characters.\n\nIn the left pixel art there is \"Feddy\", a FNaF meme where Freddy Fazbear is poorly drawn. On top of Feddy, there's the \"6 AM\" pixel art that shows up when you beat a night in FNaF 1.\n\nIn the right painting, there is (starting from top-left, clockwise)\n-Glossy Puppet, the original character of the FNaF YouTuber GG Games.\n-Rogelio head, the head of the Spring Bonnie cosplay that GG Games made.\n-Purple Guy/William Afton sprite from the SAVETHEM minigame from FNaF 2.\n-animdude, the logo of the creator of FNaF, Scott Cawthon.\n-GG Games, the creator of all these FNaF images and a FNaF Spanish Streamer and YouTuber).\n-A crown on top of the GG Games text, referring to the fact that GG Games usually wears a crown in his videos and streams.\n-\"LEMINE\" text, a fictional brand of soda, which is a meme in the GG Games community.\n-A pixel art of the LEMINE vending machine.\n\nOn the top of the pixel art, there's the head of a pug dog breed referring to streamer and YouTuber BersGamer's dog. GG Games made that pixel art for Bers. On the right side of the pug, there's text that says \"FNAF ARMY\", a pixel art that GG Games made referring to one of the biggest FNaF Spanish YouTubers groups that he's a part of.", "links": {"website": ["https://www.youtube.com/channel/UCFgPgD20NBkt27gRrqaIKvg"], "subreddit": ["fivenightsatfreddys"]}, "path": {"110-148": [[1867, 270], [1867, 309], [1839, 309], [1839, 370], [1867, 370], [1867, 320], [1919, 320], [1919, 270]], "91-109": [[1867, 270], [1867, 320], [1919, 320], [1919, 270]], "67-90": [[1890, 295], [1890, 321], [1918, 321], [1918, 295]], "149-166, T:0-1": [[1867, 269], [1867, 298], [1838, 298], [1838, 371], [1867, 371], [1867, 320], [1919, 320], [1919, 269]]}, "center": {"110-148": [1892, 295], "91-109": [1893, 295], "67-90": [1904, 308], "149-166, T:0-1": [1896, 315]}},
-{"id": "tyfbqo", "name": "Suika Ibuki", "description": "Suika Ibuki is a Touhou character also famous for the We Are Japanese Goblin video. Here she was drawn in the style of an Among Us crewmate.", "links": {"website": ["https://en.touhouwiki.net/wiki/Suika_Ibuki"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"56-166, T:0-1": [[1779, 826], [1785, 826], [1785, 832], [1779, 832]]}, "center": {"56-166, T:0-1": [1782, 829]}},
+{"id": "tyfbqo", "name": "Suika Ibuki", "description": "Suika Ibuki is a Touhou character also famous for the We Are Japanese Goblin video. Here she is drawn in the style of an Among Us crewmate.", "links": {"website": ["https://en.touhouwiki.net/wiki/Suika_Ibuki"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"161-166, T:0-1": [[1779, 826], [1779, 830], [1781, 832], [1784, 832], [1784, 828], [1785, 827], [1785, 826]]}, "center": {"161-166, T:0-1": [1781, 829]}},
{"id": "tyf8tr", "name": "Cornell University", "description": "Cornell University is a university in Ithaca, New York, United States. This art shows a red C for Cornell and a small image of the (unofficial but highly recognized) Cornell mascot Touchdown, or the Big Red Bear.", "links": {"website": ["https://www.cornell.edu/", "https://en.wikipedia.org/wiki/Cornell_University"], "subreddit": ["Cornell"]}, "path": {"109-165, T:0-1": [[379, 1553], [379, 1564], [392, 1564], [392, 1553]]}, "center": {"109-165, T:0-1": [386, 1559]}},
{"id": "tyf41s", "name": "Nico", "description": "Nico is a green rabbit character created by Studio Nimai, a Spanish indie animation studio.\n\nThis art was drawn by Studio Nimai's community on r/StudioNimai.", "links": {"website": ["https://www.youtube.com/c/StudionimaiBlogspotPLUS"], "subreddit": ["StudioNimai"]}, "path": {"79-166, T:0-1": [[1384, 241], [1382, 243], [1382, 249], [1390, 249], [1390, 243], [1388, 241]]}, "center": {"79-166, T:0-1": [1386, 245]}},
{"id": "tyew21", "name": "Stone Mask", "description": "In JoJo's Bizarre Adventure, The Stone Mask is the ancient Aztec tool by which characters may become Vampires, famously used by Dio Brando in Part 1: Phantom Blood. This version appears in Part 2: Battle Tendency, when Pillar Man Kars uses it and the sunlight-concentrating Red Stone of Aja to become the Ultimate Life Form.\n\nNear the end of the event, The JoJo community began working on the Stone Mask and Red Stone of Aja, symbols representing parts of the anime/manga, Phantom Blood and Battle Tendency respectively. While there was not enough time to finish the full Red Stone of Aja pixel art, some fans managed to place red pixels in the forehead of the mask in time as a reference to how the stone was used in the final battle.", "links": {"website": ["https://jojowiki.com/Stone_Mask"], "subreddit": ["ShitPostCrusaders", "StardustCrusaders", "wholesomejojo"]}, "path": {"163-166, T:0-1": [[126, 932], [124, 928], [124, 924], [127, 921], [132, 921], [135, 925], [135, 929], [133, 932]]}, "center": {"163-166, T:0-1": [129, 927]}},
-{"id": "tyes7l", "name": "Treemongus", "description": "A tree built around an among us figurine in a cooperation between random reddit users. Lost it's defense in the final battle against the void", "links": {}, "path": {"109-165, T:0-1": [[1122, 1185], [1111, 1185], [1112, 1203], [1121, 1203]]}, "center": {"109-165, T:0-1": [1117, 1194]}},
+{"id": "tyes7l", "name": "Treemongus", "description": "A tree built around an among us figurine in a cooperation between random reddit users, initiated by the r/Europe discord server. Lost it's defense in the final battle against the void", "links": {"discord": ["avropa"]}, "path": {"109-165, T:0-1": [[1122, 1185], [1111, 1185], [1112, 1203], [1121, 1203]]}, "center": {"109-165, T:0-1": [1117, 1191]}},
{"id": "tyeqpa", "name": "Reset Kalar", "description": "Reset is a Kalar character from the Rance game series. Kalars are a female-only race with light blue hair and crystals on their foreheads. She is the daughter of Rance and the Kalar queen, making her the Kalar princess. Reset inherits Rance's ability to have no level cap, giving her infinite potential for power rivaling the gods. As a Kalar, her body ages faster than a human, but her mind is still very childish.", "links": {"website": ["https://alicesoft.fandom.com/wiki/Reset_Kalar"], "subreddit": ["Alicesoftgames"]}, "path": {"144-164, T:0-1": [[1056, 443], [1068, 443], [1068, 445], [1073, 453], [1073, 458], [1072, 459], [1071, 460], [1068, 460], [1068, 461], [1067, 462], [1065, 464], [1059, 464], [1058, 463], [1056, 462], [1054, 460], [1054, 459], [1055, 458], [1055, 452], [1054, 451], [1055, 446], [1057, 443]]}, "center": {"144-164, T:0-1": [1063, 453]}},
{"id": "tyeop7", "name": "Alankui", "description": "Alankui is a streamer, and this drawing was made by his community with love.", "links": {"website": ["https://www.twitch.tv/alankui"]}, "path": {"131-156": [[1856, 1276], [1856, 1257], [1835, 1257], [1835, 1276]], "163-164, T:0-1": [[1834, 1276], [1856, 1276], [1856, 1257], [1834, 1257]]}, "center": {"131-156": [1846, 1267], "163-164, T:0-1": [1845, 1267]}},
-{"id": "tyedmd", "name": "Ecuadorian Flag", "description": "", "links": {}, "path": {"109-165, T:0-1": [[934, 1557], [1093, 1560], [1090, 1589], [948, 1588], [942, 1589], [952, 1589], [946, 1588], [945, 1557]]}, "center": {"109-165, T:0-1": [1018, 1573]}},
+{"id": "tyedmd", "name": "Ecuadorian Flag", "description": "", "links": {}, "path": {"109-165, T:0-1": [[950, 1564], [1091, 1564], [1091, 1586], [950, 1586]]}, "center": {"109-165, T:0-1": [961, 1573]}},
{"id": "tye8aq", "name": "Giorno Giovanna", "description": "Protagonist of Part 5 and the fifth JoJo of the JoJo's Bizarre Adventure series\n\n\"I, Giorno Giovanna, have a dream...\"", "links": {}, "path": {"109-166, T:0-1": [[492, 1828], [492, 1826], [493, 1826], [493, 1823], [494, 1823], [494, 1821], [500, 1821], [500, 1826], [502, 1826], [502, 1828]]}, "center": {"109-166, T:0-1": [497, 1825]}},
{"id": "tye45b", "name": "Aurateur", "description": "AURA references Twitch streamer Aurateur, who uses an emote similar to the adjacent Saitama artwork.", "links": {"website": ["https://www.twitch.tv/aurateur"], "subreddit": ["aurateur"]}, "path": {"109-165, T:0-1": [[1960, 1549], [1960, 1567], [1964, 1567], [1964, 1548], [1960, 1548]]}, "center": {"109-165, T:0-1": [1962, 1558]}},
{"id": "tydwp3", "name": "PanchitoLV", "description": "Algun día seré alguien a quien conozcan en todas partes. :)", "links": {"website": ["https://www.youtube.com/channel/UCCoDtp8SthP0qs4cDQyP4Lw"], "subreddit": ["anime"]}, "path": {"109-166, T:0-1": [[1315, 1575], [1332, 1575], [1332, 1604], [1316, 1604], [1315, 1604], [1315, 1603]]}, "center": {"109-166, T:0-1": [1324, 1590]}},
@@ -5792,12 +5780,12 @@
{"id": "ty7x21", "name": "Gymzl", "description": "Grammar school in the Czech Republic in Zlín", "links": {"website": ["https://rplace.space/combined/"]}, "path": {"109-165, T:0-1": [[1146, 1602], [1155, 1602], [1155, 1610], [1146, 1610]]}, "center": {"109-165, T:0-1": [1151, 1606]}},
{"id": "ty7w80", "name": "A Hat in Time hat", "description": "A tiny hat from the video game A Hat in Time", "links": {"subreddit": ["AHatInTime"]}, "path": {"109-165, T:0-1": [[1091, 1526], [1085, 1526], [1085, 1524], [1086, 1524], [1086, 1521], [1090, 1521], [1090, 1524], [1091, 1524]]}, "center": {"109-165, T:0-1": [1088, 1524]}},
{"id": "ty7v38", "name": "Lily the Fox Mechanic", "description": "Lily the Fox Mechanic is the mascot of the YouTube channel Lost Pause.", "links": {"website": ["https://lost-pause.fandom.com/wiki/Lily_the_Fox_Mechanic"], "subreddit": ["lostpause"]}, "path": {"161-166, T:0-1": [[1865, 637], [1865, 648], [1881, 648], [1881, 644], [1882, 643], [1881, 642], [1881, 637]]}, "center": {"161-166, T:0-1": [1874, 643]}},
-{"id": "ty7ub3", "name": "Kanata's halo", "description": "Hololive VTuber Aname Kanata's signature halo, often referred to as a shuriken by her fans. It's typically either yellow or blue depending on her outfits.", "links": {"website": ["https://en.hololive.tv/portfolio/items/amane-kanata"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1398, 967], [1399, 965], [1401, 964], [1402, 964], [1402, 971]]}, "center": {"56-166, T:0-1": [1401, 967]}},
+{"id": "ty7ub3", "name": "Kanata's halo", "description": "Hololive VTuber Aname Kanata's signature halo, often referred to as a shuriken by her fans. It's typically either yellow or blue depending on her outfits.", "links": {"website": ["https://en.hololive.tv/portfolio/items/amane-kanata"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1398, 967], [1399, 965], [1401, 964], [1402, 964], [1402, 971]]}, "center": {"56-166, T:0-1": [1401, 967]}},
{"id": "ty7s3n", "name": "Imposter", "description": "one of the many imposters on the canvas", "links": {"subreddit": ["amongus"]}, "path": {"109-165, T:0-1": [[901, 1325], [910, 1325], [909, 1326], [910, 1329], [901, 1329]]}, "center": {"109-165, T:0-1": [905, 1327]}},
{"id": "ty7py6", "name": "Stuffy", "description": "Stuffy is an inside joke between the contributor teams of Hypixel, a server for the game Minecraft.", "links": {"website": ["https://docs.google.com/document/d/1xhLlQHG5dMlJlcn5aoDa3Oh17Bbf1unZ6P7IXJiAACw"], "subreddit": ["Stuffy", "hypixel", "hypixelplace"]}, "path": {"15-45": [[80, 799], [80, 826], [89, 826], [89, 799]], "46-62": [[80, 799], [80, 808], [89, 808], [89, 799]]}, "center": {"15-45": [85, 813], "46-62": [85, 804]}},
{"id": "ty7ndp", "name": "Azur Lane & KanColle", "description": "Two characters from the mobile gacha game Azur Lane, and one from the F2P game Kantai Collection, KanColle for short. Admiral Graf Spee (Left) and New Jersey (Right) are both from Azur Lane, and Kongou (Middle) is from KanColle. The middle character was originally Akagi, another Azur Lane character, but was changed to KanColle's Kongou in the final image (note the differences in pixelart style).", "links": {"website": ["https://www.azurlane.jp/"], "subreddit": ["AzureLane"]}, "path": {"114-166, T:0-1": [[189, 1121], [189, 1103], [136, 1103], [136, 1121]]}, "center": {"114-166, T:0-1": [163, 1112]}},
{"id": "ty7l72", "name": "UTC Logo", "description": "UTC (Université de Technologie de Compiègne) is a french engineering school based in Compiègne, France. The UTC letters were made thanks to Starkid community, reason why there's a heart", "links": {"website": ["https://utc.fr"]}, "path": {"109-165, T:0-1": [[355, 1490], [369, 1490], [369, 1509], [362, 1509], [361, 1500], [355, 1499], [355, 1490], [369, 1490]]}, "center": {"109-165, T:0-1": [363, 1498]}},
-{"id": "ty7hxq", "name": "Artia", "description": "Artia is a former Chinese VTuber who was a member of the now-defunct Hololive China. She's known in the fanbase as one of the first members to engage with the English-speaking community by being the first one to visit the Hololive subreddit and by streaming on Twitch.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Artia"], "subreddit": ["Hololive"]}, "path": {"66-164, T:0-1": [[1307, 552], [1307, 567], [1322, 567], [1322, 552]]}, "center": {"66-164, T:0-1": [1315, 560]}},
+{"id": "ty7hxq", "name": "Artia", "description": "Artia is a former Chinese VTuber who was a member of the now-defunct Hololive China. She's known in the fanbase as one of the first members to engage with the English-speaking community by being the first one to visit the Hololive subreddit and by streaming on Twitch.", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Artia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"66-164, T:0-1": [[1307, 552], [1307, 567], [1322, 567], [1322, 552]]}, "center": {"66-164, T:0-1": [1315, 560]}},
{"id": "ty7gsa", "name": "NICO_THE_PRO", "description": "The Minecraft head of the Italian YouTuber and mapmaker NICO_THE_PRO.", "links": {"website": ["https://www.youtube.com/NICOTHEPROO"], "subreddit": ["NICO_THE_PRO"]}, "path": {"109-166, T:0-1": [[999, 1749], [1007, 1749], [1007, 1760], [999, 1760]]}, "center": {"109-166, T:0-1": [1003, 1755]}},
{"id": "ty7ekl", "name": "Touhou 12.3 Hisoutensoku", "description": "The program icon for Touhou 12.3 Hisoutensoku, The third fighting game in the Touhou Project series. To the right of the icon is the last four letters of Hisouten[soku].", "links": {"website": ["https://en.touhouwiki.net/wiki/Touhou_Hisoutensoku"], "subreddit": ["touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1657, 1550], [1657, 1557], [1682, 1557], [1682, 1550]]}, "center": {"109-166, T:0-1": [1670, 1554]}},
{"id": "ty79f1", "name": "Acid Jar", "description": "An Acid Jar, from The Wandering Inn", "links": {"website": ["https://thewanderinginn.fandom.com/wiki/Acid_Flies"], "subreddit": ["WanderingInn", "SFFA"]}, "path": {"109-166, T:0-1": [[1681, 1361], [1683, 1361], [1683, 1364], [1681, 1364]]}, "center": {"109-166, T:0-1": [1682, 1363]}},
@@ -5816,7 +5804,6 @@
{"id": "ty6k6u", "name": "Ame-chan", "description": "The main character of Needy Girl Overdose/Needy Streamer Overload while not acting as KAngel.", "links": {"website": ["https://twitter.com/infowss"], "subreddit": ["NeedyStreamerOverload"]}, "path": {"109-165, T:0-1": [[1883, 1250], [1901, 1250], [1902, 1254], [1898, 1254], [1896, 1255], [1896, 1263], [1896, 1273], [1895, 1273], [1894, 1274], [1892, 1275], [1891, 1274], [1883, 1274]]}, "center": {"109-165, T:0-1": [1890, 1261]}},
{"id": "ty6jdv", "name": "Crescent moon", "description": "The waxing crescent phase of the moon on June 13th, 2013, The debut date of music group Bangtan Sonyeondan and member Jimin's tattoo.", "links": {"website": ["https://twitter.com/bts_twt"], "subreddit": ["bangtan"]}, "path": {"109-166, T:0-1": [[1925, 1174], [1925, 1175], [1927, 1175], [1927, 1176], [1929, 1176], [1929, 1177], [1930, 1177], [1930, 1178], [1930, 1179], [1931, 1179], [1931, 1183], [1930, 1183], [1930, 1184], [1929, 1184], [1928, 1184], [1928, 1185], [1926, 1185], [1926, 1184], [1925, 1184], [1924, 1184], [1924, 1183], [1923, 1183], [1923, 1182], [1922, 1182], [1922, 1181], [1921, 1181], [1920, 1181], [1920, 1183], [1920, 1184], [1921, 1184], [1921, 1185], [1922, 1185], [1922, 1186], [1922, 1187], [1924, 1187], [1924, 1188], [1930, 1188], [1931, 1188], [1931, 1187], [1932, 1187], [1933, 1187], [1933, 1186], [1934, 1186], [1934, 1185], [1935, 1185], [1935, 1178], [1935, 1177], [1934, 1177], [1934, 1176], [1933, 1176], [1933, 1175], [1932, 1175], [1932, 1174], [1931, 1174], [1930, 1174], [1930, 1173], [1926, 1173], [1925, 1173], [1925, 1175], [1927, 1175], [1927, 1176], [1927, 1175]]}, "center": {"109-166, T:0-1": [1929, 1182]}},
{"id": "ty6hdy", "name": "Wartortle", "description": "A Water-type Pokémon and the evolution of the Kanto starter Pokémon Squirtle. Famously present in the Portuguese space in the 2017 r/place.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Wartortle"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"109-166, T:0-1": [[1475, 1845], [1473, 1845], [1472, 1845], [1472, 1846], [1471, 1846], [1471, 1847], [1471, 1846], [1470, 1846], [1469, 1846], [1469, 1845], [1469, 1844], [1469, 1843], [1468, 1843], [1467, 1843], [1466, 1843], [1465, 1843], [1464, 1843], [1464, 1844], [1463, 1844], [1463, 1849], [1462, 1849], [1462, 1850], [1461, 1850], [1461, 1853], [1461, 1854], [1462, 1854], [1462, 1855], [1463, 1855], [1463, 1856], [1463, 1857], [1464, 1857], [1463, 1857], [1463, 1858], [1463, 1859], [1463, 1860], [1463, 1861], [1470, 1861], [1470, 1862], [1471, 1862], [1471, 1863], [1472, 1863], [1472, 1864], [1475, 1864], [1475, 1863], [1476, 1863], [1477, 1863], [1477, 1861], [1478, 1861], [1478, 1859], [1479, 1859], [1479, 1858], [1480, 1858], [1480, 1857], [1482, 1857], [1482, 1856], [1483, 1856], [1483, 1855], [1484, 1855], [1484, 1852], [1483, 1852], [1484, 1852], [1484, 1851], [1485, 1851], [1485, 1850], [1485, 1849], [1484, 1849], [1485, 1849], [1485, 1848], [1485, 1847], [1485, 1846], [1479, 1846], [1479, 1848], [1479, 1849], [1478, 1849], [1477, 1849], [1477, 1850], [1477, 1851], [1476, 1850], [1476, 1848], [1477, 1847], [1476, 1846]]}, "center": {"109-166, T:0-1": [1472, 1853]}},
-{"id": "ty6gjg", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1780, 844], [1778, 846], [1778, 847], [1780, 850], [1782, 850], [1782, 857], [1781, 858], [1781, 859], [1782, 860], [1782, 862], [1786, 862], [1786, 856], [1782, 855], [1782, 850], [1810, 850], [1810, 848], [1811, 847], [1811, 846], [1809, 844], [1806, 844], [1806, 849], [1788, 849], [1788, 844]]}, "center": {"56-166, T:0-1": [1790, 850]}},
{"id": "ty6eu0", "name": "AB6IX", "description": "K-pop group AB6IX's logo. AB6IX (pronounced as A-B-Six; in Hangul: 에이비식스) is a four member South Korean boy group formed by Brand New Music. The group debuted on May 22, 2019, with their first EP \"B:Complete\" and title song \"Breathe\".", "links": {"subreddit": ["ab6ix"]}, "path": {"109-166, T:0-1": [[1510, 1045], [1510, 1051], [1512, 1051], [1512, 1045]]}, "center": {"109-166, T:0-1": [1511, 1048]}},
{"id": "ty6en9", "name": "Flag of Pakistan", "description": "Pakistan is a country in South Asia. The Pakistani flag represents many things with the use of its colours and shapes. The green in the flag is usually a symbol associated with Islam which represents the majority of the Muslim population of Pakistan. The white stripe represents the minorities of Pakistan of different religious backgrounds. The moon and the star, another commonly used symbol in Islam, represents light and progress. Overall, the intentions of the founders as they created this flag was to represent Islam as well as respect the rights of other religious minorities.\n\nWe apologise for taking over the Esperanto flag. This took us a lot of effort for a small flag. Previous Pakistani flags were quickly destroyed by India, long-time enemy of Pakistan due to a territorial dispute over the Kashmir region. Their efforts were unsuccessful at the end of the day with the help of our members. This event resulted in unity and new friends by the end! :)", "links": {"website": ["https://en.wikipedia.org/wiki/Pakistan", "https://en.wikipedia.org/wiki/Flag_of_Pakistan"], "subreddit": ["pakistan"]}, "path": {"10-17": [[299, 274], [333, 274], [333, 299], [299, 299]], "65-84": [[1277, 312], [1277, 330], [1316, 330], [1316, 312]], "163-165, T:0-1": [[771, 325], [781, 325], [781, 330], [771, 330]]}, "center": {"10-17": [316, 287], "65-84": [1297, 321], "163-165, T:0-1": [776, 328]}},
{"id": "ty692t", "name": "Danny Gonzalez's Greg", "description": "Greg, what YouTuber Danny Gonzalez's fans are called, added in by the Bangtan Sonyeondan army in honor of Greg's alliance in defense during r/place.", "links": {"website": ["https://www.youtube.com/c/Danny100/videos"], "subreddit": ["DannyGonzalez", "bangtan"]}, "path": {"109-167, T:0-1": [[1886, 1174], [1900, 1174], [1900, 1177], [1886, 1177]]}, "center": {"109-167, T:0-1": [1893, 1176]}},
@@ -5885,7 +5872,7 @@
{"id": "tyjd7a", "name": "Lithuania", "description": "Map of the country of Lithuania bordering Latvia and Belarus, with the flag of Lithuania as a background. It has a star that shows Vilnius, capital of Lithuania.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Flag_of_Lithuania"], "subreddit": ["lithuania", "BalticStates"]}, "path": {"61-165, T:0-1": [[1944, 156], [1944, 159], [1943, 159], [1943, 161], [1942, 161], [1943, 161], [1944, 162], [1944, 164], [1941, 164], [1941, 165], [1940, 165], [1940, 166], [1938, 166], [1938, 167], [1939, 168], [1938, 167], [1937, 167], [1937, 171], [1936, 171], [1931, 175], [1930, 176], [1929, 176], [1928, 177], [1927, 178], [1926, 177], [1923, 177], [1923, 176], [1922, 176], [1921, 175], [1920, 174], [1919, 174], [1919, 173], [1918, 173], [1918, 172], [1915, 169], [1912, 169], [1912, 166], [1910, 166], [1910, 165], [1905, 165], [1905, 164], [1904, 164], [1904, 163], [1902, 163], [1902, 162], [1900, 162], [1899, 163], [1899, 159], [1900, 158], [1899, 157], [1899, 151], [1900, 151], [1901, 150], [1901, 149], [1903, 147], [1906, 147], [1907, 146], [1910, 146], [1910, 147], [1912, 147], [1912, 146], [1913, 146], [1913, 147], [1914, 147], [1914, 148], [1915, 148], [1915, 147], [1922, 147], [1922, 148], [1925, 148], [1926, 148], [1927, 146], [1929, 146], [1929, 145], [1930, 145], [1930, 148], [1931, 148], [1931, 149], [1934, 149], [1934, 150]]}, "center": {"61-165, T:0-1": [1926, 161]}},
{"id": "tyjbpx", "name": "Singapore mini flag", "description": "A flag as cute as Singapore, lah!", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore"], "subreddit": ["singapore"]}, "path": {"109-166, T:0-1": [[1120, 1599], [1122, 1599], [1122, 1600], [1120, 1600]]}, "center": {"109-166, T:0-1": [1121, 1600]}},
{"id": "tyjam8", "name": "Latvia", "description": "Latvian map with other Baltic countries, using the flag of Latvia as a background. It has a star that shows Riga, capital of Latvia.", "links": {"website": ["https://en.wikipedia.org/wiki/Latvia", "https://en.wikipedia.org/wiki/Flag_of_Latvia"], "subreddit": ["latvia", "BalticStates"]}, "path": {"61-166, T:0-1": [[1949, 129], [1952, 133], [1953, 133], [1953, 141], [1954, 141], [1954, 151], [1953, 151], [1953, 152], [1950, 155], [1945, 155], [1945, 156], [1942, 156], [1942, 155], [1941, 155], [1941, 154], [1938, 152], [1937, 152], [1937, 151], [1935, 151], [1934, 150], [1931, 150], [1931, 148], [1930, 148], [1930, 145], [1929, 145], [1925, 148], [1921, 148], [1921, 147], [1915, 147], [1915, 148], [1914, 148], [1914, 147], [1910, 147], [1910, 146], [1906, 146], [1906, 147], [1903, 147], [1902, 149], [1901, 149], [1901, 151], [1900, 151], [1899, 151], [1899, 140], [1901, 140], [1900, 139], [1901, 139], [1901, 138], [1902, 138], [1902, 137], [1903, 137], [1903, 131], [1904, 131], [1904, 129], [1905, 129], [1905, 128], [1909, 128], [1909, 127], [1910, 127], [1910, 126], [1912, 126], [1917, 125], [1918, 124], [1919, 125], [1918, 126], [1912, 126], [1912, 128], [1912, 129], [1913, 129], [1913, 130], [1914, 130], [1914, 131], [1915, 131], [1915, 132], [1916, 132], [1916, 133], [1917, 133], [1917, 137], [1918, 136], [1918, 137], [1919, 137], [1919, 138], [1920, 138], [1920, 139], [1921, 138], [1921, 137], [1923, 137], [1923, 136], [1925, 136], [1925, 134], [1925, 125], [1926, 124], [1928, 123], [1930, 122], [1933, 121], [1934, 122], [1936, 124], [1943, 131], [1945, 130], [1946, 129]]}, "center": {"61-166, T:0-1": [1942, 142]}},
-{"id": "tyj9m0", "name": "Flag of Córdoba", "description": "Flag of Córdoba, Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/C%C3%B3rdoba,_Argentina"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"109-166, T:0-1": [[1120, 1598], [1120, 1596], [1122, 1596], [1122, 1598]]}, "center": {"109-166, T:0-1": [1121, 1597]}},
+{"id": "tyj9m0", "name": "Flag of Córdoba", "description": "Flag of Córdoba, Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/C%C3%B3rdoba,_Argentina"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"109-166, T:0-1": [[1120, 1598], [1120, 1596], [1122, 1596], [1122, 1598]]}, "center": {"109-166, T:0-1": [1121, 1597]}},
{"id": "tyj81g", "name": "r/trees", "description": "r/trees is a cannabis community on Reddit. They switched their subreddit name with r/marijuanaenthusiasts. Pictures is a cannabis leaf with the number 420, which stands for the weed holiday celebrated on the 20th of April.", "links": {"website": ["https://en.wikipedia.org/wiki/Cannabis"], "subreddit": ["trees"]}, "path": {"5-164, T:0-1": [[718, 398], [718, 429], [752, 429], [752, 398]]}, "center": {"5-164, T:0-1": [735, 424]}},
{"id": "tyj7e8", "name": "Estonia", "description": "A map showing the country of Estonia, with the flag of Estonia as a background. The star shows Tallinn, capital of Estonia.", "links": {"website": ["https://en.wikipedia.org/wiki/Estonia", "https://en.wikipedia.org/wiki/Flag_of_Estonia"], "subreddit": ["Eesti", "BalticStates"]}, "path": {"61-165, T:0-1": [[1928, 99], [1952, 99], [1952, 101], [1953, 101], [1953, 106], [1952, 106], [1952, 109], [1948, 109], [1948, 110], [1947, 110], [1947, 113], [1948, 113], [1948, 116], [1949, 116], [1949, 118], [1950, 118], [1950, 121], [1951, 121], [1951, 126], [1950, 126], [1950, 128], [1949, 128], [1949, 130], [1947, 130], [1947, 129], [1945, 129], [1945, 130], [1944, 130], [1944, 131], [1943, 131], [1943, 130], [1942, 130], [1942, 129], [1941, 129], [1941, 128], [1940, 128], [1940, 127], [1939, 127], [1939, 126], [1939, 125], [1938, 126], [1938, 125], [1937, 125], [1937, 124], [1936, 124], [1936, 123], [1935, 122], [1933, 122], [1933, 121], [1932, 121], [1932, 122], [1930, 122], [1930, 123], [1927, 123], [1927, 124], [1926, 124], [1926, 125], [1925, 125], [1925, 121], [1926, 121], [1926, 119], [1923, 119], [1923, 120], [1921, 120], [1921, 119], [1921, 118], [1920, 118], [1920, 116], [1919, 116], [1919, 115], [1917, 115], [1916, 115], [1916, 118], [1915, 118], [1915, 119], [1914, 119], [1914, 120], [1910, 120], [1910, 121], [1909, 121], [1909, 123], [1908, 123], [1908, 124], [1907, 124], [1907, 123], [1906, 123], [1907, 122], [1907, 121], [1906, 121], [1906, 120], [1905, 120], [1905, 118], [1906, 118], [1906, 117], [1905, 116], [1908, 116], [1909, 115], [1911, 115], [1912, 114], [1911, 112], [1911, 111], [1911, 110], [1910, 110], [1910, 109], [1908, 109], [1910, 109], [1910, 108], [1911, 108], [1911, 107], [1912, 107], [1912, 106], [1914, 108], [1914, 109], [1915, 109], [1914, 110], [1915, 110], [1915, 109], [1915, 111], [1918, 110], [1918, 104], [1920, 104], [1922, 102], [1923, 102], [1923, 103], [1925, 103], [1925, 102], [1926, 102], [1927, 101]]}, "center": {"61-165, T:0-1": [1936, 110]}},
{"id": "tyixc7", "name": "Coat of arms of Schleswig-Holstein", "description": "Coat of arms of the German state Schleswig-Holstein.", "links": {"website": ["https://en.wikipedia.org/wiki/Schleswig-Holstein"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"109-165, T:0-1": [[1193, 1123], [1193, 1130], [1196, 1133], [1200, 1133], [1203, 1130], [1203, 1123]]}, "center": {"109-165, T:0-1": [1198, 1128]}},
@@ -5926,7 +5913,7 @@
{"id": "tyhg8j", "name": "Falta Mayor X", "description": "Falta Mayor X (Major Foul X) it's a music band, an esports team, a streaming group, and a bunch of friends who like to hang out. this is our mark on internet history.", "links": {"website": ["https://www.facebook.com/FaltaMayorX"]}, "path": {"109-166, T:0-1": [[1913, 1366], [1924, 1366], [1924, 1371], [1913, 1371]]}, "center": {"109-166, T:0-1": [1919, 1369]}},
{"id": "tyhaw7", "name": "Alisa", "description": "Almost built Alisa from the game Everlasting Summer\n\nRussian streamer Bratishkinoff started building Alice for the first time, but he didn't do it well because the whole Reddit tried to undress her. Due to censorship, Reddit painted it over. Mizkif took over when Reddit painted it over. But still, at the end of the game, Bratishkinoff managed to rebuild it for a long time.", "links": {"website": ["https://www.twitch.tv/bratishkinoff"], "subreddit": ["89SQUAD89"]}, "path": {"109-165, T:0-1": [[1414, 1404], [1423, 1373], [1404, 1356], [1379, 1358], [1358, 1372], [1354, 1387], [1359, 1397], [1346, 1407], [1343, 1443], [1337, 1475], [1354, 1496], [1409, 1497], [1435, 1469], [1429, 1442], [1429, 1420], [1413, 1412]]}, "center": {"109-165, T:0-1": [1386, 1433]}},
{"id": "tyhaib", "name": "Flag of Pwitain", "description": "Flag of the glorious nation of Pwitain. Pwitain is a fictional country created by Pwerrr.", "links": {"website": ["https://cdn.discordapp.com/attachments/567382423512285184/849244422910246912/IMG_20210531_202453.jpg"], "subreddit": ["oddlof"]}, "path": {"56-164, T:0-1": [[1792, 936], [1796, 936], [1796, 938], [1792, 938]]}, "center": {"56-164, T:0-1": [1794, 937]}},
-{"id": "tyh7ux", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "links": {"subreddit": ["AmericanFlagInPlace", "AmericanFlagPlace", "MURICA", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"109-165, T:0-1": [[1771, 1819], [1769, 1821], [1769, 1867], [1773, 1870], [1775, 1870], [1779, 1866], [1779, 1821], [1777, 1819]]}, "center": {"109-165, T:0-1": [1774, 1844]}},
+{"id": "tyh7ux", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "links": {"subreddit": ["AmericanFlagInPlace", "AmericanFlagPlace", "MURICA", "argentina", "Republica_Argentina"]}, "path": {"109-165, T:0-1": [[1771, 1819], [1769, 1821], [1769, 1867], [1773, 1870], [1775, 1870], [1779, 1866], [1779, 1821], [1777, 1819]]}, "center": {"109-165, T:0-1": [1774, 1844]}},
{"id": "tyh3s8", "name": "Country purple girl", "description": "The national flower of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Guarianthe_skinneri"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"104-166, T:0-1": [[1612, 427], [1606, 434], [1602, 434], [1602, 437], [1604, 437], [1604, 440], [1603, 441], [1603, 445], [1605, 445], [1605, 446], [1617, 446], [1620, 443], [1620, 440], [1619, 439], [1619, 436], [1620, 436], [1620, 433], [1615, 433], [1615, 430]]}, "center": {"104-166, T:0-1": [1611, 439]}},
{"id": "tyh1sa", "name": "Hummingbird", "description": "One of the smallest species of birds.", "links": {"website": ["https://en.wikipedia.org/wiki/Hummingbird"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"119-166, T:0-1": [[1589, 432], [1587, 434], [1589, 436], [1589, 437], [1590, 438], [1590, 441], [1591, 442], [1591, 443], [1590, 444], [1589, 444], [1588, 445], [1589, 446], [1592, 446], [1593, 445], [1594, 445], [1598, 441], [1598, 439], [1599, 438], [1602, 438], [1602, 436], [1598, 436], [1597, 435], [1595, 435], [1594, 436], [1593, 436]]}, "center": {"119-166, T:0-1": [1594, 440]}},
{"id": "tygz3c", "name": "Sloth", "description": "An animal that is a national symbol of Costa Rica.", "links": {"website": ["https://en.wikipedia.org/wiki/Sloth"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"75-166, T:0-1": [[1567, 429], [1567, 432], [1560, 432], [1557, 435], [1557, 437], [1561, 441], [1563, 441], [1567, 445], [1571, 445], [1573, 443], [1574, 443], [1578, 440], [1577, 439], [1579, 439], [1579, 433], [1577, 433], [1577, 430], [1574, 430], [1574, 433], [1570, 433], [1570, 429]]}, "center": {"75-166, T:0-1": [1569, 439]}},
@@ -5937,12 +5924,11 @@
{"id": "tygrix", "name": "Arenal Volcano eruption", "description": "A volcano in Costa Rica that erupted in 1968, killing 87 people and burying 3 villages.", "links": {"website": ["https://en.wikipedia.org/wiki/Arenal_Volcano#July_29,_1968"], "subreddit": ["costarica", "costa_rica", "Ticos"]}, "path": {"122-166, T:0-1": [[1416, 426], [1414, 428], [1413, 428], [1412, 429], [1412, 430], [1410, 432], [1410, 433], [1406, 437], [1406, 438], [1405, 439], [1405, 440], [1403, 442], [1402, 442], [1399, 445], [1399, 446], [1424, 446], [1424, 445], [1422, 443], [1421, 443], [1417, 439], [1417, 438], [1414, 435], [1414, 434], [1417, 434], [1419, 432], [1420, 432], [1422, 430], [1422, 429], [1424, 427], [1423, 426]]}, "center": {"122-166, T:0-1": [1411, 440]}},
{"id": "tygr18", "name": "Leoncock", "description": "British streamer currently living in Peru", "links": {"website": ["https://trovo.live/leoncraft"]}, "path": {"109-165, T:0-1": [[1598, 1650], [1605, 1650], [1605, 1657], [1598, 1657]]}, "center": {"109-165, T:0-1": [1602, 1654]}},
{"id": "tyrvku", "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": {"107-125, 141-165, T:0-1": [[939, 671], [943, 667], [943, 664], [941, 663], [937, 663], [935, 665], [935, 667]]}, "center": {"107-125, 141-165, T:0-1": [939, 666]}},
-{"id": "tyrqx5", "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. In this art, the capybara and the hornero are drinking the mate.\n\nOver the course of r/place, people maintained four dots on the mate, making it resemble a cute cat face.", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"10-165, T:0-1": [[933, 670], [933, 676], [935, 678], [940, 678], [942, 676], [942, 670]]}, "center": {"10-165, T:0-1": [938, 674]}},
+{"id": "tyrqx5", "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. In this art, the capybara and the hornero are drinking the mate.\n\nOver the course of r/place, people maintained four dots on the mate, making it resemble a cute cat face.", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"10-165, T:0-1": [[933, 670], [933, 676], [935, 678], [940, 678], [942, 676], [942, 670]]}, "center": {"10-165, T:0-1": [938, 674]}},
{"id": "tyrpw6", "name": "Artemis", "description": "Artemis is a white cat who can talk and has a crescent moon on his forehead. He is Sailor Venus's companion, and the one who gave her the transformation pen.", "links": {"website": ["https://wikimoon.org/index.php/Artemis"], "subreddit": ["sailormoon", "place_CentralAlliance"]}, "path": {"1-165, T:0-1": [[392, 998], [392, 990], [390, 990], [389, 992], [387, 991], [386, 990], [384, 990], [384, 998], [388, 998]]}, "center": {"1-165, T:0-1": [388, 994]}},
{"id": "tyrpvn", "name": "Thymoral's slice", "description": "User thymoral placed their initials in a remote corner of r/place just before the end. They tried to hide it in the mountain to the right but the Germans seemed to be monitoring that closely.", "links": {"website": ["https://www.reddit.com/user/thymoral"]}, "path": {"109-167, T:0-1": [[1956, 1120], [1963, 1120], [1963, 1124], [1956, 1124]]}, "center": {"109-167, T:0-1": [1960, 1122]}},
-{"id": "tyrpav", "name": "Anne Rosses heart", "description": "heart that annette care day and night with much love", "links": {"website": ["https://www.instagram.com/anne_rosses/"]}, "path": {"56-166, T:0-1": [[1480, 830], [1486, 830], [1486, 835], [1480, 835]]}, "center": {"56-166, T:0-1": [1483, 833]}},
+{"id": "tyrpav", "name": "Annette Rosses's heart", "description": "This heart, maintained by user Annette Rosses, was cared for day and night with much love.", "links": {"website": ["https://www.instagram.com/anne_rosses/"]}, "path": {"121-140": [[1482, 831], [1480, 833], [1483, 836], [1486, 833], [1484, 831]], "141-166, T:0-1": [[1482, 830], [1480, 832], [1480, 833], [1482, 835], [1484, 835], [1486, 833], [1484, 830]]}, "center": {"121-140": [1483, 833], "141-166, T:0-1": [1483, 833]}},
{"id": "tyroi8", "name": "Garry's Mod", "description": "Garry's Mod is a sandbox game built with Valve's Source engine. It is known for several popular game modes introduced via mods, including Trouble in Terrorist Town and Prop Hunt.", "links": {"website": ["https://store.steampowered.com/app/4000/garrys_mod", "https://en.wikipedia.org/wiki/Garry%27s_Mod"], "subreddit": ["gmod"]}, "path": {"109-166, T:0-1": [[1058, 1749], [1058, 1761], [1070, 1761], [1070, 1749]]}, "center": {"109-166, T:0-1": [1064, 1755]}},
-{"id": "tyrnei", "name": "Annette Rosses Heart", "description": "heart that annette care day and night with much love", "links": {"website": ["https://www.instagram.com/anne_rosses/?hl=es-la"]}, "path": {"56-166, T:0-1": [[1480, 830], [1481, 833], [1487, 833], [1487, 831], [1487, 830], [1481, 830], [1480, 833], [1487, 832], [1487, 830]]}, "center": {"56-166, T:0-1": [1484, 831]}},
{"id": "tyrn86", "name": "Floch Forster", "description": "Floch Forster is a character from the anime Attack on Titan. He has a crown to represent his status as \"King Floch\" among some fans of the series.", "links": {"website": ["https://attackontitan.fandom.com/wiki/Floch_Forster"], "subreddit": ["titanfolk"]}, "path": {"82-102": [[1509, 375], [1509, 370], [1507, 370], [1507, 367], [1508, 366], [1508, 362], [1507, 361], [1507, 359], [1507, 358], [1508, 357], [1509, 356], [1509, 354], [1510, 353], [1511, 354], [1512, 353], [1513, 353], [1514, 353], [1515, 354], [1516, 353], [1517, 354], [1517, 355], [1517, 356], [1518, 357], [1519, 358], [1519, 359], [1519, 361], [1518, 362], [1518, 364], [1517, 365], [1518, 366], [1519, 367], [1519, 369], [1518, 370], [1517, 370], [1517, 375], [1514, 375], [1514, 373], [1512, 373], [1512, 375]]}, "center": {"82-102": [1513, 360]}},
{"id": "tyrj32", "name": "Half-life Logo", "description": "A mini logo for the Half-life video game.", "links": {"website": ["https://store.steampowered.com/app/70/HalfLife/"], "subreddit": ["HalfLife"]}, "path": {"109-165, T:0-1": [[1046, 1741], [1056, 1741], [1056, 1750], [1046, 1750]]}, "center": {"109-165, T:0-1": [1051, 1746]}},
{"id": "tyrhpy", "name": "FDS Acronym", "description": "Supposed to be an acronym of the podcast FUMS - Die Show hosted by Max Fritzsching and Michael -Dings von FUMS- Strohmaier; a German football (soccer) podcast which humoristically summarizes the football week in general and the Bundesliga in more detail", "links": {"website": ["https://fumsmagazin.de/fumsdieshow/"]}, "path": {"109-165, T:0-1": [[524, 1172], [534, 1172], [534, 1175], [524, 1175]]}, "center": {"109-165, T:0-1": [529, 1174]}},
@@ -5970,7 +5956,6 @@
{"id": "tyoqg4", "name": "Quanaril", "description": "Quanaril is a Turkish streamer who streams video game gameplay. This is his channel logo.", "links": {"website": ["https://www.twitch.tv/quanaril"], "subreddit": ["Quanaril"]}, "path": {"158-164, T:0-1": [[1324, 480], [1324, 494], [1335, 494], [1335, 495], [1338, 495], [1338, 480]]}, "center": {"158-164, T:0-1": [1331, 487]}},
{"id": "tyoji3", "name": "Alsatian Historical Flag", "description": "The \"Rot und wiss\"\nFlag installed by Prof. Kush from Alsace", "links": {}, "path": {"109-165, T:0-1": [[1277, 1400], [1279, 1400], [1279, 1397], [1277, 1397]]}, "center": {"109-165, T:0-1": [1278, 1399]}},
{"id": "tyoiqk", "name": "Puro", "description": "Puro is the protagonist from the video game Changed. He is a community favorite for his friendly attitude\n\nThis Puro art stayed from the start of the second expansion until a couple hours before the whiteout when it got overtaken by the current artwork.", "links": {"website": ["https://changed.fandom.com/wiki/Puro"], "subreddit": ["ChangedGame"]}, "path": {"114-157": [[645, 1099], [667, 1099], [667, 1123], [645, 1123]], "13-20": [[262, 110], [257, 115], [257, 120], [250, 120], [250, 125], [268, 125], [268, 115], [263, 110]], "8-11": [[288, 144], [284, 148], [282, 148], [282, 153], [284, 153], [287, 156], [290, 156], [295, 151], [295, 150], [289, 144]], "47-49": [[443, 280], [438, 285], [438, 287], [441, 291], [445, 291], [448, 288], [449, 285], [444, 280]], "22-32": [[62, 308], [58, 312], [58, 314], [61, 317], [64, 317], [67, 314], [67, 312], [63, 308]], "56-67": [[1834, 718], [1829, 723], [1829, 725], [1833, 729], [1836, 729], [1840, 725], [1840, 723], [1835, 718]]}, "center": {"114-157": [656, 1111], "13-20": [262, 119], "8-11": [289, 151], "47-49": [443, 286], "22-32": [63, 313], "56-67": [1835, 724]}},
-{"id": "tyoijk", "name": "Among Us crewmates", "description": "Crewmates from Among Us are sneaking about.", "links": {"website": ["https://www.innersloth.com/games/among-us/"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1856, 843], [1875, 843], [1892, 854], [1889, 866], [1876, 867], [1869, 860], [1863, 863], [1855, 857], [1855, 843]]}, "center": {"56-166, T:0-1": [1873, 854]}},
{"id": "tyof7x", "name": "Land of Contestation", "description": "Territory occupied by Prof. Kush (Cacabox's Artist) on the afternoon of April 4, 2022. Then indignantly contested by Juanmartin_56 following Argentinian opportunism and nationalism to install a flag there. This battle is part of the LATAM-France (Kameto) conflict.\nThis battle will end in victory Argentina, Prof. Kush to defend the French flag against the perfidy of Ibai.\n\nMany pixels lost their lives that day, let's pay tribute to them.", "links": {}, "path": {"109-165, T:0-1": [[1277, 1391], [1287, 1392], [1286, 1387], [1282, 1387], [1282, 1379], [1277, 1378]]}, "center": {"109-165, T:0-1": [1281, 1386]}},
{"id": "tyoa75", "name": "Saint Mary's College", "description": "Saint Mary's College is a college in Notre Dame, Indiana, United States. Along with the University of Notre Dame and Holy Cross College, these colleges make up the tri-campus community in Notre Dame, Indiana.", "links": {"website": ["https://en.wikipedia.org/wiki/Saint_Mary%27s_College_(Indiana)", "http://www.saintmarys.edu/"], "subreddit": ["notredame"]}, "path": {"160-165, T:0-1": [[1792, 548], [1790, 550], [1790, 553], [1792, 555], [1794, 555], [1794, 548]]}, "center": {"160-165, T:0-1": [1792, 552]}},
{"id": "tyo5zg", "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": ["Mario"]}, "path": {"109-166, T:0-1": [[1586, 1328], [1596, 1328], [1596, 1316], [1586, 1316]]}, "center": {"109-166, T:0-1": [1591, 1322]}},
@@ -6007,7 +5992,7 @@
{"id": "tylp68", "name": "BH for Brawlhalla", "description": "a BH representing the Platform fighter Brawlhalla after having both lost a Bodvar to a streamer overdrawing it and an Emblem to rogue swedes", "links": {"website": ["https://www.brawlhalla.com/"], "subreddit": ["Brawlhalla"]}, "path": {"109-164, T:0-1": [[278, 1803], [287, 1803], [287, 1809], [278, 1809]]}, "center": {"109-164, T:0-1": [283, 1806]}},
{"id": "tyllfm", "name": "HECTOR", "description": "HECTOR is the pet rock of KEL, a deuteragonist of OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/HECTOR"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"45-165, T:0-1": [[980, 842], [977, 844], [974, 847], [974, 851], [976, 853], [989, 853], [989, 846], [985, 842]]}, "center": {"45-165, T:0-1": [982, 848]}},
{"id": "tyldya", "name": "DrKosmitek", "description": "A Minecraft head from the user DrKosmitek.", "links": {"subreddit": ["WhatAUselessGroup"]}, "path": {"163-165": [[171, 86], [171, 93], [178, 93], [178, 86]]}, "center": {"163-165": [175, 90]}},
-{"id": "tz2xts", "name": "The AFC Tower", "description": "Nobody needs to know why there is a tower, They made this tower with only 10 person.", "links": {}, "path": {"56-166, T:0-1": [[1773, 833], [1777, 833], [1777, 868], [1773, 868]]}, "center": {"56-166, T:0-1": [1775, 851]}},
+{"id": "tz2xts", "name": "AFC Tower", "description": "Nobody needs to know why there is a tower of Among Us crewmates here. This tower was made by 10 people.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"158-166": [[1774, 833], [1772, 835], [1772, 866], [1773, 867], [1773, 869], [1778, 869], [1778, 840], [1777, 839], [1777, 833]]}, "center": {"158-166": [1775, 851]}},
{"id": "tz2l0l", "name": "Old Bay", "description": "Old Bay is Baltimore's favorite spice mix! From crabs to wings, Old Bay is put on everything!\n\nThis art was designed by Owen Knauer.", "links": {"website": ["https://www.mccormick.com/old-bay", "https://en.wikipedia.org/wiki/Old_Bay_Seasoning"], "subreddit": ["maryland"]}, "path": {"102-166, T:0-1": [[1819, 705], [1819, 715], [1830, 715], [1830, 705]]}, "center": {"102-166, T:0-1": [1825, 710]}},
{"id": "tz1b6l", "name": "Juventus FC current logo", "description": "A small art of the current logo of Juventus FC, italian soccer team.", "links": {"website": ["https://www.juventus.com"], "subreddit": ["Juve"]}, "path": {"109-166, T:0-1": [[883, 1662], [889, 1662], [889, 1669], [883, 1669]]}, "center": {"109-166, T:0-1": [886, 1666]}},
{"id": "tz188i", "name": "Fino alla Fine - Juventus FC motto", "description": "'Fino alla Fine' stands for 'Until the end' in italian. It represents Juventus' spirit of never giving up.", "links": {"website": ["https://www.juventus.com"], "subreddit": ["Juve"]}, "path": {"109-166, T:0-1": [[883, 1668], [871, 1668], [871, 1662], [883, 1662]]}, "center": {"109-166, T:0-1": [877, 1665]}},
@@ -6057,12 +6042,12 @@
{"id": "tyv0av", "name": "Bottom-left brown square", "description": "Attempts from a community of over 200 people at r/bottomleftbrownsquare to turn the very bottom-left square brown. Due to the location overlapping with other artwork, The bottom-left brown square was constantly reverted, including in this map.", "links": {"subreddit": ["bottomleftbrownsquare"]}, "path": {"109-164, T:0-1": [[0, 1994], [0, 1999], [3, 1999], [3, 1994]]}, "center": {"109-164, T:0-1": [2, 1997]}},
{"id": "tyuxfp", "name": "LGBT Among Us crewmate", "description": "An Among Us crewmate with the colors of the LGBT (lesbian, gay, bisexual, Transgender) flag.", "links": {"website": ["https://en.wikipedia.org/wiki/LGBT"]}, "path": {"1-166, T:0-1": [[282, 984], [280, 986], [280, 988], [282, 990], [283, 989], [284, 990], [285, 989], [285, 984]]}, "center": {"1-166, T:0-1": [283, 987]}},
{"id": "tyuvtm", "name": "Transgender Among Us crewmate", "description": "An Among Us crewmate with the colors of the transgender flag. Transgender people have a gender identity different from their sex assigned at birth.", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender", "https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"87-93": [[1596, 421], [1596, 427], [1600, 427], [1600, 425], [1601, 425], [1601, 423], [1599, 421]], "95-166, T:0-1": [[278, 984], [276, 986], [276, 988], [278, 990], [279, 989], [280, 990], [281, 989], [281, 984]]}, "center": {"87-93": [1598, 424], "95-166, T:0-1": [279, 987]}},
-{"id": "tyuuv5", "name": "Bisexual Among Us crewmate", "description": "An Among Us crewmate with the colors of the bisexual flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"]}, "path": {"1-166, T:0-1": [[274, 984], [272, 986], [272, 988], [274, 990], [275, 989], [276, 990], [277, 989], [277, 984]]}, "center": {"1-166, T:0-1": [275, 987]}},
+{"id": "tyuuv5", "name": "Bisexual Among Us crewmate", "description": "An Among Us crewmate in the colors of the bisexual pride flag. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"], "subreddit": ["bisexual"]}, "path": {"1-166, T:0-1": [[274, 984], [272, 986], [272, 988], [274, 990], [275, 989], [276, 990], [277, 989], [277, 984]]}, "center": {"1-166, T:0-1": [275, 987]}},
{"id": "tyutxj", "name": "Lesbian Among Us crewmate", "description": "An Among Us crewmate with the colors of the lesbian flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"1-166, T:0-1": [[270, 984], [268, 986], [268, 988], [270, 990], [271, 989], [272, 990], [273, 984]]}, "center": {"1-166, T:0-1": [271, 987]}},
{"id": "tyum5g", "name": "Stranger Things", "description": "Created by the sub for the Netflix Original series: Stranger Things. The disappearance of a young boy sparks a chain of events leading the residents of the small town of Hawkins to uncover a government conspiracy and a supernatural mystery which will not only shatter all semblance of normality, but also threaten their very existence. Season 4 comes out May 27th.", "links": {"subreddit": ["strangerthings"]}, "path": {"109-166, T:0-1": [[1540, 1552], [1565, 1552], [1565, 1569], [1540, 1569]]}, "center": {"109-166, T:0-1": [1553, 1561]}},
{"id": "tyuha7", "name": "Flag of Serbia", "description": "Serbia is a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Serbia", "https://en.wikipedia.org/wiki/Flag_of_Serbia"], "subreddit": ["serbia", "place_CentralAlliance"]}, "path": {"10-40": [[317, 888], [317, 910], [359, 910], [359, 888]], "105-125, 142-156": [[359, 888], [359, 910], [290, 910], [290, 909], [292, 907], [292, 901], [287, 896], [285, 896], [280, 901], [275, 896], [273, 896], [268, 901], [263, 896], [261, 896], [256, 901], [251, 896], [249, 896], [244, 901], [239, 896], [237, 896], [232, 901], [226, 896], [220, 901], [216, 897], [216, 888]], "53-104": [[359, 888], [359, 910], [290, 910], [290, 909], [292, 907], [292, 901], [287, 896], [285, 896], [280, 901], [275, 896], [273, 896], [268, 901], [263, 896], [261, 896], [256, 901], [251, 896], [249, 896], [244, 901], [239, 896], [237, 896], [232, 901], [226, 896], [226, 891], [225, 890], [216, 890], [216, 888]], "41-52": [[359, 888], [359, 910], [290, 910], [290, 909], [292, 907], [292, 901], [287, 896], [285, 896], [280, 901], [275, 896], [273, 896], [268, 901], [263, 896], [261, 896], [256, 901], [251, 896], [250, 896], [250, 890], [254, 890], [254, 888]], "126-141, 157-166, T:0-1": [[261, 888], [261, 889], [262, 890], [262, 895], [268, 901], [273, 896], [275, 896], [280, 901], [285, 896], [287, 896], [292, 901], [292, 910], [359, 910], [359, 892], [358, 892], [355, 889], [355, 888]]}, "center": {"10-40": [338, 899], "105-125, 142-156": [315, 899], "53-104": [315, 899], "41-52": [305, 899], "126-141, 157-166, T:0-1": [316, 899]}},
{"id": "tyu7ac", "name": "CoComelon", "description": "A small, simple pixel drawing of the logo of the massive children's entertainment YouTube channel and TV show, CoComelon. CoComelon primarily focuses on short 3D nursery rhymes as well as original children's songs. As of 2022 CoComelon is the second most viewed and subscribed YouTube channel in the world.", "links": {"website": ["https://cocomelon.com/"], "subreddit": ["cocomelon"]}, "path": {"109-166, T:0-1": [[1100, 1741], [1100, 1749], [1108, 1749], [1108, 1741]]}, "center": {"109-166, T:0-1": [1104, 1745]}},
-{"id": "tyu50b", "name": "Polyamory flag", "description": "This is one of the multiple existing versions of the polyamory pride flag. Polyamory involves having consensual and intimate relationships with more than one partner.", "links": {"website": ["https://en.wikipedia.org/wiki/Polyamory"]}, "path": {"112-166, T:0-1": [[1884, 648], [1884, 652], [1890, 652], [1890, 648]]}, "center": {"112-166, T:0-1": [1887, 650]}},
+{"id": "tyu50b", "name": "Polyamory flag", "description": "Polyamory is the practice of engaging in multiple romantic (and typically sexual) relationships, with the consent of all the people involved.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory"]}, "path": {"63-80": [[1072, 896], [1072, 900], [1076, 900], [1076, 896]], "112-166, T:0-1": [[1884, 648], [1884, 652], [1890, 652], [1890, 648]]}, "center": {"63-80": [1074, 898], "112-166, T:0-1": [1887, 650]}},
{"id": "tyu3kn", "name": "Mayuri Shiina", "description": "Mayuri Shiina (椎名 まゆり) is one of the main characters of Steins;Gate, an anime and visual novel series. She is Okabe Rintarō's childhood friend and a member of Future Gadget Lab.", "links": {"website": ["https://steins-gate.fandom.com/wiki/Mayuri_Shiina"], "subreddit": ["steinsplace"]}, "path": {"109-166, T:0-1": [[525, 1903], [526, 1900], [529, 1898], [533, 1898], [537, 1903], [537, 1907], [535, 1907], [535, 1909], [536, 1910], [536, 1913], [533, 1913], [533, 1915], [529, 1915], [529, 1913], [526, 1913], [526, 1910], [527, 1907], [525, 1907]]}, "center": {"109-166, T:0-1": [531, 1906]}},
{"id": "tyu21j", "name": "Ratchet & Clank", "description": "Ratchet & Clank is a game series for the Playstation, featuring the main characters Ratchet and Clank. This art depicts an R for Ratchet and a little depiction of Clank. There was also a grey C under the R, but part of it is missing.\n\nThis art was placed by u/The_Super_Shag for r/ratchet.", "links": {"website": ["https://en.wikipedia.org/wiki/Ratchet_%26_Clank"], "subreddit": ["ratchet"]}, "path": {"158-164, T:0-1": [[1074, 498], [1074, 504], [1076, 506], [1077, 505], [1077, 503], [1078, 502], [1081, 502], [1081, 499], [1079, 497], [1078, 498]]}, "center": {"158-164, T:0-1": [1076, 500]}},
{"id": "tyu1ra", "name": "Makise Kurisu", "description": "Makise Kurisu (牧瀬 紅莉栖) is one of the main characters of Steins;Gate, an anime and visual novel series. She is a genius girl and a member of Future Gadget Lab.", "links": {"website": ["https://steins-gate.fandom.com/wiki/Kurisu_Makise"], "subreddit": ["steinsplace"]}, "path": {"109-166, T:0-1": [[536, 1896], [536, 1884], [533, 1881], [529, 1881], [526, 1884], [526, 1890], [525, 1892], [524, 1894], [526, 1896], [529, 1896], [529, 1898], [533, 1898], [533, 1896]]}, "center": {"109-166, T:0-1": [531, 1890]}},
@@ -6238,7 +6223,7 @@
{"id": "tz6lcz", "name": "Kolka Lighthouse", "description": "Kolka Lighthouse is a lighthouse on an artificial island near Cape Kolka off the coast of Latvia.\n\nLatvian Redditors attempted to create Kolka Lighthouse shortly before r/place ended.", "links": {"website": ["https://en.wikipedia.org/wiki/Kolka_Lighthouse"], "subreddit": ["latvia", "BalticStates"]}, "path": {"164, T:0-1": [[1916, 121], [1912, 121], [1912, 127], [1917, 127], [1917, 121]]}, "center": {"164, T:0-1": [1915, 124]}},
{"id": "tz6l2w", "name": "A buffed rat", "description": "A little sevillian mouse who likes to go to the gym to become stronger and praying to Miguel Toro, The holy sevillian god of programming. Represented by a group of friends in Sevilla, Spain. Orta platita.", "links": {}, "path": {"109-166, T:0-1": [[882, 1622], [889, 1622], [889, 1628], [889, 1629], [890, 1629], [890, 1630], [891, 1631], [891, 1638], [879, 1638], [879, 1631], [882, 1628]]}, "center": {"109-166, T:0-1": [885, 1631]}},
{"id": "tz6gkz", "name": "Sam O'Nella", "description": "A partial, incomplete depiction of YouTuber Sam O'Nella's character. Built by the Sam O'Nella Academy discord and subreddit after a previous, complete attempt was overtaken.", "links": {"subreddit": ["SamONellaAcademy"]}, "path": {"109-166, T:0-1": [[1906, 1334], [1913, 1336], [1914, 1344], [1902, 1343], [1901, 1334]]}, "center": {"109-166, T:0-1": [1907, 1339]}},
-{"id": "tz6cw6", "name": "Screensuki", "description": "Screensuki is a resident Brombonian of the Brombo Discord server", "links": {"discord": ["7jux9uJGDS"]}, "path": {"56-166, T:0-1": [[1398, 831], [1398, 832], [1398, 833], [1398, 834], [1398, 835], [1399, 835], [1400, 835], [1401, 835], [1401, 834], [1401, 833], [1401, 832], [1401, 831], [1402, 831], [1402, 832], [1402, 833], [1402, 834], [1402, 835], [1400, 834], [1399, 834], [1400, 833], [1400, 832], [1400, 831], [1399, 831], [1399, 833], [1401, 833]]}, "center": {"56-166, T:0-1": [1398, 833]}},
+{"id": "tz6cw6", "name": "Screensuki", "description": "Screensuki is a resident Brombonian of the Brombo Discord server. This art depicts his personas mask.", "links": {"website": ["https://www.youtube.com/channel/UCMd4W22oFFf4jYcY2FOKdCw"], "discord": ["7jux9uJGDS"]}, "path": {"161-166, T:0-1": [[1397, 830], [1397, 836], [1403, 836], [1403, 830]]}, "center": {"161-166, T:0-1": [1400, 833]}},
{"id": "tz6b06", "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.\n\nThe Lizly Yuki Shrine of Snow Community, where we worship Pikachu, built a picture in its honor. We coordinated for a whole day over Discord and my stream to build it and keep it alive until the end. <3", "links": {"website": ["https://www.twitch.tv/lizly_yuki", "https://en.wikipedia.org/wiki/Pikachu", "https://bulbapedia.bulbagarden.net/wiki/Pikachu"]}, "path": {"109-166, T:0-1": [[531, 1514], [531, 1516], [527, 1516], [527, 1517], [531, 1521], [531, 1523], [536, 1523], [536, 1521], [537, 1521], [537, 1519], [536, 1519], [536, 1514]]}, "center": {"109-166, T:0-1": [533, 1518]}},
{"id": "tz65xz", "name": "VRChatRU", "description": "Logo of the VRChat Russian community dedicated to creating content for the VR social platform VRChat.\nMore precisely, it's half of a logo, which was drawn minutes before the white void.", "links": {"discord": ["Kw55MAU"]}, "path": {"109-166, T:0-1": [[1580, 1659], [1588, 1659], [1588, 1662], [1580, 1662]]}, "center": {"109-166, T:0-1": [1584, 1661]}},
{"id": "tz6559", "name": "Ogether and Sunity's rubber duck", "description": "The O stands for Ogether, a friend group from Maine, United States. They have a server for the game Minecraft; the 3 represents that the Minecraft server is in its 3rd iteration. These friends came \"Ogether\" to cement their place in internet history.\n\nLater, a user named Sunity and his friend added a rubber duck for their friendship below. We tried to build a bigger Ogether sign next to Apex Legends, but got decimated by the xQc void.", "links": {}, "path": {"60-94": [[1484, 206], [1484, 214], [1494, 214], [1494, 206]], "95-166, T:0-1": [[1482, 205], [1494, 205], [1494, 221], [1483, 221], [1483, 215], [1482, 215]]}, "center": {"60-94": [1489, 210], "95-166, T:0-1": [1488, 211]}},
@@ -6273,12 +6258,12 @@
{"id": "tzputd", "name": "Blue Mirror Gang", "description": "BMG (Blue Mirror Gang) is a small group of friends who enjoy chilling out in front of mirrors in VRChat while wearing blue-colored avatars.", "links": {}, "path": {"109-166, T:0-1": [[1581, 1688], [1581, 1696], [1582, 1697], [1587, 1697], [1588, 1698], [1591, 1698], [1593, 1696], [1593, 1689], [1592, 1688], [1590, 1690], [1584, 1690], [1582, 1688]]}, "center": {"109-166, T:0-1": [1587, 1693]}},
{"id": "tzpf2v", "name": "Klonkie", "description": "A can of beer of the Dutch beer brand \"De Klok\" (often referred to as a \"Klonkie\"). It is a budget beer brand of Grolsch, and refers to the name of the old brewery that it was made in. It has a big cultural presence under students, jokingly claiming the beer is drunk best at room temperature. This escalated to it now being featured on the cans itself \"for those who know\" as the recommended beverage's temperature. If you get served a cold Klonk, it is tradition that you warm it up on the heater or in the microwave.", "links": {"website": ["https://deklokbier.nl/"], "subreddit": ["klokmemes", "PlaceNL", "thenetherlands"]}, "path": {"109-166, T:0-1": [[958, 1950], [971, 1950], [971, 1970], [958, 1970]]}, "center": {"109-166, T:0-1": [965, 1960]}},
{"id": "tzp97t", "name": "The Challenge", "description": "The smile (and pink jump orb) from the end of The Challenge by RobTop, a level in the game Geometry Dash. Created by members of the Aktimoose's Attic Discord server. Ireland was allowed to go behind a portion of it.", "links": {"discord": ["FfsxEvv"]}, "path": {"109-165, T:0-1": [[905, 1166], [918, 1166], [918, 1176], [905, 1176]]}, "center": {"109-165, T:0-1": [912, 1171]}},
-{"id": "tzo6u9", "name": "Club Atlético Boca Juniors", "description": "Club Atlético Boca Juniors (CABJ) is a sports club based in La Boca, Argentina.", "links": {"website": ["https://www.bocajuniors.com.ar/", "https://en.wikipedia.org/wiki/Boca_Juniors"], "subreddit": ["BocaJuniors", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"156-165, T:0-1": [[1122, 645], [1120, 647], [1119, 647], [1114, 652], [1114, 661], [1125, 661], [1125, 659], [1124, 659], [1124, 652], [1125, 651], [1125, 647], [1123, 645]]}, "center": {"156-165, T:0-1": [1119, 654]}},
+{"id": "tzo6u9", "name": "Club Atlético Boca Juniors", "description": "Club Atlético Boca Juniors (CABJ) is a sports club based in La Boca, Argentina.", "links": {"website": ["https://www.bocajuniors.com.ar/", "https://en.wikipedia.org/wiki/Boca_Juniors"], "subreddit": ["BocaJuniors", "argentina", "Republica_Argentina"]}, "path": {"156-165, T:0-1": [[1122, 645], [1120, 647], [1119, 647], [1114, 652], [1114, 661], [1125, 661], [1125, 659], [1124, 659], [1124, 652], [1125, 651], [1125, 647], [1123, 645]]}, "center": {"156-165, T:0-1": [1119, 654]}},
{"id": "tzo5ll", "name": "Andiistische A", "description": "The 'A' icon, representative of the Andiistische Volkspartei, a niche German gaming community", "links": {"subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-165, T:0-1": [[1975, 868], [1975, 865], [1977, 865], [1977, 868]]}, "center": {"56-165, T:0-1": [1976, 867]}},
-{"id": "tzo438", "name": "Uruguay-Argentina hearts", "description": "Hearts depicting the flags of Uruguay and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["uruguay", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"128-162": [[1103, 660], [1100, 663], [1100, 665], [1105, 670], [1155, 670], [1160, 665], [1175, 665], [1175, 662], [1173, 660]], "98-127": [[1137, 660], [1134, 663], [1134, 665], [1139, 670], [1155, 670], [1160, 665], [1160, 663], [1157, 660]], "73-97": [[1153, 660], [1150, 663], [1150, 665], [1155, 670], [1160, 665], [1160, 663], [1157, 660]], "163-165, T:0-1": [[1103, 660], [1100, 663], [1100, 665], [1105, 670], [1155, 670], [1160, 665], [1195, 665], [1195, 663], [1192, 660]]}, "center": {"128-162": [1135, 665], "98-127": [1147, 665], "73-97": [1155, 664], "163-165, T:0-1": [1145, 665]}},
-{"id": "tzo09g", "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://en.wikipedia.org/wiki/Coca-Cola", "https://www.coca-cola.com/"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"69-164, T:0-1": [[1038, 641], [1038, 647], [1037, 648], [1037, 650], [1036, 651], [1036, 657], [1037, 658], [1037, 660], [1036, 661], [1036, 665], [1045, 665], [1045, 661], [1044, 660], [1044, 658], [1045, 657], [1045, 651], [1044, 650], [1044, 648], [1043, 647], [1043, 641]]}, "center": {"69-164, T:0-1": [1041, 654]}},
-{"id": "tznzdf", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"69-165, T:0-1": [[1017, 643], [1017, 651], [1015, 653], [1015, 665], [1024, 665], [1024, 653], [1022, 651], [1022, 643]]}, "center": {"69-165, T:0-1": [1020, 655]}},
-{"id": "tznvdg", "name": "Hornero", "description": "The hornero is the national bird of Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Hornero"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"20-165, T:0-1": [[945, 666], [943, 668], [940, 668], [940, 670], [943, 670], [945, 674], [947, 676], [948, 676], [948, 679], [954, 679], [954, 678], [959, 678], [959, 676], [956, 673], [956, 671], [953, 671], [953, 670], [951, 668], [950, 668], [950, 667], [948, 667], [948, 666]]}, "center": {"20-165, T:0-1": [949, 672]}},
+{"id": "tzo438", "name": "Uruguay-Argentina hearts", "description": "Hearts depicting the flags of Uruguay and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["uruguay", "argentina", "Republica_Argentina"]}, "path": {"128-162": [[1103, 660], [1100, 663], [1100, 665], [1105, 670], [1155, 670], [1160, 665], [1175, 665], [1175, 662], [1173, 660]], "98-127": [[1137, 660], [1134, 663], [1134, 665], [1139, 670], [1155, 670], [1160, 665], [1160, 663], [1157, 660]], "73-97": [[1153, 660], [1150, 663], [1150, 665], [1155, 670], [1160, 665], [1160, 663], [1157, 660]], "163-165, T:0-1": [[1103, 660], [1100, 663], [1100, 665], [1105, 670], [1155, 670], [1160, 665], [1195, 665], [1195, 663], [1192, 660]]}, "center": {"128-162": [1135, 665], "98-127": [1147, 665], "73-97": [1155, 664], "163-165, T:0-1": [1145, 665]}},
+{"id": "tzo09g", "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://en.wikipedia.org/wiki/Coca-Cola", "https://www.coca-cola.com/"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"69-164, T:0-1": [[1038, 641], [1038, 647], [1037, 648], [1037, 650], [1036, 651], [1036, 657], [1037, 658], [1037, 660], [1036, 661], [1036, 665], [1045, 665], [1045, 661], [1044, 660], [1044, 658], [1045, 657], [1045, 651], [1044, 650], [1044, 648], [1043, 647], [1043, 641]]}, "center": {"69-164, T:0-1": [1041, 654]}},
+{"id": "tznzdf", "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": ["argentina", "Republica_Argentina"]}, "path": {"69-165, T:0-1": [[1017, 643], [1017, 651], [1015, 653], [1015, 665], [1024, 665], [1024, 653], [1022, 651], [1022, 643]]}, "center": {"69-165, T:0-1": [1020, 655]}},
+{"id": "tznvdg", "name": "Hornero", "description": "The hornero is the national bird of Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Hornero"], "subreddit": ["argentina", "Republica_Argentina"]}, "path": {"20-165, T:0-1": [[945, 666], [943, 668], [940, 668], [940, 670], [943, 670], [945, 674], [947, 676], [948, 676], [948, 679], [954, 679], [954, 678], [959, 678], [959, 676], [956, 673], [956, 671], [953, 671], [953, 670], [951, 668], [950, 668], [950, 667], [948, 667], [948, 666]]}, "center": {"20-165, T:0-1": [949, 672]}},
{"id": "tznv9y", "name": "Liam Womp", "description": "The Womp is a common character in the emotes of Liam, a Twitch streamer and Super Mario 64 speedrunner. This one is slightly scuffed because it wasn't completely finished before the Great Whiteout occured.", "links": {"website": ["https://www.twitch.tv/liam"]}, "path": {"109-167, T:0-1": [[1950, 1364], [1950, 1373], [1961, 1373], [1961, 1364]]}, "center": {"109-167, T:0-1": [1956, 1369]}},
{"id": "tzntqq", "name": "The Colorman Logo", "description": "The man the myth the Legend the Colorman - a highschool developer mainly known for his work on the Discord bot Dunhammer", "links": {"website": ["https://colorman.me"]}, "path": {"109-164, T:0-1": [[261, 1747], [261, 1734], [274, 1734], [274, 1747]]}, "center": {"109-164, T:0-1": [268, 1741]}},
{"id": "tznnzg", "name": "Flappy Bird", "description": "Flappy Bird is a mobile game developed by Vietnamese video game artist and programmer Dong Nguyen.\n\nThe second entry made by r/VietNam in collaboration with r/placestart after they finished with the flag of Vietnam. Based on the once-famous Vietnamese mobile game Flappy Bird, it got completed at one point but sadly it was ruined by griefers in this final image. You can still find the completed version of this somewhere in the Internet though; it was fun while it lasted.", "links": {"website": ["https://en.wikipedia.org/wiki/Flappy_Bird"], "subreddit": ["VietNam", "placestart"]}, "path": {"109-166, T:0-1": [[1401, 1972], [1401, 1997], [1427, 1997], [1427, 1973]]}, "center": {"109-166, T:0-1": [1414, 1985]}},
@@ -6293,9 +6278,8 @@
{"id": "tzmud1", "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": {"86-115": [[1122, 661], [1122, 666], [1130, 666], [1130, 661]], "116-119": [[1122, 660], [1122, 665], [1130, 665], [1130, 660]], "121-166, T:0-1": [[1129, 606], [1129, 614], [1137, 614], [1137, 606]]}, "center": {"86-115": [1126, 664], "116-119": [1126, 663], "121-166, T:0-1": [1133, 610]}},
{"id": "tzmtmy", "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": {"127-132": [[1887, 233], [1887, 237], [1899, 237], [1899, 233]], "155-166, T:0-1": [[1115, 614], [1115, 619], [1123, 619], [1123, 614]]}, "center": {"127-132": [1893, 235], "155-166, T:0-1": [1119, 617]}},
{"id": "tzmt5d", "name": "Master Chief", "description": "Master Chief is the protagonist and player character of the Halo video game series.\n\nAlthough this small Master Chief was not a part of the larger efforts by r/halo, This lone helmet had stood alongside the BattleBots logo and within this area for a majority of r/place. It was only moved once, being moved 6 pixels to the right after Roark's Attack on Titan was covered by r/wallstreetbets. The small helmet was defended by the efforts of many of their neighbors.", "links": {"website": ["https://en.wikipedia.org/wiki/Master_Chief_(Halo)"]}, "path": {"15-85": [[681, 565], [679, 567], [679, 571], [685, 571], [685, 567], [683, 565]], "132-165, 94-124, T:0-1": [[678, 568], [678, 572], [684, 572], [684, 568], [682, 566], [680, 566]]}, "center": {"15-85": [682, 568], "132-165, 94-124, T:0-1": [681, 569]}},
-{"id": "tzmsbl", "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", "Republica_Argentina", "dankargentina"]}, "path": {"65-166, T:0-1": [[1128, 595], [1128, 599], [1134, 599], [1134, 595]]}, "center": {"65-166, T:0-1": [1131, 597]}},
-{"id": "tzmk4i", "name": "Screensuki's Mask", "description": "An extremely small creator by the name of \"screensuki\", depicted by a pixel recreation of his personas mask.", "links": {"website": ["https://www.youtube.com/channel/UCMd4W22oFFf4jYcY2FOKdCw"]}, "path": {"56-166, T:0-1": [[1398, 831], [1398, 835], [1402, 835], [1402, 831]]}, "center": {"56-166, T:0-1": [1400, 833]}},
-{"id": "tzmi8v", "name": "Argentina-Brazil hearts", "description": "Hearts depicting the flags of Argentina and Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Brazil"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina", "brasil"]}, "path": {"57-100": [[907, 620], [912, 625], [1287, 625], [1290, 622], [1290, 613], [909, 613], [909, 619], [907, 619]], "16-56": [[949, 613], [946, 616], [946, 619], [952, 625], [958, 619], [958, 616], [955, 613]], "101-166, T:0-1": [[907, 620], [912, 625], [1287, 625], [1290, 622], [1290, 613], [940, 613], [940, 619], [907, 619]]}, "center": {"57-100": [1099, 619], "16-56": [952, 618], "101-166, T:0-1": [1105, 619]}},
+{"id": "tzmsbl", "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", "Republica_Argentina"]}, "path": {"65-166, T:0-1": [[1128, 595], [1128, 599], [1134, 599], [1134, 595]]}, "center": {"65-166, T:0-1": [1131, 597]}},
+{"id": "tzmi8v", "name": "Argentina-Brazil hearts", "description": "Hearts depicting the flags of Argentina and Brazil.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Brazil"], "subreddit": ["argentina", "Republica_Argentina", "brasil"]}, "path": {"57-100": [[907, 620], [912, 625], [1287, 625], [1290, 622], [1290, 613], [909, 613], [909, 619], [907, 619]], "16-56": [[949, 613], [946, 616], [946, 619], [952, 625], [958, 619], [958, 616], [955, 613]], "101-166, T:0-1": [[907, 620], [912, 625], [1287, 625], [1290, 622], [1290, 613], [940, 613], [940, 619], [907, 619]]}, "center": {"57-100": [1099, 619], "16-56": [952, 618], "101-166, T:0-1": [1105, 619]}},
{"id": "tzlxcz", "name": "Tindoiimu", "description": "A character in Sdorica, a fantasy turn-based tactical RPG.", "links": {"website": ["https://sdorica.fandom.com/wiki/Tindoiimu", "https://www.sdorica.com/en/"], "subreddit": ["Sdorica"]}, "path": {"126-132": [[186, 92], [186, 97], [204, 97], [204, 92]]}, "center": {"126-132": [195, 95]}},
{"id": "tzlvc8", "name": "Melilla heart", "description": "A heart depicting the flag of Melilla, an autonomous city of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Melilla", "https://en.wikipedia.org/wiki/Flag_of_Melilla"], "subreddit": ["esPlace", "spain"]}, "path": {"159-166, T:0-1": [[1115, 277], [1112, 280], [1112, 282], [1117, 287], [1122, 282], [1122, 280], [1119, 277], [1118, 277], [1117, 278], [1116, 277]]}, "center": {"159-166, T:0-1": [1117, 282]}},
{"id": "tzlus7", "name": "Ceuta heart", "description": "A heart depicting the flag of Ceuta, an autonomous city of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Ceuta", "https://en.wikipedia.org/wiki/Flag_of_Ceuta"], "subreddit": ["esPlace", "spain"]}, "path": {"131-134": [[1089, 277], [1086, 280], [1086, 282], [1091, 287], [1096, 282], [1096, 280], [1093, 277]], "138-139": [[1175, 277], [1172, 280], [1172, 282], [1177, 287], [1182, 282], [1182, 280], [1179, 277]], "135-137": [[1089, 277], [1086, 280], [1086, 282], [1091, 287], [1096, 282], [1096, 280], [1093, 277], [1175, 277], [1172, 280], [1172, 282], [1177, 287], [1182, 282], [1182, 280], [1179, 277]], "74-105": [[1208, 277], [1205, 280], [1205, 282], [1210, 287], [1215, 282], [1215, 280], [1212, 277]], "163-166, T:0-1": [[1107, 277], [1104, 280], [1104, 282], [1109, 287], [1114, 282], [1114, 280], [1111, 277], [1110, 277], [1109, 278], [1108, 277]]}, "center": {"131-134": [1091, 281], "138-139": [1177, 281], "135-137": [1177, 281], "74-105": [1210, 281], "163-166, T:0-1": [1109, 282]}},
@@ -6318,9 +6302,9 @@
{"id": "tzlffy", "name": "Extremadura heart", "description": "A heart depicting the flag of Extremadura, an autonomous community of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Extremadura", "https://en.wikipedia.org/wiki/Flag_of_Extremadura"], "subreddit": ["esPlace", "spain"]}, "path": {"98-166, T:0-1": [[963, 277], [960, 280], [960, 282], [965, 287], [970, 282], [970, 280], [967, 277], [966, 277], [965, 278], [964, 277]]}, "center": {"98-166, T:0-1": [965, 282]}},
{"id": "tzleq2", "name": "Second Spanish Republic heart", "description": "A heart depicting the flag of the Second Spanish Republic, Spain's governance from 1931 to 1939. Today, it is a symbol of supporters for a new republic in Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Second_Spanish_Republic"], "subreddit": ["esPlace", "spain"]}, "path": {"64-67": [[963, 277], [960, 280], [960, 282], [965, 287], [970, 282], [970, 280], [967, 277]], "133, 144, 156, 164, T:0-1": [[955, 277], [952, 280], [952, 282], [957, 287], [962, 282], [962, 280], [959, 277], [958, 277], [957, 278], [956, 277]], "116-121, 124-125, 127-132, 135, 138, 141-143, 145-155, 159-163, 88-113": [[947, 277], [944, 280], [944, 282], [949, 287], [954, 282], [954, 280], [951, 277]], "126, 140, 69-87": [[947, 277], [944, 280], [944, 282], [949, 287], [957, 287], [962, 282], [962, 280], [959, 277]]}, "center": {"64-67": [965, 281], "133, 144, 156, 164, T:0-1": [957, 282], "116-121, 124-125, 127-132, 135, 138, 141-143, 145-155, 159-163, 88-113": [949, 281], "126, 140, 69-87": [953, 282]}},
{"id": "tzlc6o", "name": "Spain heart", "description": "A heart depicting the flag of Spain, a country in Southwestern Europe.\n\nThis small Spanish flag was a battleground for most of r/place. The Spanish struggled to keep it red, fighting against other Spanish redditors attempting to paint the bottom stripe purple to represent the Second Spanish Republic flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"156-157": [[955, 277], [952, 280], [952, 282], [957, 287], [962, 282], [962, 280], [959, 277]], "127-141": [[931, 277], [928, 280], [928, 281], [933, 283], [936, 281], [940, 281], [945, 283], [949, 287], [957, 287], [962, 282], [962, 280], [959, 277]], "66-70": [[955, 277], [952, 280], [952, 282], [957, 287], [965, 287], [970, 282], [970, 280], [967, 277]], "59-65": [[963, 277], [960, 280], [960, 282], [965, 287], [970, 282], [970, 280], [967, 277]], "164, T:0-1": [[947, 277], [944, 280], [944, 282], [949, 287], [954, 282], [954, 280], [951, 277]], "142-155, 159-163, 71-126": [[947, 277], [944, 280], [944, 282], [949, 287], [957, 287], [962, 282], [962, 280], [959, 277]]}, "center": {"156-157": [957, 281], "127-141": [953, 282], "66-70": [961, 282], "59-65": [965, 281], "164, T:0-1": [949, 281], "142-155, 159-163, 71-126": [953, 282]}},
-{"id": "tzlba4", "name": "SEVENTEEN", "description": "A 13-member South Korean boy group from Pledis Entertainment, SEVENTEEN, drawn in fandom colors (rose quartz and serenity). The corner features a Caratbong, The group's official light stick. Underneath are representative emojis for the sub-unit leaders of SEVENTEEN: S.Coups (cherry), Hoshi (tiger), and Woozi (rice). Collaboration work with EiE.", "links": {"website": ["https://twitter.com/pledis_17"], "subreddit": ["seventeen"]}, "path": {"56-166, T:0-1": [[1708, 879], [1708, 891], [1696, 891], [1696, 898], [1714, 898], [1714, 892], [1718, 892], [1718, 879]]}, "center": {"56-166, T:0-1": [1709, 890]}},
+{"id": "tzlba4", "name": "SEVENTEEN", "description": "SEVENTEEN is a 13-member South Korean boy group managed by Pledis Entertainment. This art is drawn in the group's fandom colors, rose quartz and serenity. The corner features a Caratbong, the group's official light stick. Underneath are representative emojis for the sub-unit leaders of SEVENTEEN: S.Coups (cherry), Hoshi (tiger), and Woozi (rice).\n\nThis was a collaboration artwork with the Discord community Empire in Exile.", "links": {"website": ["http://www.pledis.co.kr/html/artist/seventeen", "https://twitter.com/pledis_17", "https://en.wikipedia.org/wiki/Seventeen_(South_Korean_band)"], "subreddit": ["seventeen", "kpop"]}, "path": {"129-150": [[1696, 891], [1696, 898], [1714, 898], [1714, 891]], "78-115": [[1736, 896], [1736, 904], [1750, 904], [1750, 896]], "151-166, T:0-1": [[1708, 879], [1708, 891], [1696, 891], [1696, 898], [1714, 898], [1714, 892], [1718, 892], [1718, 879]]}, "center": {"129-150": [1705, 895], "78-115": [1743, 900], "151-166, T:0-1": [1713, 887]}},
{"id": "tzl6ex", "name": "Portugal-Spain heart", "description": "A heart depicting the flags of Portugal and Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Portugal", "https://en.wikipedia.org/wiki/Spain"], "subreddit": ["portugal", "PORTUGALCARALHO", "esPlace", "spain"]}, "path": {"21-28": [[869, 306], [866, 309], [866, 312], [871, 317], [952, 317], [952, 313], [989, 309], [989, 308], [987, 306]], "29-36": [[869, 306], [866, 309], [866, 312], [871, 317], [952, 317], [952, 306]], "15-20": [[901, 306], [898, 309], [898, 312], [903, 317], [908, 312], [908, 309], [905, 306]], "41-166, T:0-1": [[918, 304], [915, 307], [915, 309], [920, 314], [925, 309], [925, 307], [922, 304], [921, 304], [920, 305], [919, 304]]}, "center": {"21-28": [916, 312], "29-36": [909, 312], "15-20": [903, 311], "41-166, T:0-1": [920, 309]}},
-{"id": "tzkw7w", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark.\n\nLike in the game, this Mokoko Seed is small and hidden among the GFG/Sky/AB Alliance.", "links": {"subreddit": ["lostarkgame"]}, "path": {"96-164, T:0-1": [[1165, 370], [1163, 372], [1163, 375], [1161, 377], [1161, 378], [1163, 380], [1166, 380], [1169, 378], [1170, 376], [1170, 372], [1173, 369], [1173, 368], [1170, 368], [1168, 370]]}, "center": {"96-164, T:0-1": [1167, 374]}},
+{"id": "tzkw7w", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark, which recently released in the West.\n\nLike in the game, this Mokoko Seed is small and hidden among the GFG/Sky/AB Alliance.", "links": {"subreddit": ["lostarkgame"]}, "path": {"96-164, T:0-1": [[1165, 370], [1163, 372], [1163, 375], [1161, 377], [1161, 378], [1163, 380], [1166, 380], [1169, 378], [1170, 376], [1170, 372], [1173, 369], [1173, 368], [1170, 368], [1168, 370]]}, "center": {"96-164, T:0-1": [1167, 374]}},
{"id": "tzkp5c", "name": "Meg", "description": "Meg is the late dog of r0ds.\n\nThe sign was vandalized by the French with the word \"chenil\" (kennel) minutes before the end of r/place.", "links": {}, "path": {"151-163": [[1349, 472], [1374, 472], [1374, 480], [1349, 480]]}, "center": {"151-163": [1362, 476]}},
{"id": "tzknjm", "name": "Tin Pot Man", "description": "Tin Pot Man is a character from the game Reasons 2 Die Awakening, created on the game platform Roblox. He is shown here without his iconic green shirt.", "links": {"subreddit": ["R2DA"]}, "path": {"49-165, T:0-1": [[163, 672], [163, 673], [161, 673], [161, 678], [160, 678], [160, 684], [162, 684], [162, 686], [168, 686], [168, 681], [172, 677], [172, 676], [170, 674], [169, 674], [169, 673], [167, 673], [167, 672]]}, "center": {"49-165, T:0-1": [165, 677]}},
{"id": "tzkmad", "name": "Zombie Escape Mural", "description": "Created by Mapeadores and other community members of GFLClan and Skial.\n\nStickman on top represents Syoudous, textureless tiles representing Morell.\n\nBottom half represents Counter-Strike: Global Offensive Zombie Escape and a player dodging lasers.", "links": {}, "path": {"120-166": [[1739, 1422], [1728, 1422], [1728, 1396], [1739, 1396]]}, "center": {"120-166": [1734, 1409]}},
@@ -6442,20 +6426,13 @@
{"id": "u0a0ay", "name": "Horse", "description": "A playable character in Ultimate Chicken Horse.", "links": {"website": ["https://www.cleverendeavourgames.com/ultimate-chicken-horse"], "subreddit": ["ultimatechickenhorse"]}, "path": {"159-165, T:0-1": [[301, 857], [301, 859], [300, 859], [300, 862], [298, 864], [300, 866], [305, 866], [305, 863], [306, 862], [305, 861], [305, 860], [304, 859], [304, 857]]}, "center": {"159-165, T:0-1": [302, 863]}},
{"id": "u09zv0", "name": "Chicken", "description": "A playable character in Ultimate Chicken Horse.", "links": {"website": ["https://www.cleverendeavourgames.com/ultimate-chicken-horse"], "subreddit": ["ultimatechickenhorse"]}, "path": {"156-159": [[303, 860], [303, 862], [302, 863], [303, 864], [303, 866], [324, 866], [324, 860]], "160-166, T:0-1": [[313, 860], [313, 866], [324, 866], [324, 860]]}, "center": {"156-159": [313, 863], "160-166, T:0-1": [319, 863]}},
{"id": "u09ssy", "name": "Majora's Mask", "description": "An ancient accursed mask of unknown origin inhabited by a powerful evil. It's power is also bestowed upon the wearer. The mask is said to have been used by an ancient tribe in hexing rituals until they sealed it away in fear that its power was so great it could be misused to bring upon catastrophe. It would later be stolen from the Happy Mask Salesman by a mischevious Skull Kid.", "links": {"website": ["https://zelda.fandom.com/wiki/The_Legend_of_Zelda:_Majora%27s_Mask"], "subreddit": ["zelda"]}, "path": {"109-166, T:0-1": [[1343, 1835], [1344, 1837], [1345, 1839], [1346, 1841], [1347, 1842], [1347, 1845], [1349, 1847], [1349, 1848], [1347, 1848], [1347, 1849], [1348, 1852], [1347, 1852], [1345, 1850], [1344, 1851], [1346, 1853], [1346, 1854], [1344, 1854], [1342, 1852], [1342, 1853], [1344, 1855], [1344, 1856], [1339, 1854], [1336, 1857], [1333, 1854], [1328, 1856], [1328, 1855], [1330, 1853], [1330, 1852], [1326, 1854], [1326, 1853], [1328, 1851], [1327, 1850], [1325, 1852], [1324, 1852], [1324, 1850], [1325, 1849], [1325, 1848], [1323, 1848], [1323, 1847], [1325, 1845], [1326, 1841], [1327, 1839], [1328, 1837], [1329, 1835], [1330, 1836], [1331, 1838], [1332, 1839], [1335, 1840], [1336, 1841], [1337, 1840], [1340, 1839], [1341, 1838], [1342, 1836]]}, "center": {"109-166, T:0-1": [1336, 1846]}},
-{"id": "u09oc3", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-165, T:0-1": [[1098, 864], [1099, 865], [1099, 869], [1114, 869], [1116, 867], [1116, 866], [1114, 864], [1109, 864], [1107, 862], [1100, 862]]}, "center": {"56-165, T:0-1": [1106, 866]}},
-{"id": "u09jbs", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1331, 844], [1331, 865], [1335, 865], [1335, 863], [1336, 863], [1336, 849], [1335, 849], [1335, 844]]}, "center": {"56-166, T:0-1": [1333, 855]}},
-{"id": "u09i2s", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1400, 854], [1400, 864], [1370, 864], [1369, 863], [1363, 863], [1362, 864], [1358, 864], [1356, 866], [1356, 867], [1358, 869], [1360, 869], [1362, 868], [1371, 868], [1372, 869], [1374, 869], [1376, 867], [1376, 865], [1397, 865], [1397, 867], [1399, 869], [1402, 869], [1402, 860], [1404, 860], [1404, 854]]}, "center": {"56-166, T:0-1": [1380, 864]}},
-{"id": "u09fzu", "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", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"56-166, T:0-1": [[1409, 843], [1406, 846], [1406, 848], [1410, 852], [1412, 852], [1416, 848], [1416, 846], [1413, 843]]}, "center": {"56-166, T:0-1": [1411, 847]}},
-{"id": "u09eti", "name": "Tigerenten", "description": "A main character in Tigerenten Club.", "links": {"website": ["https://en.wikipedia.org/wiki/Tigerenten_Club"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1432, 841], [1429, 845], [1429, 847], [1416, 847], [1416, 846], [1413, 843], [1409, 843], [1406, 846], [1406, 848], [1410, 852], [1417, 852], [1418, 853], [1422, 853], [1425, 856], [1428, 853], [1431, 856], [1431, 857], [1432, 858], [1432, 862], [1436, 866], [1438, 866], [1442, 862], [1445, 862], [1449, 866], [1451, 866], [1452, 865], [1453, 865], [1461, 864], [1462, 865], [1464, 865], [1466, 863], [1467, 863], [1468, 862], [1471, 862], [1471, 860], [1472, 860], [1472, 854], [1470, 854], [1470, 858], [1468, 858], [1468, 859], [1459, 859], [1459, 856], [1460, 855], [1460, 851], [1462, 851], [1463, 852], [1465, 852], [1468, 849], [1468, 848], [1469, 847], [1469, 841], [1462, 836], [1453, 834], [1445, 839], [1445, 844], [1443, 844], [1439, 841]]}, "center": {"56-166, T:0-1": [1445, 851]}},
+{"id": "u09eti", "name": "Tigerenten", "description": "Tigerenten is a main character in the TV show Tigerenten Club.\n\nIn this art, a heart with the flag of Ukraine is attached to Tigerenten's tail.", "links": {"website": ["https://en.wikipedia.org/wiki/Tigerenten_Club"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"63-92": [[1431, 842], [1429, 845], [1428, 849], [1429, 851], [1429, 854], [1432, 858], [1432, 862], [1436, 866], [1440, 866], [1443, 863], [1446, 863], [1449, 866], [1452, 866], [1455, 863], [1462, 865], [1464, 865], [1467, 862], [1470, 862], [1472, 859], [1472, 853], [1470, 853], [1470, 858], [1468, 858], [1468, 860], [1465, 860], [1464, 859], [1462, 859], [1461, 860], [1459, 860], [1459, 858], [1460, 857], [1460, 851], [1462, 851], [1463, 852], [1466, 852], [1470, 847], [1470, 845], [1469, 844], [1469, 841], [1454, 834], [1452, 834], [1447, 837], [1443, 842]], "93-166, T:0-1": [[1432, 841], [1429, 845], [1429, 847], [1416, 847], [1416, 846], [1413, 843], [1409, 843], [1406, 846], [1406, 848], [1410, 852], [1417, 852], [1418, 853], [1422, 853], [1425, 856], [1428, 853], [1431, 856], [1431, 857], [1432, 858], [1432, 862], [1436, 866], [1438, 866], [1442, 862], [1445, 862], [1449, 866], [1451, 866], [1452, 865], [1453, 865], [1461, 864], [1462, 865], [1464, 865], [1466, 863], [1467, 863], [1468, 862], [1471, 862], [1471, 860], [1472, 860], [1472, 854], [1470, 854], [1470, 858], [1468, 858], [1468, 859], [1459, 859], [1459, 856], [1460, 855], [1460, 851], [1462, 851], [1463, 852], [1465, 852], [1468, 849], [1468, 848], [1469, 847], [1469, 841], [1462, 836], [1453, 834], [1445, 839], [1445, 844], [1443, 844], [1439, 841]]}, "center": {"63-92": [1449, 852], "93-166, T:0-1": [1449, 853]}},
{"id": "u09dms", "name": "Frog", "description": "A main character in Tigerenten Club.", "links": {"website": ["https://en.wikipedia.org/wiki/Tigerenten_Club"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"63-166, T:0-1": [[1478, 835], [1475, 838], [1475, 843], [1468, 849], [1468, 855], [1472, 855], [1472, 854], [1473, 854], [1475, 852], [1476, 852], [1476, 856], [1477, 857], [1477, 861], [1475, 863], [1475, 866], [1491, 866], [1491, 862], [1489, 862], [1488, 861], [1488, 856], [1490, 854], [1492, 854], [1497, 859], [1500, 856], [1500, 855], [1495, 849], [1495, 847], [1496, 846], [1496, 843], [1490, 835]]}, "center": {"63-166, T:0-1": [1485, 845]}},
{"id": "u09dg6", "name": "Retropug", "description": "A small YouTuber who makes Minecraft content.", "links": {"website": ["https://www.youtube.com/channel/UChsjW1zWEUem0Z0x3lbPSmw"], "subreddit": ["RetroPugs"]}, "path": {"109-166, T:0-1": [[444, 1643], [447, 1643], [447, 1646], [444, 1646]]}, "center": {"109-166, T:0-1": [446, 1645]}},
-{"id": "u099j5", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1493, 862], [1493, 864], [1492, 864], [1492, 867], [1493, 867], [1493, 868], [1502, 868], [1502, 865], [1503, 865], [1503, 863], [1505, 861], [1508, 861], [1510, 864], [1510, 869], [1514, 869], [1514, 867], [1515, 866], [1515, 865], [1514, 864], [1514, 863], [1510, 863], [1509, 860], [1509, 856], [1506, 856], [1504, 858], [1504, 861], [1502, 863], [1501, 862]]}, "center": {"56-166, T:0-1": [1503, 864]}},
-{"id": "u0977w", "name": "TWICE-Germany heart", "description": "A heart with the colors of TWICE and the flag of Germany.", "links": {"subreddit": ["twice", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1569, 865], [1567, 867], [1567, 869], [1571, 873], [1575, 869], [1575, 867], [1573, 865], [1572, 865], [1571, 866], [1570, 865]]}, "center": {"56-166, T:0-1": [1571, 868]}},
-{"id": "u096fm", "name": "Aqua", "description": "A main character in KonoSuba.", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"56-166, T:0-1": [[1590, 859], [1590, 866], [1591, 867], [1591, 869], [1595, 869], [1595, 867], [1596, 866], [1596, 859]]}, "center": {"56-166, T:0-1": [1593, 864]}},
-{"id": "u095x4", "name": "Kazuma", "description": "A main character in KonoSuba.", "links": {"website": ["https://konosuba.fandom.com/wiki/Satou_Kazuma"], "subreddit": ["Konosuba"]}, "path": {"56-166, T:0-1": [[1597, 858], [1595, 860], [1595, 867], [1599, 869], [1601, 867], [1601, 860], [1599, 858]]}, "center": {"56-166, T:0-1": [1598, 863]}},
-{"id": "u090mi", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1712, 844], [1710, 846], [1710, 847], [1711, 848], [1711, 850], [1718, 850], [1718, 848], [1719, 847], [1719, 846], [1717, 844]]}, "center": {"56-166, T:0-1": [1715, 847]}},
-{"id": "u0904c", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"56-166, T:0-1": [[1575, 862], [1573, 864], [1573, 865], [1574, 866], [1574, 868], [1590, 868], [1590, 866], [1627, 851], [1630, 851], [1630, 847], [1671, 847], [1671, 850], [1672, 850], [1672, 852], [1687, 852], [1687, 847], [1688, 847], [1688, 845], [1687, 845], [1687, 842], [1679, 842], [1679, 844], [1673, 844], [1671, 846], [1669, 846], [1669, 841], [1665, 841], [1665, 846], [1629, 846], [1628, 847], [1625, 847], [1625, 851], [1591, 865], [1591, 863], [1590, 863], [1590, 862]]}, "center": {"56-166, T:0-1": [1639, 853]}},
-{"id": "u08vz6", "name": "Nintendo 64", "description": "Logo for the Nintendo 64, a game console made by Nintendo.", "links": {"website": ["https://en.wikipedia.org/wiki/Nintendo_64"]}, "path": {"56-166, T:0-1": [[1818, 843], [1811, 848], [1811, 855], [1818, 860], [1820, 860], [1820, 853], [1826, 851], [1828, 848], [1826, 845]]}, "center": {"56-166, T:0-1": [1818, 850]}},
+{"id": "u0977w", "name": "TWICE-Germany heart", "description": "A heart with the colors of TWICE and the flag of Germany.", "links": {"website": ["http://twice.jype.com/", "https://en.wikipedia.org/wiki/Germany"], "subreddit": ["twice", "kpop", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"96-166, T:0-1": [[1569, 865], [1567, 867], [1567, 869], [1571, 873], [1575, 869], [1575, 867], [1573, 865], [1572, 865], [1571, 866], [1570, 865]]}, "center": {"96-166, T:0-1": [1571, 869]}},
+{"id": "u096fm", "name": "Aqua", "description": "Aqua is a main character in the anime KonoSuba.\n\nThis art was drawn on day 3 of r/place.", "links": {"website": ["https://konosuba.fandom.com/wiki/Aqua"], "subreddit": ["Konosuba"]}, "path": {"116-166, T:0-1": [[1590, 859], [1590, 866], [1591, 867], [1591, 869], [1595, 869], [1595, 867], [1596, 866], [1596, 859]]}, "center": {"116-166, T:0-1": [1593, 864]}},
+{"id": "u095x4", "name": "Satou Kazuma", "description": "Satou Kazuma is a main character in the anime KonoSuba.\n\nThis art was drawn on day 3 of r/place.", "links": {"website": ["https://konosuba.fandom.com/wiki/Satou_Kazuma"], "subreddit": ["Konosuba"]}, "path": {"114-166, T:0-1": [[1597, 858], [1595, 860], [1595, 867], [1597, 869], [1599, 869], [1601, 867], [1601, 860], [1599, 858]]}, "center": {"114-166, T:0-1": [1598, 864]}},
+{"id": "u08vz6", "name": "Nintendo 64", "description": "The Nintendo 64 is a game console made by Nintendo.", "links": {"website": ["https://en.wikipedia.org/wiki/Nintendo_64"]}, "path": {"78-82": [[1103, 836], [1101, 838], [1101, 839], [1098, 839], [1095, 842], [1095, 851], [1097, 853], [1101, 853], [1103, 855], [1104, 855], [1107, 852], [1112, 852], [1112, 841], [1109, 838], [1108, 838], [1106, 840], [1106, 838], [1104, 836]], "161-166, T:0-1": [[1818, 843], [1811, 848], [1811, 855], [1818, 860], [1820, 860], [1820, 853], [1826, 851], [1828, 848], [1826, 845]]}, "center": {"78-82": [1102, 846], "161-166, T:0-1": [1819, 848]}},
{"id": "u08rdk", "name": "Germany-The Great Wave off Kanagawa heart", "description": "A heart depicting the flag of Germany and the colors of The Great Wave off Kanagawa.", "links": {"subreddit": ["placeDE", "de", "germany", "place_the_wave"], "discord": ["placeDE"]}, "path": {"56-166, T:0-1": [[1941, 825], [1939, 827], [1939, 829], [1944, 834], [1949, 829], [1949, 827], [1947, 825]]}, "center": {"56-166, T:0-1": [1944, 829]}},
{"id": "u08ngp", "name": "beynizenci", "description": "beynizenci is a Turkish YouTuber.", "links": {"website": ["https://www.youtube.com/cankocabiyik"], "subreddit": ["beynizenci"]}, "path": {"98-129": [[996, 89], [996, 97], [1000, 97], [1000, 89]], "71-81": [[995, 97], [995, 105], [999, 105], [999, 97]], "51-56": [[995, 87], [995, 94], [999, 94], [999, 87]], "30-40": [[996, 89], [996, 96], [1000, 96], [1000, 89]], "144-161, 62-69, T:0-1": [[996, 88], [996, 96], [1000, 96], [1000, 88]]}, "center": {"98-129": [998, 93], "71-81": [997, 101], "51-56": [997, 91], "30-40": [998, 93], "144-161, 62-69, T:0-1": [998, 92]}},
{"id": "u08jdo", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"109-166, T:0-1": [[582, 1711], [589, 1711], [589, 1722], [582, 1722]]}, "center": {"109-166, T:0-1": [586, 1717]}},
@@ -6477,7 +6454,7 @@
{"id": "u07vk2", "name": "Flag of England", "description": "The national flag of England, United Kingdom, known as St. George's Cross.", "links": {"website": ["https://en.wikipedia.org/wiki/England", "https://en.wikipedia.org/wiki/Flag_of_England"]}, "path": {"19-20": [[223, 254], [220, 257], [223, 260], [226, 257]], "6-14": [[385, 264], [382, 267], [385, 270], [388, 267]], "44-50": [[0, 307], [0, 313], [14, 313], [14, 312], [21, 312], [21, 307]], "163-166, T:0-1": [[1944, 364], [1950, 364], [1950, 368], [1944, 368]]}, "center": {"19-20": [223, 257], "6-14": [385, 267], "44-50": [11, 310], "163-166, T:0-1": [1947, 366]}},
{"id": "u07vja", "name": "VShojo", "description": "Logo for VTuber agency VShojo.", "links": {"website": ["https://www.vshojo.com/"], "subreddit": ["VShojo", "placestart"]}, "path": {"109-166, T:0-1": [[1083, 1973], [1083, 1998], [1109, 1998], [1109, 1973]]}, "center": {"109-166, T:0-1": [1096, 1986]}},
{"id": "u07uny", "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"]}, "path": {"109-166, T:0-1": [[1056, 1973], [1056, 1998], [1082, 1998], [1082, 1973]]}, "center": {"109-166, T:0-1": [1069, 1986]}},
-{"id": "u07u1d", "name": "Hololive", "description": "Logo for VTuber agency Hololive.", "links": {"website": ["https://en.hololive.tv/"], "subreddit": ["Hololive", "placestart"]}, "path": {"109-165, T:0-1": [[1027, 1973], [1027, 1998], [1055, 1998], [1055, 1973]]}, "center": {"109-165, T:0-1": [1041, 1986]}},
+{"id": "u07u1d", "name": "Hololive", "description": "Logo for VTuber agency Hololive.", "links": {"website": ["https://en.hololive.tv/"], "subreddit": ["Hololive", "placestart"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1027, 1973], [1027, 1998], [1055, 1998], [1055, 1973]]}, "center": {"109-165, T:0-1": [1041, 1986]}},
{"id": "u077y1", "name": "MDF", "description": "A small discord community (only 2) that fought as hard as they could with multi-accounts for a place for their logo.", "links": {"subreddit": ["mdf"]}, "path": {"56-166, T:0-1": [[1629, 993], [1645, 993], [1645, 1000], [1629, 1000]]}, "center": {"56-166, T:0-1": [1637, 997]}},
{"id": "u075jt", "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": ["place_nordicunion", "Denmark", "placestart"]}, "path": {"109-166, T:0-1": [[839, 1984], [839, 1997], [852, 1997], [852, 1984]]}, "center": {"109-166, T:0-1": [846, 1991]}},
{"id": "u074p5", "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": ["place_nordicunion", "Suomi", "placestart"]}, "path": {"109-166, T:0-1": [[850, 1984], [850, 1997], [863, 1997], [863, 1984]]}, "center": {"109-166, T:0-1": [857, 1991]}},
@@ -6485,7 +6462,6 @@
{"id": "u0738i", "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": ["place_nordicunion", "Norge", "placestart"]}, "path": {"109-166, T:0-1": [[839, 1974], [839, 1986], [852, 1986], [852, 1974]]}, "center": {"109-166, T:0-1": [846, 1980]}},
{"id": "u06pis", "name": "Magenta flower", "description": "A small magenta flower created in the spur of the moment and defended ruthlessly until the end.", "links": {"website": ["https://en.wikipedia.org/wiki/Magenta#In_botany"]}, "path": {"125-130": [[100, 416], [98, 418], [98, 421], [102, 421], [102, 418]], "146-165, T:0-1": [[100, 416], [98, 418], [100, 420], [102, 418]]}, "center": {"125-130": [100, 419], "146-165, T:0-1": [100, 418]}},
{"id": "u06p92", "name": "Unfinished Dredark logo", "description": "Cogg(the developer of dredark) with a few others attempted to create their logo, alas before the logo could be completed, The r/place white purge occurred.", "links": {"website": ["https://drednot.io/"], "subreddit": ["DredarkContraptions"]}, "path": {"109-166, T:0-1": [[1890, 1027], [1898, 1027], [1898, 1035], [1890, 1035], [1890, 1031]]}, "center": {"109-166, T:0-1": [1894, 1031]}},
-{"id": "tyrqka", "name": "Anne Rosses heart", "description": "heart that annette care day and night with much love", "links": {"website": ["https://www.instagram.com/anne_rosses"]}, "path": {"56-166, T:0-1": [[1479, 829], [1479, 832], [1486, 832], [1486, 829]]}, "center": {"56-166, T:0-1": [1483, 831]}},
{"id": "tygp7u", "name": "Knights of Midgard", "description": "Discord group of Medieval Vikings", "links": {}, "path": {"109-166, T:0-1": [[1109, 1741], [1127, 1741], [1127, 1749], [1109, 1749]]}, "center": {"109-166, T:0-1": [1118, 1745]}},
{"id": "tyfydt", "name": "Naked Roblox character", "description": "Before the duck, a naked Roblox character was made her, orchestrated by Quackity with the help of Tubbo and Jack Manifold.", "links": {"website": ["https://www.twitch.tv/videos/1445581827"], "subreddit": ["JackManifold", "quackity", "Tubbo_"]}, "path": {"109-164, T:0-1": [[294, 1736], [365, 1733], [366, 1783], [342, 1783], [341, 1820], [303, 1820], [304, 1786], [280, 1786], [280, 1736], [305, 1735], [308, 1735], [283, 1735], [343, 1733], [342, 1705], [297, 1704], [294, 1734]]}, "center": {"109-164, T:0-1": [324, 1786]}},
{"id": "tyenua", "name": "Cussy", "description": "After a discovery of a not-safe-for-work fanart done to a character from the Cars movie (most likely Cruz Ramirez), it was turned into a meme, especially in the HasanAbi community. The word is a portmanteau of car pussy, because in the fanart, it featured the exhaust pipe being illustrated as a vagina. This was done on the last day of r/place, next to Marx and agreeing with Guatemalans to share the space (because Cussy was previously destroyed, so Hasan and his community wanted to rebuild it). This thirsty boy really wants the attention of those German cussies. Organized by Twitch streamer HasanAbi.", "links": {"website": ["https://www.twitch.tv/hasanabi"], "subreddit": ["Hasan_Piker", "okbuddyhasan"]}, "path": {"109-165, T:0-1": [[846, 1161], [833, 1162], [824, 1168], [818, 1173], [810, 1174], [809, 1180], [808, 1196], [811, 1199], [823, 1202], [827, 1207], [833, 1211], [842, 1211], [849, 1209], [883, 1208], [892, 1210], [900, 1209], [906, 1203], [907, 1195], [907, 1185], [902, 1177], [896, 1172], [880, 1172], [873, 1165], [865, 1161], [851, 1161]]}, "center": {"109-165, T:0-1": [857, 1187]}},
@@ -6496,19 +6472,19 @@
{"id": "tyawj8", "name": "Red Stone of Aja", "description": "A symbol representing JoJo's Bizarre Adventure, Part 2: Battle Tendency.\n\nThere was not enough time to finish the full art of this stone, but some fans placed a mini-stone inside the Stone Mask to reference how the stone was used in the final battle.", "links": {"website": ["https://jojo.fandom.com/wiki/Red_Stone_of_Aja"], "subreddit": ["ShitPostCrusaders", "StardustCrusaders", "wholesomejojo"]}, "path": {"164-166, T:0-1": [[128, 923], [128, 926], [131, 926], [131, 923]]}, "center": {"164-166, T:0-1": [130, 925]}},
{"id": "tya3uw", "name": "Mainzelmännchen", "description": "The Mainzelmännchen are fictional charackters from Germany's second TV-Channel ZDF, commonly seen at the beginning and end of ad-breaks", "links": {"website": ["https://www.zdf-werbefernsehen.de/mainzelmaennchen/die-charaktere"]}, "path": {"109-166, T:0-1": [[1443, 1171], [1456, 1171], [1456, 1169], [1457, 1169], [1457, 1168], [1462, 1168], [1461, 1167], [1461, 1166], [1463, 1166], [1463, 1165], [1466, 1165], [1466, 1164], [1467, 1164], [1467, 1158], [1466, 1157], [1462, 1153], [1462, 1152], [1464, 1150], [1464, 1146], [1464, 1145], [1462, 1145], [1462, 1142], [1461, 1142], [1461, 1140], [1459, 1138], [1457, 1137], [1454, 1137], [1454, 1136], [1453, 1135], [1449, 1135], [1449, 1136], [1448, 1136], [1448, 1137], [1446, 1137], [1443, 1140], [1443, 1142], [1442, 1142], [1442, 1147], [1441, 1147], [1441, 1151], [1443, 1153], [1437, 1158], [1437, 1164], [1438, 1165], [1442, 1166], [1443, 1169]]}, "center": {"109-166, T:0-1": [1452, 1154]}},
{"id": "u0expw", "name": "Plover", "description": "Plover is an open stenography project that relies on chorded typing to type very quickly with practise. Despite it's difficulty in learning, many regard it as cheating because of it's fast typing speeds of over 200 wpm, so it has been banned from the leaderboards of monkey type.", "links": {"website": ["https://www.openstenoproject.org/plover/"], "subreddit": ["Plover"]}, "path": {"109-166, T:0-1": [[644, 1315], [652, 1315], [649, 1323], [643, 1322], [644, 1322]]}, "center": {"109-166, T:0-1": [647, 1319]}},
-{"id": "u111qj", "name": "Hakos Baelz", "description": "A Hololive English (Council) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hakos-baelz"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1341, 919], [1339, 921], [1338, 925], [1338, 927], [1341, 930], [1342, 929], [1344, 929], [1343, 931], [1344, 932], [1345, 933], [1347, 933], [1351, 929], [1352, 929], [1353, 930], [1354, 930], [1355, 928], [1356, 924], [1355, 921], [1354, 920], [1353, 921], [1351, 921], [1349, 923], [1347, 925], [1343, 921]]}, "center": {"56-166, T:0-1": [1347, 926]}},
-{"id": "u110p0", "name": "IRyS", "description": "A Hololive English (Project Hope) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/irys"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1339, 913], [1339, 914], [1341, 917], [1338, 919], [1339, 920], [1341, 920], [1341, 922], [1340, 925], [1346, 925], [1347, 926], [1348, 925], [1354, 925], [1354, 920], [1353, 917], [1355, 914], [1354, 913], [1352, 915], [1351, 915], [1350, 914], [1349, 915], [1345, 915], [1344, 914], [1343, 915], [1342, 915], [1340, 913]]}, "center": {"56-166, T:0-1": [1347, 920]}},
-{"id": "u10yvd", "name": "Mori Calliope", "description": "A Hololive English (Myth) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/mori-calliope"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1346, 903], [1345, 906], [1344, 905], [1342, 908], [1341, 912], [1339, 914], [1340, 915], [1340, 917], [1342, 917], [1343, 918], [1344, 917], [1350, 917], [1351, 918], [1352, 917], [1354, 915], [1355, 914], [1353, 912], [1353, 909], [1351, 907], [1351, 906], [1350, 905], [1349, 906], [1348, 905], [1348, 903]]}, "center": {"56-166, T:0-1": [1347, 912]}},
-{"id": "u10slw", "name": "Uruha Rushia heart", "description": "A green heart representing Uruha Rushia, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/uruha-rushia"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1400, 876], [1398, 878], [1398, 879], [1401, 882], [1404, 879], [1404, 878], [1402, 876]]}, "center": {"56-166, T:0-1": [1401, 879]}},
-{"id": "u10rta", "name": "Usada Pekora heart", "description": "A blue heart representing Usada Pekora, a VTuber from the 3rd generation of Hololive Japan. The heart has rabbit ears to match Usada Pekora's VTuber model.", "links": {"website": ["https://en.hololive.tv/portfolio/items/usada-pekora"], "subreddit": ["pekora", "Hololive"]}, "path": {"56-166, T:0-1": [[1398, 869], [1396, 871], [1396, 874], [1399, 877], [1402, 874], [1402, 871], [1400, 869]]}, "center": {"56-166, T:0-1": [1399, 873]}},
-{"id": "u10qs6", "name": "Shirogane Noel heart", "description": "A silver heart representing Shirogane Noel, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shirogane-noel"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1371, 869], [1369, 871], [1369, 872], [1372, 875], [1375, 872], [1375, 871], [1373, 869]]}, "center": {"56-166, T:0-1": [1372, 872]}},
-{"id": "u10ps7", "name": "Houshou Marine heart", "description": "A red heart representing Houshou Marine, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/houshou-marine"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1366, 878], [1364, 880], [1364, 881], [1367, 884], [1370, 881], [1370, 880], [1368, 878]]}, "center": {"56-166, T:0-1": [1367, 881]}},
-{"id": "u10p1q", "name": "Shiranui Flare heart", "description": "An orange heart representing Shiranui Flare, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shiranui-flare"], "subreddit": ["Hololive"]}, "path": {"56-166, T:0-1": [[1368, 873], [1366, 875], [1366, 876], [1369, 879], [1372, 876], [1372, 875], [1370, 873]]}, "center": {"56-166, T:0-1": [1369, 876]}},
+{"id": "u111qj", "name": "Hakos Baelz", "description": "A Hololive English (Council) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hakos-baelz"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1341, 919], [1339, 921], [1338, 925], [1338, 927], [1341, 930], [1342, 929], [1344, 929], [1343, 931], [1344, 932], [1345, 933], [1347, 933], [1351, 929], [1352, 929], [1353, 930], [1354, 930], [1355, 928], [1356, 924], [1355, 921], [1354, 920], [1353, 921], [1351, 921], [1349, 923], [1347, 925], [1343, 921]]}, "center": {"56-166, T:0-1": [1347, 926]}},
+{"id": "u110p0", "name": "IRyS", "description": "A Hololive English (Project Hope) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/irys"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1339, 913], [1339, 914], [1341, 917], [1338, 919], [1339, 920], [1341, 920], [1341, 922], [1340, 925], [1346, 925], [1347, 926], [1348, 925], [1354, 925], [1354, 920], [1353, 917], [1355, 914], [1354, 913], [1352, 915], [1351, 915], [1350, 914], [1349, 915], [1345, 915], [1344, 914], [1343, 915], [1342, 915], [1340, 913]]}, "center": {"56-166, T:0-1": [1347, 920]}},
+{"id": "u10yvd", "name": "Mori Calliope", "description": "A Hololive English (Myth) VTuber. Part of the CHAD CAST podcast.", "links": {"website": ["https://en.hololive.tv/portfolio/items/mori-calliope"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1346, 903], [1345, 906], [1344, 905], [1342, 908], [1341, 912], [1339, 914], [1340, 915], [1340, 917], [1342, 917], [1343, 918], [1344, 917], [1350, 917], [1351, 918], [1352, 917], [1354, 915], [1355, 914], [1353, 912], [1353, 909], [1351, 907], [1351, 906], [1350, 905], [1349, 906], [1348, 905], [1348, 903]]}, "center": {"56-166, T:0-1": [1347, 912]}},
+{"id": "u10slw", "name": "Uruha Rushia heart", "description": "A green heart representing Uruha Rushia, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/uruha-rushia", "https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "https://virtualyoutuber.fandom.com/wiki/Uruha_Rushia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"74-166, T:0-1": [[1400, 876], [1398, 878], [1398, 879], [1401, 882], [1404, 879], [1404, 878], [1402, 876]]}, "center": {"74-166, T:0-1": [1401, 879]}},
+{"id": "u10rta", "name": "Usada Pekora heart", "description": "A blue heart representing Usada Pekora, a VTuber from the 3rd generation of Hololive Japan. The heart has rabbit ears to match Usada Pekora's VTuber model.", "links": {"website": ["https://en.hololive.tv/portfolio/items/usada-pekora", "https://virtualyoutuber.fandom.com/wiki/Usada_Pekora"], "subreddit": ["pekora", "Hololive"], "discord": ["holofans"]}, "path": {"74-166, T:0-1": [[1398, 869], [1396, 871], [1396, 874], [1399, 877], [1402, 874], [1402, 871], [1400, 869]]}, "center": {"74-166, T:0-1": [1399, 873]}},
+{"id": "u10qs6", "name": "Shirogane Noel heart", "description": "A silver heart representing Shirogane Noel, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shirogane-noel", "https://virtualyoutuber.fandom.com/wiki/Shirogane_Noel"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"73-166, T:0-1": [[1371, 869], [1369, 871], [1369, 872], [1372, 875], [1375, 872], [1375, 871], [1373, 869]]}, "center": {"73-166, T:0-1": [1372, 872]}},
+{"id": "u10ps7", "name": "Houshou Marine heart", "description": "A red heart representing Houshou Marine, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/houshou-marine", "https://virtualyoutuber.fandom.com/wiki/Houshou_Marine"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"71-166, T:0-1": [[1366, 878], [1364, 880], [1364, 881], [1367, 884], [1370, 881], [1370, 880], [1368, 878]]}, "center": {"71-166, T:0-1": [1367, 881]}},
+{"id": "u10p1q", "name": "Shiranui Flare heart", "description": "An orange heart representing Shiranui Flare, a VTuber from the 3rd generation of Hololive Japan.", "links": {"website": ["https://en.hololive.tv/portfolio/items/shiranui-flare", "https://virtualyoutuber.fandom.com/wiki/Shiranui_Flare"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"73-166, T:0-1": [[1368, 873], [1366, 875], [1366, 876], [1369, 879], [1372, 876], [1372, 875], [1370, 873]]}, "center": {"73-166, T:0-1": [1369, 876]}},
{"id": "u10n8u", "name": "Mexico-Georgia-Armenia heart", "description": "A heart depicting the flags of Mexico, Georgia, and Armenia, members of an alliance. Previously there were three different hearts that eventually merged into this big one. The heart was erased when Azerbaijan took over Georgia and Armenia.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Georgia_(country)", "https://en.wikipedia.org/wiki/Armenia"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico", "Sakartvelo", "armenia"]}, "path": {"79-86": [[902, 193], [903, 193], [904, 192], [905, 191], [907, 191], [908, 192], [909, 193], [909, 197], [903, 203], [901, 203], [895, 197], [895, 193], [896, 192], [897, 191], [899, 191], [900, 192], [901, 193]]}, "center": {"79-86": [902, 198]}},
-{"id": "u10mkl", "name": "Kageyama Shien", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/kageyama-shien"], "subreddit": ["holostars", "Hololive"]}, "path": {"56-166, T:0-1": [[1395, 919], [1394, 920], [1394, 923], [1395, 924], [1395, 926], [1401, 926], [1401, 924], [1402, 923], [1402, 919]]}, "center": {"56-166, T:0-1": [1398, 922]}},
-{"id": "u10ljm", "name": "Astel Leda", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/astel-leda"], "subreddit": ["holostars", "Hololive"]}, "path": {"56-166, T:0-1": [[1395, 910], [1393, 912], [1393, 916], [1396, 919], [1400, 919], [1403, 916], [1403, 912], [1401, 910]]}, "center": {"56-166, T:0-1": [1398, 914]}},
-{"id": "u10kzi", "name": "Hanasaki Miyabi", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hanasaki-miyabi"], "subreddit": ["holostars", "Hololive"]}, "path": {"56-166, T:0-1": [[1395, 902], [1393, 904], [1393, 911], [1403, 911], [1403, 904], [1401, 902]]}, "center": {"56-166, T:0-1": [1398, 907]}},
-{"id": "u100l7", "name": "Koron", "description": "Koron is a minimized version of Hololive VTuber 戌神ころね (Inugami Korone)", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Inugami_Korone"], "subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holotards"]}, "path": {"9-43": [[251, 715], [251, 725], [264, 725], [264, 715]], "44-166, T:0-1": [[248, 715], [248, 721], [251, 725], [257, 725], [260, 721], [260, 715]]}, "center": {"9-43": [258, 720], "44-166, T:0-1": [254, 720]}},
+{"id": "u10mkl", "name": "Kageyama Shien", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/kageyama-shien"], "subreddit": ["holostars", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1395, 919], [1394, 920], [1394, 923], [1395, 924], [1395, 926], [1401, 926], [1401, 924], [1402, 923], [1402, 919]]}, "center": {"56-166, T:0-1": [1398, 922]}},
+{"id": "u10ljm", "name": "Astel Leda", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/astel-leda"], "subreddit": ["holostars", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1395, 910], [1393, 912], [1393, 916], [1396, 919], [1400, 919], [1403, 916], [1403, 912], [1401, 910]]}, "center": {"56-166, T:0-1": [1398, 914]}},
+{"id": "u10kzi", "name": "Hanasaki Miyabi", "description": "A Holostars VTuber.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hanasaki-miyabi"], "subreddit": ["holostars", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1395, 902], [1393, 904], [1393, 911], [1403, 911], [1403, 904], [1401, 902]]}, "center": {"56-166, T:0-1": [1398, 907]}},
+{"id": "u100l7", "name": "Koron", "description": "Koron is a minimized version of Hololive VTuber 戌神ころね (Inugami Korone)", "links": {"website": ["https://virtualyoutuber.fandom.com/wiki/Inugami_Korone"], "subreddit": ["okbuddyhololive", "Hololive"], "discord": ["holofans", "holotards"]}, "path": {"9-43": [[251, 715], [251, 725], [264, 725], [264, 715]], "44-166, T:0-1": [[248, 715], [248, 721], [251, 725], [257, 725], [260, 721], [260, 715]]}, "center": {"9-43": [258, 720], "44-166, T:0-1": [254, 720]}},
{"id": "u0zsl2", "name": "Tacos", "description": "Tacos are well-known Mexican food.\n\nThis art was nuked by Polish streamers. Although the flag was recovered, this pixel art never was built again due to major interest in the new Mexican flag of the second canvas expansion.", "links": {"website": ["https://en.wikipedia.org/wiki/Taco"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"81-87, T:0-1": [[969, 207], [963, 213], [963, 214], [962, 215], [962, 220], [963, 221], [963, 222], [965, 224], [967, 224], [968, 225], [970, 225], [971, 224], [972, 224], [972, 226], [975, 229], [976, 229], [977, 230], [979, 230], [982, 228], [984, 228], [991, 224], [992, 224], [993, 222], [994, 219], [995, 217], [998, 214], [1002, 214], [1002, 213], [999, 210], [998, 210], [996, 208], [994, 208], [993, 207], [991, 207], [991, 206], [987, 204], [986, 204], [985, 203], [977, 203], [976, 204], [974, 204]]}, "center": {"81-87, T:0-1": [981, 215]}},
{"id": "u0zlmh", "name": "Hanako Ikezawa", "description": "One of the main characters in Katawa Shoujo.", "links": {"website": ["https://katawashoujo.fandom.com/wiki/Hanako_Ikezawa"], "subreddit": ["katawashoujo"]}, "path": {"109-165, T:0-1": [[1589, 1172], [1587, 1174], [1587, 1175], [1586, 1176], [1586, 1183], [1588, 1185], [1596, 1185], [1597, 1184], [1599, 1184], [1599, 1174], [1597, 1172]]}, "center": {"109-165, T:0-1": [1593, 1179]}},
{"id": "u0zksr", "name": "Bee", "description": "Designed by u/beeplace.", "links": {"website": ["https://www.reddit.com/user/beeplace"], "subreddit": ["757575"]}, "path": {"53-77": [[755, 561], [755, 570], [763, 570], [763, 561]], "45-52": [[758, 561], [756, 563], [756, 565], [758, 567], [760, 565], [760, 563]], "23-36": [[755, 552], [755, 560], [761, 560], [761, 552]], "78-165, T:0-1": [[755, 559], [763, 559], [763, 569], [755, 569]]}, "center": {"53-77": [759, 566], "45-52": [758, 564], "23-36": [758, 556], "78-165, T:0-1": [759, 564]}},
@@ -6522,7 +6498,7 @@
{"id": "u0xx82", "name": "MiniKirb", "description": "MiniKirb is a drawing of the character Kirby from the Kirby games, except with a top hat. It was originally made by Xyloba and was adopted by Team Burgy soon after creation.", "links": {"website": ["https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["Burgy"]}, "path": {"58-167, T:0-1": [[1920, 335], [1920, 337], [1919, 337], [1919, 340], [1918, 340], [1918, 342], [1919, 342], [1919, 344], [1925, 344], [1925, 342], [1926, 342], [1926, 340], [1925, 340], [1925, 337], [1924, 337], [1924, 335]]}, "center": {"58-167, T:0-1": [1922, 340]}},
{"id": "u0xwma", "name": "Burgy", "description": "Burgy is a fusion of a burger and the character Kirby from the Kirby games. It was originally fan art made by James Turner, adapted by the Celeste speedrunning community and derived into many sub-fan-arts.", "links": {"website": ["https://en.wikipedia.org/wiki/Kirby_(character)"], "subreddit": ["Burgy"]}, "path": {"56-61": [[1927, 334], [1924, 338], [1924, 341], [1925, 341], [1925, 344], [1931, 344], [1931, 341], [1932, 341], [1932, 338], [1929, 334]], "74-78": [[1919, 328], [1919, 334], [1928, 334], [1926, 336], [1925, 338], [1925, 340], [1926, 340], [1926, 342], [1928, 344], [1932, 344], [1934, 342], [1935, 338], [1932, 334], [1940, 334], [1940, 328]], "62-73, 79-167, T:0-1": [[1928, 334], [1926, 336], [1926, 337], [1925, 337], [1925, 340], [1926, 340], [1926, 343], [1927, 343], [1927, 344], [1932, 344], [1932, 343], [1934, 341], [1934, 340], [1935, 340], [1935, 337], [1934, 337], [1934, 336], [1932, 334]]}, "center": {"56-61": [1928, 339], "74-78": [1930, 339], "62-73, 79-167, T:0-1": [1930, 339]}},
{"id": "u0x7ao", "name": "Bomberman", "description": "The character \"Bomberman\" from the video game series of the same name. It was originally developed by Hudson Soft.", "links": {"subreddit": ["bomberman"]}, "path": {"109-166, T:0-1": [[564, 1801], [550, 1801], [550, 1796], [549, 1794], [551, 1792], [551, 1781], [554, 1781], [556, 1779], [557, 1779], [559, 1780], [560, 1781], [563, 1781], [563, 1792], [564, 1793], [565, 1795], [563, 1797]]}, "center": {"109-166, T:0-1": [557, 1791]}},
-{"id": "u0wyvt", "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", "Republica_Argentina", "dankargentina"]}, "path": {"45-56": [[914, 680], [914, 683], [911, 683], [905, 687], [905, 688], [922, 688], [922, 684], [938, 684], [938, 704], [944, 704], [944, 702], [950, 702], [950, 680]], "37-44": [[914, 680], [914, 683], [911, 683], [905, 687], [905, 688], [924, 688], [924, 684], [938, 684], [938, 696], [944, 696], [944, 680]], "24-36": [[914, 680], [914, 683], [910, 683], [908, 685], [908, 688], [914, 688], [914, 692], [921, 692], [921, 688], [923, 688], [925, 686], [934, 686], [936, 688], [938, 688], [938, 699], [939, 702], [950, 702], [951, 703], [953, 701], [950, 698], [950, 680]], "89-96": [[1887, 643], [1887, 653], [1891, 653], [1891, 643]], "1-15": [[0, 798], [0, 817], [58, 817], [58, 798]], "162-166, T:0-1": [[449, 1661], [449, 1666], [456, 1666], [456, 1661]]}, "center": {"45-56": [944, 689], "37-44": [920, 684], "24-36": [944, 687], "89-96": [1889, 648], "1-15": [29, 808], "162-166, T:0-1": [453, 1664]}},
+{"id": "u0wyvt", "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", "Republica_Argentina"]}, "path": {"45-56": [[914, 680], [914, 683], [911, 683], [905, 687], [905, 688], [922, 688], [922, 684], [938, 684], [938, 704], [944, 704], [944, 702], [950, 702], [950, 680]], "37-44": [[914, 680], [914, 683], [911, 683], [905, 687], [905, 688], [924, 688], [924, 684], [938, 684], [938, 696], [944, 696], [944, 680]], "24-36": [[914, 680], [914, 683], [910, 683], [908, 685], [908, 688], [914, 688], [914, 692], [921, 692], [921, 688], [923, 688], [925, 686], [934, 686], [936, 688], [938, 688], [938, 699], [939, 702], [950, 702], [951, 703], [953, 701], [950, 698], [950, 680]], "89-96": [[1887, 643], [1887, 653], [1891, 653], [1891, 643]], "1-15": [[0, 798], [0, 817], [58, 817], [58, 798]], "162-166, T:0-1": [[449, 1661], [449, 1666], [456, 1666], [456, 1661]]}, "center": {"45-56": [944, 689], "37-44": [920, 684], "24-36": [944, 687], "89-96": [1889, 648], "1-15": [29, 808], "162-166, T:0-1": [453, 1664]}},
{"id": "u0wh01", "name": "Cherish Ball", "description": "A pure red Poké Ball with an indents around the center. It's only used for event Pokémon, special Pokémon received from limited-time giveaways or other unique means.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Cherish_Ball"], "subreddit": ["pokemon"]}, "path": {"136-165, 58-132, T:0-1": [[1049, 711], [1049, 705], [1050, 705], [1050, 704], [1051, 703], [1052, 703], [1053, 702], [1057, 702], [1058, 703], [1059, 703], [1060, 704], [1060, 705], [1061, 705], [1061, 711], [1060, 711], [1060, 712], [1059, 713], [1058, 713], [1057, 714], [1053, 714], [1052, 713], [1051, 713], [1050, 712], [1050, 711]]}, "center": {"136-165, 58-132, T:0-1": [1055, 708]}},
{"id": "u0wf5i", "name": "Dream Ball", "description": "A pink and purple Poké Ball with a wave-like pattern. In the Generation 5 Pokémon games (Pokémon Black/White), it was used to catch Pokémon encountered in the Dream World, which could have Hidden Abilities. In Generation 8 (Pokémon Sword/Shield), they were given a use for normal catching, being skilled at catching sleeping Pokémon.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Dream_Ball"], "subreddit": ["pokemon"]}, "path": {"56-164, T:0-1": [[1037, 711], [1037, 705], [1038, 704], [1039, 703], [1040, 703], [1041, 702], [1045, 702], [1046, 703], [1047, 703], [1048, 704], [1048, 705], [1049, 705], [1049, 711], [1048, 711], [1048, 712], [1047, 713], [1046, 713], [1045, 714], [1041, 714], [1040, 713], [1039, 713], [1038, 712], [1038, 711]]}, "center": {"56-164, T:0-1": [1043, 708]}},
{"id": "u0vm1i", "name": "Beast Ball", "description": "A Poké Ball designed to catch Ultra Beasts, a group of extradimensional Pokémon introduced in Pokémon's 7th generation (Pokémon Sun/Moon). While normal Poké Balls struggle to catch Ultra Beasts, the Beast Ball is the opposite, effective at catching Ultra Beasts while struggling to catch any other Pokémon.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Beast_Ball"], "subreddit": ["pokemon"]}, "path": {"56-164, T:0-1": [[1027, 714], [1027, 713], [1026, 713], [1026, 711], [1025, 711], [1025, 705], [1026, 705], [1026, 704], [1027, 703], [1028, 703], [1029, 702], [1033, 702], [1034, 703], [1035, 703], [1036, 704], [1036, 705], [1037, 705], [1037, 711], [1036, 711], [1036, 712], [1035, 713], [1034, 714]]}, "center": {"56-164, T:0-1": [1031, 708]}},
@@ -6566,9 +6542,9 @@
{"id": "u0o9vu", "name": "Asterix", "description": "Asterix (French: Astérix) is the titular character from the bande dessinée comic book series Asterix, written by René Goscinny and illustrated by Albert Uderzo. The comics are about a village of indominatable Gaulish warriors during the era of Julius Caesar, who adventure around the world and fight the Roman Republic with the aid of a magic potion.\n\nAsterix was supposed to be featured in the 2017 edition of r/place, but it was started too late and only a few lines have been drawn. It was one of the first arts to be completed in the canvas, less than 90 minutes after its start since plans were already drawn 5 years prior. It occupied the exact same spot it was supposed to be in 2017 if it was completed. Despite numerous attacks from streamers and a tentative by Ludwig to move it to the large bottom-left French flag, it remained in place until the final whiteout.", "links": {"website": ["https://en.wikipedia.org/wiki/Asterix_(character)"], "subreddit": ["asterix", "placefrance", "franceplace", "placeFR", "france"]}, "path": {"2-165, T:0-1": [[386, 764], [386, 766], [395, 774], [395, 781], [398, 784], [400, 784], [400, 788], [403, 791], [410, 791], [413, 788], [413, 787], [419, 783], [419, 780], [417, 778], [414, 778], [414, 775], [415, 774], [415, 768], [406, 760], [404, 760], [403, 759], [398, 759], [397, 761], [401, 764], [399, 766], [397, 766], [393, 764]]}, "center": {"2-165, T:0-1": [404, 775]}},
{"id": "u0o6yg", "name": "ElMariana ZAZAZA", "description": "Mexican streamer known as el mariana, This guy is very funny, we love you osvaldo. EMOBOSCADAAA EMBOSCADAA!! ^3^", "links": {"website": ["https://www.twitch.tv/elmariana"]}, "path": {"109-165, T:0-1": [[1440, 1706], [1439, 1755], [1490, 1755], [1489, 1707]]}, "center": {"109-165, T:0-1": [1464, 1731]}},
{"id": "u0o2uy", "name": "Aldogeo", "description": "Mexican Twitch streamer. Very loved by his community for being very funny. <3", "links": {"website": ["https://www.twitch.tv/aldo_geo"], "subreddit": ["Pendegeos"]}, "path": {"109-165, T:0-1": [[1491, 1709], [1491, 1738], [1526, 1738], [1525, 1709], [1510, 1709]]}, "center": {"109-165, T:0-1": [1508, 1724]}},
-{"id": "u0nx4x", "name": "Argentina-Blebs heart", "description": "A heart with the colors of Blebs and the flag of Argentina.", "links": {"subreddit": ["argentina", "ArgPixelArt", "Republica_Argentina", "dankargentina", "hrry"]}, "path": {"109-166, T:0-1": [[1552, 1815], [1550, 1817], [1550, 1819], [1554, 1823], [1558, 1819], [1558, 1817], [1556, 1815]]}, "center": {"109-166, T:0-1": [1554, 1818]}},
+{"id": "u0nx4x", "name": "Argentina-Blebs heart", "description": "A heart with the colors of Blebs and the flag of Argentina.", "links": {"subreddit": ["argentina", "ArgPixelArt", "Republica_Argentina", "hrry"]}, "path": {"109-166, T:0-1": [[1552, 1815], [1550, 1817], [1550, 1819], [1554, 1823], [1558, 1819], [1558, 1817], [1556, 1815]]}, "center": {"109-166, T:0-1": [1554, 1818]}},
{"id": "u0nvr4", "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"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"72-117": [[952, 360], [952, 367], [960, 367], [960, 360]], "122-165, T:0-1": [[1538, 1820], [1534, 1823], [1534, 1827], [1535, 1831], [1519, 1831], [1513, 1838], [1515, 1840], [1518, 1838], [1526, 1839], [1530, 1847], [1531, 1893], [1532, 1894], [1532, 1911], [1552, 1910], [1552, 1907], [1547, 1904], [1550, 1879], [1550, 1867], [1553, 1870], [1556, 1870], [1558, 1868], [1558, 1852], [1554, 1841], [1547, 1834], [1547, 1833], [1541, 1831], [1544, 1828], [1544, 1823], [1540, 1820]]}, "center": {"72-117": [956, 364], "122-165, T:0-1": [1544, 1854]}},
-{"id": "u0nu1q", "name": "Lionel Messi", "description": "Argentine football (soccer) player, often considered one of the greatest football players of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["argentina", "ArgPixelArt", "Republica_Argentina", "dankargentina"]}, "path": {"109-165, T:0-1": [[1520, 1827], [1513, 1838], [1512, 1838], [1505, 1846], [1503, 1852], [1503, 1861], [1509, 1867], [1509, 1878], [1513, 1912], [1530, 1911], [1530, 1905], [1530, 1900], [1531, 1899], [1531, 1844], [1527, 1839], [1531, 1831], [1531, 1828], [1528, 1826]]}, "center": {"109-165, T:0-1": [1520, 1869]}},
+{"id": "u0nu1q", "name": "Lionel Messi", "description": "Argentine football (soccer) player, often considered one of the greatest football players of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Lionel_Messi"], "subreddit": ["argentina", "ArgPixelArt", "Republica_Argentina"]}, "path": {"109-165, T:0-1": [[1520, 1827], [1513, 1838], [1512, 1838], [1505, 1846], [1503, 1852], [1503, 1861], [1509, 1867], [1509, 1878], [1513, 1912], [1530, 1911], [1530, 1905], [1530, 1900], [1531, 1899], [1531, 1844], [1527, 1839], [1531, 1831], [1531, 1828], [1528, 1826]]}, "center": {"109-165, T:0-1": [1520, 1869]}},
{"id": "u1i035", "name": "Camba", "description": "Eastern bolivian populations of mixed spanish, chané, and other indigenous amazonians descent, born in the eastern lowlands of the country.", "links": {"website": ["https://en.wikipedia.org/wiki/Camba"], "subreddit": ["BOLIVIA"]}, "path": {"109-165, T:0-1": [[1593, 1233], [1580, 1233], [1580, 1228], [1579, 1228], [1579, 1224], [1580, 1224], [1580, 1222], [1583, 1227], [1581, 1222], [1581, 1221], [1580, 1221], [1580, 1220], [1579, 1220], [1579, 1215], [1576, 1215], [1576, 1214], [1575, 1214], [1575, 1211], [1576, 1211], [1576, 1209], [1581, 1209], [1581, 1207], [1582, 1207], [1582, 1206], [1583, 1206], [1583, 1205], [1592, 1205], [1592, 1206], [1593, 1206], [1593, 1208], [1594, 1208], [1594, 1209], [1597, 1209], [1597, 1210], [1599, 1210], [1599, 1214], [1596, 1214], [1596, 1215], [1594, 1215], [1594, 1217], [1593, 1217], [1593, 1220], [1592, 1220], [1592, 1221], [1594, 1221], [1594, 1223], [1595, 1223], [1595, 1228], [1593, 1228], [1593, 1229], [1594, 1229], [1594, 1233]]}, "center": {"109-165, T:0-1": [1587, 1219]}},
{"id": "u1huft", "name": "Chile", "description": "The country of Chile as it appears on a map.\n\nAfter the fall of the first American flag, Chile took advantage of the extra territory to portray its long and narrow geographical shape.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile"], "subreddit": ["chile"]}, "path": {"114-165, T:0-1": [[285, 514], [289, 514], [292, 517], [302, 517], [304, 518], [324, 518], [325, 519], [347, 519], [352, 522], [366, 521], [374, 522], [376, 523], [380, 521], [384, 521], [388, 523], [401, 523], [413, 521], [416, 519], [418, 512], [419, 507], [420, 505], [417, 500], [414, 502], [410, 502], [409, 504], [406, 505], [406, 508], [403, 509], [403, 511], [400, 511], [396, 510], [393, 508], [391, 513], [382, 512], [374, 513], [371, 509], [369, 511], [358, 512], [351, 511], [348, 512], [331, 512], [321, 511], [315, 510], [309, 508], [304, 506], [300, 507], [299, 508], [295, 510], [287, 511]]}, "center": {"114-165, T:0-1": [410, 514]}},
{"id": "u1hkm0", "name": "Dive Ball", "description": "A Poké Ball with multiple shades of blue, sporting wave patterns. When it was introduced in the Generation 3 Pokémon games (Pokémon Ruby/Sapphire), it increased odds of catching Pokémon found while diving. As diving was not present in all future games, it was expanded to also have increased odds at catching Pokémon found while surfing or fishing.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Dive_Ball"], "subreddit": ["pokemon"]}, "path": {"96-165, T:0-1": [[1073, 711], [1073, 705], [1074, 705], [1074, 704], [1075, 703], [1076, 703], [1077, 702], [1081, 702], [1082, 703], [1083, 703], [1084, 704], [1084, 705], [1085, 705], [1085, 711], [1084, 711], [1084, 712], [1083, 713], [1082, 713], [1081, 714], [1077, 714], [1076, 713], [1075, 713], [1074, 712], [1074, 711]]}, "center": {"96-165, T:0-1": [1079, 708]}},
@@ -6577,7 +6553,7 @@
{"id": "u1eptq", "name": "Buddy - Goes", "description": "Emote del canal de Goes, hecho por su comunidad con apoyo de los tanilovers. Está encima de la bandera iraní luego de un acuerdo con un streamer para tener ambos un espacio.", "links": {"website": ["https://www.twitch.tv/goes_x"], "subreddit": ["Goes_x"]}, "path": {"109-166, T:0-1": [[1724, 1190], [1757, 1190], [1758, 1219], [1725, 1219]]}, "center": {"109-166, T:0-1": [1741, 1205]}},
{"id": "u1dxtp", "name": "Shrekspeare", "description": "ES:\n\nUn servidor hispano de Discord liderado por un neet con planes de debutar en un futuro lejano como vtuber, por alguna razón los astros se alinearon y dejaron de ser huevones por 2 días seguidos, días que usaron para hacer a la cosa morada llamada Shrekspeare, También conocida como renacuajo por algunos miembros, fue construida por 7 pendejos aparte del líder, estos fueron representados por los colores alrededor del renacuajo.\n\nEN:\n\nA spanish Discord server led by a neet with plans to debut as a vtuber in a far far away future, for some reason the stars aligned and they stopped being fucking lazy retarded for two consecutive days, days that were use to make the purple thing called Shrekspeare, also known as renacuajo by some members, it was build by 7 assholes and the leader, The members are represented by the colors surrounding renacuajo", "links": {"discord": ["HCQDFUYXvY"]}, "path": {"109-166, T:0-1": [[1349, 1265], [1332, 1265], [1332, 1253], [1349, 1253]]}, "center": {"109-166, T:0-1": [1341, 1259]}},
{"id": "u1cstp", "name": "Battle For PenIsland", "description": "Characters in Battle For PenIsland, a joke object show.", "links": {"website": ["https://www.youtube.com/channel/UCzm8XTb7FraEeXApuf0CLtA"], "subreddit": ["ObjectShows"]}, "path": {"109-166, T:0-1": [[871, 1743], [877, 1743], [877, 1755], [871, 1755], [871, 1759], [867, 1759], [867, 1756], [868, 1756], [868, 1755], [868, 1754], [867, 1754], [867, 1753], [868, 1753], [868, 1745], [871, 1745], [871, 1744]]}, "center": {"109-166, T:0-1": [872, 1750]}},
-{"id": "u1c1d4", "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.\n\nThe total area of both Belgian flags is approximately 66,000 pixels, which makes Belgium the country with the third biggest combined flag area.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"74-108": [[1282, 773], [1282, 927], [1286, 927], [1286, 999], [1332, 999], [1332, 773]], "56-73": [[1282, 773], [1282, 927], [1286, 927], [1286, 999], [1332, 999], [1332, 773], [1329, 773], [1329, 700], [1332, 700], [1332, 697], [1287, 697], [1287, 700], [1329, 700], [1329, 773]], "109-166, T:0-1": [[1282, 773], [1281, 916], [1285, 916], [1286, 1817], [1291, 1817], [1291, 1820], [1332, 1820], [1332, 773]]}, "center": {"74-108": [1307, 886], "56-73": [1307, 872], "109-166, T:0-1": [1307, 901]}},
+{"id": "u1c1d4", "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.\n\nThe total area of both Belgian flags is approximately 66,000 pixels, which makes Belgium the country with the third biggest combined flag area.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"74-108": [[1282, 773], [1282, 927], [1286, 927], [1286, 999], [1332, 999], [1332, 773]], "55-73": [[1282, 773], [1282, 927], [1286, 927], [1286, 999], [1332, 999], [1332, 773], [1329, 773], [1329, 700], [1332, 700], [1332, 697], [1287, 697], [1287, 700], [1329, 700], [1329, 773]], "109-166, T:0-1": [[1282, 773], [1281, 916], [1285, 916], [1286, 1817], [1291, 1817], [1291, 1820], [1332, 1820], [1332, 773]]}, "center": {"74-108": [1307, 886], "55-73": [1307, 872], "109-166, T:0-1": [1307, 901]}},
{"id": "u1aovf", "name": "Luigi", "description": "Luigi is an Italian plumber and brother of Mario in Nintendo's Mario franchise. This sprite of Luigi comes from the game Mario & Luigi: Superstar Saga, seen if one fails the Chopper Bros. attack, which makes Mario accidentally flatten Luigi's face with a hammer.\n\nMario & Luigi is a series of role-playing video games following the wacky adventures of the brothers through time, dreams, and even their nemesis Bowser. This art was made to honor the Mario & Luigi series as a whole and its development team AlphaDream, who sadly went bankrupt in 2019.\n\nThe first light green pixels from Luigi's hat were originally placed by the mods of r/bubatz, a German subreddit about cannabis (\"bubatz\" is a German slang term for \"joint\"), in an attempt to write their subreddit name in light green. Due to the large amount of other people placing pixels without knowing what was originally planned, the hive mind created a Luigi head which survived until the end. At some point, r/bubatz attempted to place a joint in Luigi's mouth, but it was erased.", "links": {"website": ["https://en.wikipedia.org/wiki/Luigi", "https://en.wikipedia.org/wiki/Mario_%26_Luigi:_Superstar_Saga", "https://www.mariowiki.com/Luigi"], "subreddit": ["bubatz", "marioandluigi"]}, "path": {"59-64": [[1500, 58], [1496, 61], [1496, 63], [1493, 66], [1493, 68], [1496, 71], [1496, 72], [1504, 78], [1506, 78], [1508, 76], [1508, 69], [1507, 69], [1504, 60], [1502, 58]], "65-167, T:0-1": [[1504, 72], [1503, 72], [1503, 71], [1502, 71], [1501, 71], [1501, 70], [1500, 70], [1499, 69], [1498, 68], [1497, 68], [1497, 67], [1496, 66], [1496, 65], [1495, 64], [1494, 63], [1493, 63], [1493, 62], [1493, 61], [1493, 60], [1494, 59], [1495, 58], [1496, 57], [1496, 56], [1496, 55], [1497, 54], [1498, 53], [1499, 53], [1500, 52], [1501, 52], [1502, 52], [1503, 53], [1504, 54], [1505, 55], [1505, 56], [1506, 57], [1506, 58], [1506, 59], [1507, 60], [1507, 61], [1507, 62], [1507, 63], [1508, 63], [1508, 64], [1508, 71], [1507, 71], [1506, 72], [1505, 72], [1503, 72], [1503, 71]]}, "center": {"59-64": [1500, 67], "65-167, T:0-1": [1501, 62]}},
{"id": "u1ajro", "name": "Anthoine Hubert", "description": "Anthoine Hubert (car #19) is a Formula 1 racer who died in a crash during the Saturday race of the 2019 Spa-Francorchamps Formula 2 feature race, part of the Belgian Grand Prix.", "links": {"website": ["https://en.wikipedia.org/wiki/Anthoine_Hubert"], "subreddit": ["formula1"]}, "path": {"68-164, T:0-1": [[1392, 759], [1419, 759], [1419, 751], [1392, 751]]}, "center": {"68-164, T:0-1": [1406, 755]}},
{"id": "u1aibg", "name": "Jules Bianchi", "description": "Jules Bianchi (car #17) is a Formula 1 driver who died in 2015 due to injuries from a crash during the 2014 Japanese Grand Prix.", "links": {"website": ["https://en.wikipedia.org/wiki/Jules_Bianchi"], "subreddit": ["formula1"]}, "path": {"67-164, T:0-1": [[1392, 765], [1419, 765], [1419, 757], [1392, 757]]}, "center": {"67-164, T:0-1": [1406, 761]}},
@@ -6629,8 +6605,8 @@
{"id": "u2buo2", "name": "Bob Lennon", "description": "French Minecraft YouTuber, part of Fanta & Bob.", "links": {"website": ["https://www.youtube.com/c/fantabobshow/videos"]}, "path": {"147-166, T:0-1": [[6, 1104], [6, 1113], [15, 1113], [15, 1104]]}, "center": {"147-166, T:0-1": [11, 1109]}},
{"id": "u2bu9k", "name": "IKA", "description": "Ika, meaning Squid, is a friend group who made a mural just to see how long it would last. They worked alongside FICSIT above, CTU to the right, and The Meat Men below. The group has stated they will be playing Minecraft next time place comes around instead of participating\n\nThey created a webpage in memory of their work", "links": {"website": ["https://frisout.neocities.org/place/place.html"]}, "path": {"109-166, T:0-1": [[426, 1840], [442, 1840], [442, 1850], [426, 1850]]}, "center": {"109-166, T:0-1": [434, 1845]}},
{"id": "u2bu60", "name": "TheFantasio974", "description": "French Minecraft YouTuber, part of Fanta & Bob.", "links": {"website": ["https://www.youtube.com/c/fantabobshow/videos"]}, "path": {"144-166, T:0-1": [[6, 1096], [6, 1105], [15, 1105], [15, 1096]]}, "center": {"144-166, T:0-1": [11, 1101]}},
-{"id": "u2bdk8", "name": "Diamond sword", "description": "A diamond sword is one of the strongest swords in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"], "subreddit": ["Minecraft"]}, "path": {"76-84": [[1156, 856], [1156, 858], [1158, 861], [1156, 863], [1154, 863], [1154, 867], [1158, 867], [1158, 865], [1160, 863], [1163, 865], [1165, 865], [1165, 863], [1163, 861], [1201, 823], [1201, 821], [1190, 810], [1200, 800], [1200, 796], [1189, 785], [1201, 773], [1201, 770], [1195, 764], [1194, 765], [1194, 766], [1197, 771], [1184, 784], [1184, 786], [1196, 798], [1185, 809], [1185, 811], [1196, 822], [1161, 857], [1159, 857], [1158, 856]], "45-54": [[49, 962], [47, 964], [47, 969], [49, 969], [49, 974], [40, 982], [40, 988], [46, 988], [56, 979], [61, 981], [66, 981], [66, 973], [63, 973], [161, 874], [161, 873], [152, 873], [56, 966], [52, 962]], "156-166, T:0-1": [[70, 1060], [73, 1060], [77, 1064], [79, 1064], [79, 1069], [74, 1069], [74, 1067], [70, 1063]]}, "center": {"76-84": [1161, 860], "45-54": [56, 973], "156-166, T:0-1": [76, 1066]}},
-{"id": "u2b99z", "name": "Among Us crewmates", "description": "", "links": {"website": ["https://www.innersloth.com/games/among-us/"]}, "path": {"109-166, T:0-1": [[1049, 1961], [1049, 1966], [1099, 1966], [1099, 1961], [1096, 1961], [1094, 1963], [1094, 1966], [1054, 1966], [1054, 1963], [1052, 1961]]}, "center": {"109-166, T:0-1": [1074, 1964]}},
+{"id": "u2bdk8", "name": "Diamond sword", "description": "A diamond sword is one of the strongest swords in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Sword"], "subreddit": ["Minecraft"]}, "path": {"76-84": [[1156, 856], [1156, 858], [1158, 861], [1156, 863], [1154, 863], [1154, 867], [1158, 867], [1158, 865], [1160, 863], [1163, 865], [1165, 865], [1165, 863], [1163, 861], [1201, 823], [1201, 821], [1190, 810], [1200, 800], [1200, 796], [1189, 785], [1201, 773], [1201, 770], [1195, 764], [1194, 765], [1194, 766], [1197, 771], [1184, 784], [1184, 786], [1196, 798], [1185, 809], [1185, 811], [1196, 822], [1161, 857], [1159, 857], [1158, 856]], "45-54": [[49, 962], [47, 964], [47, 969], [49, 969], [49, 974], [40, 982], [40, 988], [46, 988], [56, 979], [61, 981], [66, 981], [66, 973], [63, 973], [161, 874], [161, 873], [152, 873], [56, 966], [52, 962]], "57-63": [[1271, 890], [1271, 892], [1273, 895], [1271, 897], [1271, 899], [1274, 899], [1274, 897], [1275, 897], [1278, 899], [1280, 899], [1280, 896], [1279, 896], [1278, 895], [1280, 893], [1280, 892], [1278, 890], [1277, 890], [1275, 892], [1273, 890]], "156-166, T:0-1": [[70, 1060], [73, 1060], [77, 1064], [79, 1064], [79, 1069], [74, 1069], [74, 1067], [70, 1063]]}, "center": {"76-84": [1161, 860], "45-54": [56, 973], "57-63": [1276, 895], "156-166, T:0-1": [76, 1066]}},
+{"id": "u2b99z", "name": "Among Us crewmates", "description": "Characters from the social deduction game Among Us.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"56-68": [[1605, 869], [1605, 878], [1606, 878], [1606, 898], [1666, 898], [1666, 909], [1704, 909], [1704, 904], [1711, 904], [1752, 904], [1752, 899], [1772, 899], [1772, 893], [1773, 893], [1777, 889], [1828, 889], [1828, 878], [1709, 878], [1709, 869]]}, "center": {"56-68": [1692, 889]}},
{"id": "u2b627", "name": "Hexasan/Daybloom", "description": "The icon of Reddit user Hexasan (u/Hexasan1). Later changed by r/botania to also resemble a daybloom, one of the earliest useful items available in the Minecraft mod Botania.", "links": {"website": ["https://ftb.fandom.com/wiki/Daybloom", "https://www.reddit.com/user/Hexasan"], "subreddit": ["botania"]}, "path": {"49-165, T:0-1": [[179, 325], [177, 327], [180, 330], [183, 327], [181, 325]]}, "center": {"49-165, T:0-1": [180, 327]}},
{"id": "u2axzg", "name": "Spurr", "description": "Spurr is a popular user and character on Freddit Freebuild, a server for the game Minecraft that is based on the game Five Nights at Freddy's. This is the Minecraft head of Spurr, with the appearance of mint chocolate chip ice cream.", "links": {"subreddit": ["Freebuild"]}, "path": {"146-152": [[1439, 155], [1439, 161], [1445, 161], [1445, 155]], "102-145": [[1439, 155], [1439, 160], [1438, 160], [1438, 164], [1439, 164], [1439, 166], [1445, 166], [1445, 164], [1446, 164], [1446, 160], [1445, 160], [1445, 155]], "100-101": [[1434, 161], [1434, 168], [1440, 168], [1440, 161]], "153-166, T:0-1": [[1440, 155], [1440, 161], [1446, 161], [1446, 155]]}, "center": {"146-152": [1442, 158], "102-145": [1442, 162], "100-101": [1437, 165], "153-166, T:0-1": [1443, 158]}},
{"id": "u2axil", "name": "Nham", "description": "Nham is a popular user and character on Freddit Freebuild, a server for the game Minecraft that is based on the game Five Nights at Freddy's. This art shows the Minecraft head of Nham, with the appearance of a white cake.", "links": {"subreddit": ["Freebuild"]}, "path": {"59-146": [[1427, 155], [1427, 160], [1426, 160], [1426, 164], [1427, 164], [1427, 166], [1433, 166], [1433, 164], [1434, 164], [1434, 160], [1433, 160], [1433, 155]], "147-166, T:0-1": [[1427, 155], [1427, 161], [1433, 161], [1433, 155]]}, "center": {"59-146": [1430, 162], "147-166, T:0-1": [1430, 158]}},
@@ -6716,11 +6692,11 @@
{"id": "u1ljm9", "name": "Bee", "description": "Bees are neutral mobs in the game Minecraft. They pollinate plants and maintain hives that the player can harvest honey from.\n\nThis bee was a small collaboration with the r/Minecraft community. It was originally among the sunflowers above the r/placeukraine logo, but was moved to this new home when the sunflowers were replaced with vyshyvka.", "links": {"website": ["https://minecraft.fandom.com/wiki/Bee"], "subreddit": ["Minecraft"]}, "path": {"112-118": [[68, 177], [68, 179], [70, 179], [70, 184], [72, 186], [93, 186], [93, 184], [94, 183], [94, 181], [92, 179], [78, 179], [78, 176], [72, 176], [72, 177]], "67-111": [[72, 176], [72, 178], [69, 178], [69, 179], [70, 180], [70, 185], [73, 185], [73, 186], [79, 186], [79, 185], [81, 185], [81, 183], [82, 182], [81, 181], [81, 180], [80, 179], [80, 176]], "120-165, T:0-1": [[366, 190], [366, 185], [370, 185], [373, 182], [374, 185], [380, 185], [380, 191], [366, 191]]}, "center": {"112-118": [75, 181], "67-111": [76, 181], "120-165, T:0-1": [372, 188]}},
{"id": "u1l8dx", "name": "TAP", "description": "Five Youtubers who made a group channel together.", "links": {"website": ["https://www.youtube.com/channel/UCBSRaCVMx-XFa_tZTkCEYSA"], "subreddit": ["TAPStudios"]}, "path": {"109-166, T:0-1": [[992, 1762], [1004, 1762], [1004, 1768], [992, 1768]]}, "center": {"109-166, T:0-1": [998, 1765]}},
{"id": "u1kqsq", "name": "Bisexual pride flag", "description": "A small bisexual pride flag, after having to relocate from the left side of the lightsabers", "links": {"subreddit": ["bi_irl"]}, "path": {"109-166, T:0-1": [[767, 1626], [772, 1626], [772, 1628], [767, 1628]]}, "center": {"109-166, T:0-1": [770, 1627]}},
-{"id": "u1k5l6", "name": "Hololive-Belgium heart", "description": "A heart depicting the colors of Hololive and the flag of Belgium.", "links": {"subreddit": ["Hololive", "belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-165, T:0-1": [[1329, 1090], [1327, 1092], [1327, 1094], [1328, 1095], [1328, 1096], [1332, 1100], [1336, 1096], [1336, 1095], [1337, 1094], [1337, 1092], [1335, 1090], [1334, 1090], [1333, 1091], [1331, 1091], [1330, 1090]]}, "center": {"109-165, T:0-1": [1332, 1094]}},
+{"id": "u1k5l6", "name": "Hololive-Belgium heart", "description": "A heart depicting the colors of Hololive and the flag of Belgium.", "links": {"subreddit": ["Hololive", "belgium", "Belgium2", "BELGICA", "placeBE"], "discord": ["holofans"]}, "path": {"109-165, T:0-1": [[1329, 1090], [1327, 1092], [1327, 1094], [1328, 1095], [1328, 1096], [1332, 1100], [1336, 1096], [1336, 1095], [1337, 1094], [1337, 1092], [1335, 1090], [1334, 1090], [1333, 1091], [1331, 1091], [1330, 1090]]}, "center": {"109-165, T:0-1": [1332, 1094]}},
{"id": "u1j7kb", "name": "Rat Club", "description": "Rat Club isn't just a club; it's a lifestyle. It's a state of being, a transcendent experience.\n\nJoin Rat Club.\n\nSqueak!", "links": {"website": ["https://www.sampletextstudios.com/"]}, "path": {"80-106": [[1465, 347], [1465, 363], [1486, 363], [1492, 357], [1492, 347], [1490, 347], [1490, 346], [1484, 346], [1484, 347]], "160-166, T:0-1": [[1464, 301], [1462, 303], [1460, 303], [1460, 307], [1457, 310], [1457, 312], [1465, 312], [1469, 307], [1469, 305], [1467, 301]]}, "center": {"80-106": [1482, 355], "160-166, T:0-1": [1464, 306]}},
-{"id": "u1j2if", "name": "Nekko", "description": "A carrot mascot representing the fanbase of Hololive Japan 5th Generation VTuber Momosuzu Nene. Her fanbase is also called Husbands.", "links": {"website": ["https://en.hololive.tv/portfolio/items/momosuzu-nene", "https://www.youtube.com/channel/UCAWSyEs_Io8MtpY3m-zqILA", "https://virtualyoutuber.fandom.com/wiki/Momosuzu_Nene"], "subreddit": ["Hololive"]}, "path": {"46-166, T:0-1": [[255, 794], [252, 797], [252, 798], [251, 799], [252, 800], [252, 802], [254, 804], [257, 804], [257, 796]]}, "center": {"46-166, T:0-1": [255, 799]}},
+{"id": "u1j2if", "name": "Nekko", "description": "A carrot mascot representing the fanbase of Hololive Japan 5th Generation VTuber Momosuzu Nene. Her fanbase is also called Husbands.", "links": {"website": ["https://en.hololive.tv/portfolio/items/momosuzu-nene", "https://www.youtube.com/channel/UCAWSyEs_Io8MtpY3m-zqILA", "https://virtualyoutuber.fandom.com/wiki/Momosuzu_Nene"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"46-166, T:0-1": [[255, 794], [252, 797], [252, 798], [251, 799], [252, 800], [252, 802], [254, 804], [257, 804], [257, 796]]}, "center": {"46-166, T:0-1": [255, 799]}},
{"id": "u1in4u", "name": "Cerro Rico", "description": "A mountain in the Andes near the Bolivian city of Potosí. 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": {"109-166, T:0-1": [[1489, 1212], [1491, 1212], [1511, 1233], [1480, 1233], [1480, 1232], [1493, 1232], [1493, 1229], [1481, 1219]]}, "center": {"109-166, T:0-1": [1495, 1224]}},
-{"id": "u1icud", "name": "Comet", "description": "A comet is a representation of Hoshimachi Suisei, a Japanese VTuber under the 0th generation of Hololive. The comet represents her as 'Suisei' in Japanese means comet.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hoshimachi-suisei"], "subreddit": ["HoshimachiSuisei", "Hololive"]}, "path": {"56-166, T:0-1": [[1341, 903], [1340, 903], [1336, 905], [1333, 908], [1333, 910], [1335, 912], [1337, 912], [1339, 910], [1341, 907], [1343, 907], [1343, 905], [1344, 905], [1346, 903], [1345, 902], [1340, 902]]}, "center": {"56-166, T:0-1": [1339, 907]}},
+{"id": "u1icud", "name": "Comet", "description": "A comet is a representation of Hoshimachi Suisei, a Japanese VTuber under the 0th generation of Hololive. The comet represents her as 'Suisei' in Japanese means comet.", "links": {"website": ["https://en.hololive.tv/portfolio/items/hoshimachi-suisei"], "subreddit": ["HoshimachiSuisei", "Hololive"], "discord": ["holofans"]}, "path": {"56-166, T:0-1": [[1341, 903], [1340, 903], [1336, 905], [1333, 908], [1333, 910], [1335, 912], [1337, 912], [1339, 910], [1341, 907], [1343, 907], [1343, 905], [1344, 905], [1346, 903], [1345, 902], [1340, 902]]}, "center": {"56-166, T:0-1": [1339, 907]}},
{"id": "u2fp8n", "name": "MapINK's logo", "description": "A logo of MapINK, a small collaborative community of Counter-Strike: Global Offensive map makers known for creating and playtesting maps.", "links": {"discord": ["sBaUQYtRTc"]}, "path": {"109-166, T:0-1": [[62, 1254], [62, 1265], [102, 1265], [102, 1253], [75, 1253], [75, 1254]]}, "center": {"109-166, T:0-1": [82, 1259]}},
{"id": "u314dc", "name": "Figura", "description": "A small community based around minecraft modding. Specifically to the Figura Proect, which is dedicated to re-imagining the way avatars in minecraft work, as a way to allow players to more creatively express themselves, allowing player models to go beyond what the default allows. Despite being a small community, it teamed up with and made alliances with places like /r/suncracker, purple hearts, and South Africa in order to maintain a presence. This cooperation is also why a purple heart is present within the logo.", "links": {"subreddit": ["figura"]}, "path": {"1-165, T:0-1": [[739, 954], [739, 945], [775, 945], [775, 955], [739, 955]]}, "center": {"1-165, T:0-1": [757, 950]}},
{"id": "u2ziyc", "name": "John the Apostle", "description": "One of the twelve apostles of Jesus.", "links": {"website": ["https://en.wikipedia.org/wiki/John_the_Apostle"], "subreddit": ["italy"]}, "path": {"109-165, T:0-1": [[957, 1083], [955, 1085], [955, 1093], [958, 1093], [958, 1095], [955, 1095], [955, 1099], [957, 1099], [958, 1100], [958, 1101], [959, 1102], [960, 1104], [961, 1105], [961, 1106], [962, 1107], [962, 1109], [967, 1109], [967, 1110], [972, 1110], [972, 1109], [974, 1109], [975, 1108], [975, 1107], [976, 1106], [974, 1099], [973, 1099], [972, 1098], [972, 1095], [970, 1095], [970, 1093], [968, 1091], [968, 1089], [966, 1089], [962, 1085], [962, 1083]]}, "center": {"109-165, T:0-1": [964, 1097]}},
@@ -6891,7 +6867,7 @@
{"id": "u3ga5g", "name": "nBoi", "description": "nBoi is an admin of PoenaSaga, a server for the game Minecraft. Depicted is the head of his Minecraft skin.", "links": {"subreddit": ["Poenasaga"]}, "path": {"146-165, T:0-1": [[1870, 95], [1870, 102], [1879, 102], [1879, 95]]}, "center": {"146-165, T:0-1": [1875, 99]}},
{"id": "u3g3d6", "name": "Rainbow tentacle", "description": "A spirit tentacle from the horror web novel Katalepsis.", "links": {"website": ["https://katalepsis.net/"]}, "path": {"109-166, T:0-1": [[1735, 1307], [1730, 1307], [1727, 1304], [1727, 1303], [1726, 1302], [1726, 1300], [1725, 1299], [1725, 1296], [1726, 1295], [1726, 1293], [1727, 1292], [1727, 1291], [1728, 1290], [1728, 1288], [1729, 1287], [1729, 1286], [1732, 1283], [1732, 1282], [1734, 1280], [1735, 1280], [1736, 1279], [1736, 1278], [1737, 1277], [1737, 1276], [1739, 1274], [1740, 1275], [1741, 1275], [1742, 1276], [1751, 1276], [1753, 1274], [1755, 1276], [1755, 1277], [1756, 1278], [1757, 1279], [1758, 1278], [1759, 1278], [1759, 1283], [1761, 1285], [1768, 1285], [1770, 1283], [1770, 1276], [1763, 1276], [1763, 1275], [1762, 1274], [1762, 1273], [1764, 1275], [1766, 1275], [1767, 1274], [1768, 1274], [1770, 1272], [1770, 1266], [1772, 1266], [1775, 1269], [1775, 1273], [1772, 1276], [1770, 1276], [1770, 1283], [1768, 1285], [1761, 1285], [1759, 1283], [1759, 1269], [1757, 1269], [1756, 1270], [1755, 1270], [1754, 1271], [1754, 1273], [1751, 1276], [1742, 1276], [1741, 1275], [1740, 1275], [1739, 1274], [1737, 1276], [1737, 1277], [1736, 1278], [1736, 1279], [1735, 1280], [1735, 1285], [1736, 1286], [1737, 1287], [1736, 1288], [1735, 1287], [1733, 1287], [1729, 1291], [1729, 1292], [1730, 1293], [1733, 1293], [1735, 1295], [1735, 1299], [1734, 1300], [1733, 1300], [1733, 1299], [1732, 1298], [1732, 1297], [1731, 1296], [1730, 1297], [1730, 1299], [1731, 1300], [1731, 1301], [1734, 1304]]}, "center": {"109-166, T:0-1": [1738, 1293]}},
{"id": "u3bdkp", "name": "Grandmaster Gryph", "description": "Grandmaster Gryph is a harpy eagle representing the Grandmaster of the April Knights during r/place 2022.\n\nThis art was created by the April Knights Order.", "links": {"website": ["https://www.aprilknights.org"], "subreddit": ["gryph667", "AprilKnights"]}, "path": {"161-165, T:0-1": [[807, 662], [804, 664], [803, 665], [803, 677], [815, 677], [815, 665], [814, 664], [811, 662]]}, "center": {"161-165, T:0-1": [809, 670]}},
-{"id": "u39z7g", "name": "Malazan Imperial sigil", "description": "The sigil of a taloned hand holding a crystal globe. Malazon Book of the Fallen is a series of epic fantasy novels by Steven Erikson.", "links": {"website": ["https://malazan.fandom.com/wiki/Malazan_Imperial_sigil"], "subreddit": ["malazan", "SFFA"]}, "path": {"109-166, T:0-1": [[1685, 1366], [1685, 1363], [1686, 1363], [1686, 1360], [1687, 1360], [1687, 1359], [1694, 1359], [1694, 1360], [1695, 1363], [1696, 1369], [1694, 1369], [1694, 1373], [1695, 1373], [1695, 1375], [1693, 1377], [1691, 1377], [1688, 1374], [1688, 1370], [1686, 1368], [1685, 1365]]}, "center": {"109-166, T:0-1": [1691, 1367]}},
+{"id": "u39z7g", "name": "Malazan Imperial sigil", "description": "The sigil of a taloned hand holding a crystal globe. Malazon Book of the Fallen is a series of epic fantasy novels by Steven Erikson.", "links": {"website": ["https://malazan.fandom.com/wiki/Malazan_Imperial_sigil"], "subreddit": ["Malazan", "SFFA"]}, "path": {"109-166, T:0-1": [[1685, 1366], [1685, 1363], [1686, 1363], [1686, 1360], [1687, 1360], [1687, 1359], [1694, 1359], [1694, 1360], [1695, 1363], [1696, 1369], [1694, 1369], [1694, 1373], [1695, 1373], [1695, 1375], [1693, 1377], [1691, 1377], [1688, 1374], [1688, 1370], [1686, 1368], [1685, 1365]]}, "center": {"109-166, T:0-1": [1691, 1367]}},
{"id": "u4rdsq", "name": "Avocado", "description": "Mexico is the largest producer of avocados in the world.\n\nThis art was originally a lime, but everyone mistook it for an avocado. It was nuked by Polish streamers along with the Mexican flag; although the flag was recovered, this art was never rebuilt due to major interest in the larger flag of Mexico in the second canvas expansion.", "links": {"website": ["https://en.wikipedia.org/wiki/Avocado_production_in_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"82-87, T:0-1": [[998, 213], [995, 216], [994, 218], [993, 219], [993, 221], [992, 222], [992, 224], [989, 227], [990, 228], [992, 226], [992, 228], [994, 230], [995, 230], [996, 231], [997, 231], [997, 232], [996, 233], [996, 234], [998, 233], [999, 232], [999, 231], [1001, 231], [1001, 232], [1000, 233], [1001, 234], [1003, 232], [1003, 231], [1004, 230], [1005, 230], [1007, 228], [1007, 226], [1009, 224], [1008, 223], [1007, 224], [1007, 220], [1006, 219], [1006, 218], [1001, 213]]}, "center": {"82-87, T:0-1": [1000, 223]}},
{"id": "u4r5ud", "name": "Mexico hearts", "description": "Hearts depicting the flag of Mexico.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"109-165, T:0-1": [[632, 1168], [629, 1171], [629, 1173], [646, 1173], [660, 1188], [664, 1192], [669, 1187], [669, 1185], [667, 1183], [661, 1183], [662, 1177], [663, 1178], [669, 1173], [669, 1170], [666, 1167], [660, 1167], [657, 1170], [657, 1173], [662, 1177], [661, 1183], [659, 1185], [646, 1173], [646, 1170], [644, 1168]]}, "center": {"109-165, T:0-1": [655, 1176]}},
{"id": "u4qvaw", "name": "Luffy's straw hat", "description": "The signature straw hat of One Piece protagonist Monkey D. Luffy. Placed on top of Emotiguy by r/OnePiece on days 2 and 3 of r/place.", "links": {"website": ["https://onepiece.fandom.com/wiki/Monkey_D._Luffy"], "subreddit": ["OnePiece"]}, "path": {"125-166, 75-109, T:0-1": [[1539, 142], [1537, 144], [1537, 145], [1533, 148], [1533, 149], [1551, 149], [1551, 148], [1549, 146], [1548, 146], [1547, 145], [1547, 144], [1545, 142]]}, "center": {"125-166, 75-109, T:0-1": [1542, 146]}},
@@ -7006,7 +6982,7 @@
{"id": "u5zozu", "name": "Foundation Abbreviation", "description": "The abbreviation \"FN\" for the Foundation group. Moved to the left of the r/LSD artwork with the cooperation of the subreddit. The artwork is incomplete.", "links": {}, "path": {"109-165, T:0-1": [[380, 1716], [388, 1716], [388, 1722], [380, 1722]]}, "center": {"109-165, T:0-1": [384, 1719]}},
{"id": "u5y671", "name": "Arcane Odyssey", "description": "This is the fourth major relocation for the upcoming Roblox game Arcane Odyssey. Although unfinished, you can see the beginnings of a green thunderbolt, which is the profile picture for the developer of the game Vetex. Allied with the Anime Alliance (AniList) to our left, along with the King Crimsons to our right.", "links": {"website": ["https://forum.arcaneodyssey.dev/"], "subreddit": ["worldofmagic"]}, "path": {"109-166, T:0-1": [[1710, 1173], [1722, 1173], [1722, 1185], [1710, 1185]]}, "center": {"109-166, T:0-1": [1716, 1179]}},
{"id": "u5y1qg", "name": "Splitgate", "description": "Splitgate is an indie competitive first-person-shooter game that's essentially the result of throwing Halo and Portal into a blender. It is free-to-play and available on PlayStation, Xbox, Windows, Mac, and Linux.", "links": {"website": ["https://www.splitgate.com/", "https://en.wikipedia.org/wiki/Splitgate"], "subreddit": ["Splitgate"]}, "path": {"161-166, T:0-1": [[1613, 393], [1613, 405], [1629, 405], [1629, 393]]}, "center": {"161-166, T:0-1": [1621, 399]}},
-{"id": "u5vg3k", "name": "Aquino Chikito", "description": "El Aquino Chikito es la versión chiquita de AQUINO (el webadas. streamer y YouTuber peruano, parte de los webones) también es usado como parte de la decoración de su contador de subs y existen cultos a este, existio durante el 03/04/2020 a las 6:41 GTM. Su estado actual es destruido y ya no es posible apreciarlo en el lienzo final.", "links": {"website": ["https://www.youtube.com/c/Aquinoby2002"], "subreddit": ["Webadas"]}, "path": {"56-166, T:0-1": [[1296, 886], [1296, 909], [1320, 906], [1317, 886], [1311, 885]]}, "center": {"56-166, T:0-1": [1307, 897]}},
+{"id": "u5vg3k", "name": "Aquino Chikito", "description": "Aquino Chikito is a small version of AQUINO (a.k.a. Webadas), a streamer and YouTuber who is part of the group Webones. Aquino Chikito is used a decoration for AQUINO's subscriber counter on his streams, and there are also cults for it.\n\nThis art was drawn on April 3rd at 6:41 GMT. It was later destroyed, and is not possible to appreciate on the final canvas.", "links": {"website": ["https://www.youtube.com/c/Aquinoby2002"], "subreddit": ["Webadas"]}, "path": {"78-87": [[1300, 885], [1300, 887], [1297, 889], [1297, 896], [1300, 899], [1302, 899], [1302, 903], [1301, 903], [1301, 906], [1304, 906], [1304, 903], [1309, 903], [1312, 906], [1313, 905], [1312, 904], [1312, 899], [1313, 899], [1315, 901], [1316, 900], [1313, 897], [1313, 896], [1315, 896], [1315, 890], [1313, 887], [1309, 884], [1305, 884], [1304, 885]]}, "center": {"78-87": [1306, 893]}},
{"id": "u5v3rj", "name": "ZacBloxx", "description": "YouTuber, most popular in 2017", "links": {"website": ["https://baggyraincoat.carrd.co/"], "subreddit": ["zacbloxxfanclub"]}, "path": {"109-166, T:0-1": [[440, 1647], [440, 1650], [443, 1650], [443, 1647], [441, 1648]]}, "center": {"109-166, T:0-1": [442, 1649]}},
{"id": "u5uhqb", "name": "Abrosexual flag", "description": "A pride flag representing the abrosexual community. Abrosexual refers to an individual whose sexuality is changing or fluid. One can change between any sexualities, whether it be monosexual, multisexual, allosexual, asexual spectrum, etc.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Abrosexual"]}, "path": {"123-141": [[888, 1432], [888, 1438], [899, 1438], [899, 1432]], "68-92": [[1554, 552], [1554, 558], [1573, 558], [1573, 552]], "26-30": [[0, 662], [0, 670], [2, 670], [2, 662]], "113-117": [[905, 714], [905, 720], [910, 720], [910, 714]], "158-165, T:0-1": [[888, 1440], [888, 1446], [920, 1446], [920, 1440]]}, "center": {"123-141": [894, 1435], "68-92": [1564, 555], "26-30": [1, 666], "113-117": [908, 717], "158-165, T:0-1": [904, 1443]}},
{"id": "u5uh07", "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": ["PlacePride"]}, "path": {"109-165, T:0-1": [[900, 1428], [900, 1433], [920, 1433], [920, 1430], [909, 1430], [909, 1428]]}, "center": {"109-165, T:0-1": [909, 1431]}},
@@ -7019,30 +6995,30 @@
{"id": "u5ub59", "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": {"72-82": [[926, 750], [926, 756], [930, 756], [930, 750]], "83-86": [[934, 735], [934, 741], [938, 741], [938, 735]], "15-20": [[979, 890], [979, 896], [988, 896], [988, 890]], "116-165, T:0-1": [[888, 1407], [888, 1413], [905, 1413], [905, 1407]]}, "center": {"72-82": [928, 753], "83-86": [936, 738], "15-20": [984, 893], "116-165, T:0-1": [897, 1410]}},
{"id": "u5uakl", "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": {"109-165, T:0-1": [[888, 1400], [888, 1408], [905, 1408], [905, 1400]]}, "center": {"109-165, T:0-1": [897, 1404]}},
{"id": "u5u64q", "name": "Flag of Cascadia", "description": "The Doug flag, also referred to as the Cascadian flag or the Cascadia Doug flag and nicknamed \"Old Doug\" or simply \"the Doug\", is one of the primary symbols and an unofficial flag of the Cascadia bioregion, a region including northern California, Oregon, Washington, western Idaho, British Columbia, southern Alaska, and other areas surrounding the Salish Sea and Cascade Range in the Pacific Northwest. The flag prominently and proudly features a Douglas fir, native and common in the region.", "links": {"website": ["https://cascadiabioregion.org/", "https://en.wikipedia.org/wiki/Cascadia_(bioregion)", "https://en.wikipedia.org/wiki/Doug_flag"], "subreddit": ["Cascadia"]}, "path": {"9": [[256, 610], [256, 625], [245, 628], [245, 629], [259, 629], [259, 610]], "98-111": [[1161, 181], [1161, 188], [1171, 188], [1171, 181]], "10-16": [[249, 610], [249, 612], [233, 628], [233, 629], [253, 629], [253, 610]], "147-166, T:0-1": [[811, 1781], [809, 1783], [809, 1790], [812, 1793], [814, 1793], [817, 1790], [817, 1783], [815, 1781]]}, "center": {"9": [257, 627], "98-111": [1166, 185], "10-16": [247, 623], "147-166, T:0-1": [813, 1787]}},
-{"id": "u5tzgu", "name": "Gray crystal heart", "description": "In Celeste, This collectible is found during Chapter 9: Farewell.", "links": {"website": ["https://celestegame.fandom.com/wiki/Collectibles#Crystal_Hearts"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]]}, "center": {"56-165, T:0-1": [1010, 874]}},
+{"id": "u5tzgu", "name": "Gray crystal heart", "description": "In Celeste, this collectible is found during Chapter 9: Farewell.", "links": {"website": ["https://celestegame.fandom.com/wiki/Collectibles#Crystal_Hearts"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"159-165, T:0-1": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]]}, "center": {"159-165, T:0-1": [1010, 874]}},
{"id": "u5tys5", "name": "Yellow crystal heart", "description": "A collectible in Celeste. These hearts are found at the end of each C-side level.", "links": {"website": ["https://celestegame.fandom.com/wiki/Collectibles#Crystal_Hearts"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"69-75, 91-165, T:0-1": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]]}, "center": {"69-75, 91-165, T:0-1": [998, 874]}},
{"id": "u5ty4b", "name": "Blue crystal heart", "description": "A collectible in Celeste. These hearts are hidden throughout the A-side levels.", "links": {"website": ["https://celestegame.fandom.com/wiki/Collectibles#Crystal_Hearts"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"64-81, 88-165, T:0-1": [[990, 871], [988, 873], [988, 874], [992, 878], [996, 874], [996, 873], [994, 871]]}, "center": {"64-81, 88-165, T:0-1": [992, 874]}},
{"id": "u5ttyi", "name": "Bird", "description": "A bird from the game Celeste who appears throughout the game, sometimes teaching new game mechanics. The bird is lightly implied to be friendly or affiliated with another character, Granny. It plays a major role in the story of Chapter 9: Farewell.", "links": {"website": ["https://celestegame.fandom.com/wiki/List_of_characters#Bird"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"64-165, T:0-1": [[986, 854], [984, 856], [984, 857], [981, 860], [980, 860], [978, 862], [980, 864], [988, 864], [991, 861], [991, 860], [993, 858], [989, 854]]}, "center": {"64-165, T:0-1": [987, 859]}},
{"id": "u5ts5j", "name": "Madeline", "description": "Madeline is the player character in Celeste, attempting to scale Celeste Mountain. Madeline is canonically trans.\n\nEarlier on, Madeline was depicted in her powered-up form with pink hair, which appears in the game after Madeline merges with her alter ego Badeline. Later on, Badeline was drawn separately and Madeline changed to her normal red-haired appearance.", "links": {"website": ["https://celestegame.fandom.com/wiki/Madeline"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"1-67": [[983, 862], [970, 873], [973, 876], [979, 876], [979, 881], [987, 881], [989, 879], [989, 877], [991, 875], [991, 874], [989, 872], [989, 870], [990, 869], [990, 865], [987, 862]], "68-165, T:0-1": [[983, 862], [979, 866], [979, 869], [977, 871], [977, 872], [976, 873], [976, 874], [975, 875], [978, 878], [979, 878], [979, 880], [989, 880], [989, 875], [990, 874], [990, 873], [989, 872], [989, 871], [990, 870], [989, 869], [989, 868], [990, 867], [990, 865], [989, 864], [989, 862]]}, "center": {"1-67": [983, 871], "68-165, T:0-1": [983, 873]}},
{"id": "u5tqsn", "name": "Badeline", "description": "The alter ego of main character Madeline in Celeste, and the main antagonist throughout much of the game's story.", "links": {"website": ["https://celestegame.fandom.com/wiki/Badeline"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"63-165, T:0-1": [[998, 856], [995, 859], [995, 867], [994, 868], [994, 871], [996, 873], [1003, 873], [1004, 872], [1006, 872], [1006, 870], [1008, 868], [1008, 865], [1007, 864], [1007, 863], [1006, 862], [1006, 860], [1002, 856]]}, "center": {"63-165, T:0-1": [1001, 866]}},
-{"id": "u5tmmh", "name": "Celeste-OMORI heart", "description": "A heart with the background colors of the Celeste and OMORI artworks.", "links": {"subreddit": ["celesteplace", "celestegame", "OMORI"], "discord": ["celeste", "ypSr9JG2ht"]}, "path": {"56-165, T:0-1": [[1003, 849], [1001, 851], [1001, 853], [1005, 857], [1009, 853], [1009, 851], [1007, 849]]}, "center": {"56-165, T:0-1": [1005, 852]}},
-{"id": "u5tlr9", "name": "Granny", "description": "A resident of Celeste Mountain in the game Celeste. Known for laughing at the main character Madeline when Madeline vents her frustrations about scaling Celeste Mountain.", "links": {"website": ["https://celestegame.fandom.com/wiki/Old_Woman"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1027, 854], [1027, 858], [1026, 859], [1026, 862], [1025, 863], [1025, 868], [1033, 868], [1033, 871], [1034, 871], [1034, 873], [1046, 873], [1046, 870], [1047, 869], [1047, 867], [1048, 866], [1048, 863], [1046, 861], [1046, 860], [1047, 859], [1047, 858], [1044, 855], [1036, 855], [1036, 854]]}, "center": {"56-165, T:0-1": [1037, 863]}},
-{"id": "u5tj26", "name": "Mr. Oshiro", "description": "A character in Celeste who owns the Celestial Resort hotel, The setting of Chapter 3.", "links": {"website": ["https://celestegame.fandom.com/wiki/Mr._Oshiro"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1052, 860], [1051, 861], [1050, 861], [1048, 863], [1050, 865], [1050, 866], [1049, 867], [1049, 869], [1048, 870], [1048, 871], [1050, 876], [1050, 878], [1053, 881], [1055, 881], [1058, 878], [1060, 872], [1060, 869], [1059, 868], [1059, 865], [1055, 861], [1055, 860]]}, "center": {"56-165, T:0-1": [1054, 870]}},
-{"id": "u5tftg", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1086, 871], [1084, 873], [1084, 874], [1088, 878], [1092, 874], [1092, 873], [1090, 871]]}, "center": {"56-165, T:0-1": [1088, 874]}},
-{"id": "u5tf9p", "name": "Genderqueer heart", "description": "A heart depicting the genderqueer pride flag.", "links": {"website": ["https://gender.fandom.com/wiki/Genderqueer"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1080, 871], [1078, 873], [1078, 874], [1082, 878], [1086, 874], [1086, 873], [1084, 871]]}, "center": {"56-165, T:0-1": [1082, 874]}},
-{"id": "u5teo9", "name": "Genderfluid heart", "description": "A heart depicting the genderfluid pride flag.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Genderfluid"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1074, 871], [1072, 873], [1072, 874], [1076, 878], [1080, 874], [1080, 873], [1078, 871]]}, "center": {"56-165, T:0-1": [1076, 874]}},
+{"id": "u5tmmh", "name": "Celeste-OMORI heart", "description": "A heart with the background colors of the Celeste and OMORI artworks.", "links": {"website": ["http://www.celestegame.com/", "https://www.omori-game.com/"], "subreddit": ["celesteplace", "celestegame", "OMORI"], "discord": ["celeste", "ypSr9JG2ht"]}, "path": {"83-104": [[1002, 850], [1000, 852], [1000, 854], [1004, 858], [1008, 854], [1008, 852], [1006, 850]], "105-165, T:0-1": [[1003, 849], [1001, 851], [1001, 853], [1005, 857], [1009, 853], [1009, 851], [1007, 849]]}, "center": {"83-104": [1004, 853], "105-165, T:0-1": [1005, 852]}},
+{"id": "u5tlr9", "name": "Granny", "description": "Granny is a resident of Celeste Mountain in the game Celeste. She is known for laughing at the main character Madeline when Madeline vents her frustrations about scaling Celeste Mountain.", "links": {"website": ["https://celestegame.fandom.com/wiki/Old_Woman"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"73-165, T:0-1": [[1027, 854], [1027, 858], [1026, 859], [1026, 862], [1025, 863], [1025, 868], [1033, 868], [1033, 871], [1034, 871], [1034, 873], [1046, 873], [1046, 870], [1047, 869], [1047, 867], [1048, 866], [1048, 863], [1046, 861], [1046, 860], [1047, 859], [1047, 858], [1044, 855], [1036, 855], [1036, 854]]}, "center": {"73-165, T:0-1": [1038, 863]}},
+{"id": "u5tj26", "name": "Mr. Oshiro", "description": "Mr. Oshiro is a character in Celeste who owns the Celestial Resort hotel, the setting of Chapter 3.", "links": {"website": ["https://celestegame.fandom.com/wiki/Mr._Oshiro"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"80-165, T:0-1": [[1052, 860], [1051, 861], [1050, 861], [1048, 863], [1050, 865], [1050, 866], [1049, 867], [1049, 869], [1048, 870], [1048, 871], [1050, 876], [1050, 878], [1053, 881], [1055, 881], [1058, 878], [1060, 872], [1060, 869], [1059, 868], [1059, 865], [1055, 861], [1055, 860]]}, "center": {"80-165, T:0-1": [1054, 871]}},
+{"id": "u5tftg", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"66-91": [[1038, 871], [1036, 873], [1036, 874], [1040, 878], [1044, 874], [1044, 873], [1042, 871]], "102-106, 109-165, T:0-1": [[1086, 871], [1084, 873], [1084, 874], [1088, 878], [1092, 874], [1092, 873], [1090, 871]]}, "center": {"66-91": [1040, 874], "102-106, 109-165, T:0-1": [1088, 874]}},
+{"id": "u5tf9p", "name": "Genderqueer heart", "description": "A heart depicting the genderqueer pride flag. Genderqueer is an umbrella term similar to non-binary.", "links": {"website": ["https://gender.fandom.com/wiki/Genderqueer"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"78-85": [[1140, 871], [1138, 873], [1138, 874], [1142, 878], [1146, 874], [1146, 873], [1144, 871]], "101-165, T:0-1": [[1080, 871], [1078, 873], [1078, 874], [1082, 878], [1086, 874], [1086, 873], [1084, 871]]}, "center": {"78-85": [1142, 874], "101-165, T:0-1": [1082, 874]}},
+{"id": "u5teo9", "name": "Genderfluid heart", "description": "A heart depicting the genderfluid pride flag. Genderfluid 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://lgbta.miraheze.org/wiki/Genderfluid"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"81-86": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1098, 874], [1098, 873], [1096, 871]], "91-94": [[1080, 871], [1078, 873], [1078, 874], [1082, 878], [1086, 874], [1086, 873], [1084, 871]], "73-80": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1098, 874], [1098, 873], [1096, 871], [1158, 871], [1156, 873], [1156, 874], [1160, 878], [1164, 874], [1164, 873], [1162, 871]], "99-165, T:0-1": [[1074, 871], [1072, 873], [1072, 874], [1076, 878], [1080, 874], [1080, 873], [1078, 871]]}, "center": {"81-86": [1094, 874], "91-94": [1082, 874], "73-80": [1094, 874], "99-165, T:0-1": [1076, 874]}},
{"id": "u5tdy4", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"76": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]], "78": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871], [1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871]], "125-134": [[1110, 871], [1108, 873], [1108, 874], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "83-86": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871], [1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871]], "64-69, 81-82, 87-94": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871]], "135-165, 98-123, T:0-1": [[1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871]]}, "center": {"76": [998, 874], "78": [998, 874], "125-134": [1112, 874], "83-86": [1064, 874], "64-69, 81-82, 87-94": [1016, 874], "135-165, 98-123, T:0-1": [1070, 874]}},
-{"id": "u5tdhh", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871]]}, "center": {"56-165, T:0-1": [1064, 874]}},
-{"id": "u5tcwi", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1056, 871], [1054, 873], [1054, 874], [1058, 878], [1062, 874], [1062, 873], [1060, 871]]}, "center": {"56-165, T:0-1": [1058, 874]}},
-{"id": "u5tccm", "name": "Omnisexual heart", "description": "A heart depicting the omnisexual pride flag.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Omnisexual"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1050, 871], [1048, 873], [1048, 874], [1052, 878], [1056, 874], [1056, 873], [1054, 871]]}, "center": {"56-165, T:0-1": [1052, 874]}},
-{"id": "u5tbin", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1044, 871], [1042, 873], [1042, 874], [1046, 878], [1050, 874], [1050, 873], [1048, 871]]}, "center": {"56-165, T:0-1": [1046, 874]}},
-{"id": "u5tb1x", "name": "Aromantic heart", "description": "A heart depicting the aromantic pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1038, 871], [1036, 873], [1036, 874], [1040, 878], [1044, 874], [1044, 873], [1042, 871]]}, "center": {"56-165, T:0-1": [1040, 874]}},
-{"id": "u5ta90", "name": "Polysexual heart", "description": "A heart depicting the polysexual pride flag", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Polysexual"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1032, 871], [1030, 873], [1030, 874], [1034, 878], [1038, 874], [1038, 873], [1036, 871]]}, "center": {"56-165, T:0-1": [1034, 874]}},
-{"id": "u5t9fq", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1026, 871], [1024, 873], [1024, 874], [1028, 878], [1032, 874], [1032, 873], [1030, 871]]}, "center": {"56-165, T:0-1": [1028, 874]}},
-{"id": "u5t8sf", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"56-165, T:0-1": [[1020, 871], [1018, 873], [1018, 874], [1022, 878], [1026, 874], [1026, 873], [1024, 871]]}, "center": {"56-165, T:0-1": [1022, 874]}},
-{"id": "u5t838", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"79-80": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871], [1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871]], "81-90": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]], "70-78, 96-165, T:0-1": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871]]}, "center": {"79-80": [998, 874], "81-90": [998, 874], "70-78, 96-165, T:0-1": [1016, 874]}},
+{"id": "u5tdhh", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"65-93": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]], "97-103": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871], [1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871]], "104-165, T:0-1": [[1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871]]}, "center": {"65-93": [1010, 874], "97-103": [1010, 874], "104-165, T:0-1": [1064, 874]}},
+{"id": "u5tcwi", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"65-165, T:0-1": [[1056, 871], [1054, 873], [1054, 874], [1058, 878], [1062, 874], [1062, 873], [1060, 871]]}, "center": {"65-165, T:0-1": [1058, 874]}},
+{"id": "u5tccm", "name": "Omnisexual heart", "description": "A heart depicting the omnisexual pride flag. Omnisexuality (often shortened to omni) is a multisexual orientation defined as the sexual, romantic or otherwise alterous attraction to all gender, specifically with gender playing a role in one's attraction. All omnisexuals have a gender preference; they can have small or large preferences, and they may change over time. The romantic equivalent is omniromantic.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Omnisexual"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"156-165, T:0-1": [[1050, 871], [1048, 873], [1048, 874], [1052, 878], [1056, 874], [1056, 873], [1054, 871]]}, "center": {"156-165, T:0-1": [1052, 874]}},
+{"id": "u5tbin", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"64-70": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1098, 874], [1098, 873], [1096, 871]], "74-83": [[1044, 871], [1042, 873], [1042, 874], [1046, 878], [1050, 874], [1050, 873], [1048, 871], [1146, 871], [1144, 873], [1144, 874], [1148, 878], [1152, 874], [1152, 873], [1150, 871]], "84-165, T:0-1": [[1044, 871], [1042, 873], [1042, 874], [1046, 878], [1050, 874], [1050, 873], [1048, 871]]}, "center": {"64-70": [1094, 874], "74-83": [1046, 874], "84-165, T:0-1": [1046, 874]}},
+{"id": "u5tb1x", "name": "Aromantic heart", "description": "A heart depicting the aromantic pride flag. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"91-93": [[1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871], [1116, 871], [1114, 873], [1114, 874], [1118, 878], [1122, 874], [1122, 873], [1120, 871]], "75-86": [[1098, 871], [1096, 873], [1096, 874], [1100, 878], [1104, 874], [1104, 873], [1102, 871]], "66-74": [[1098, 871], [1096, 873], [1096, 874], [1100, 878], [1104, 874], [1104, 873], [1102, 871], [1110, 871], [1108, 873], [1108, 874], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "99-165, T:0-1": [[1038, 871], [1036, 873], [1036, 874], [1040, 878], [1044, 874], [1044, 873], [1042, 871]]}, "center": {"91-93": [1118, 874], "66-86": [1100, 874], "99-165, T:0-1": [1040, 874]}},
+{"id": "u5ta90", "name": "Polysexual heart", "description": "A heart depicting the polysexual pride flag. Polysexual is the sexual attraction to many, but not necessarily all, genders. For example, a polysexual individual could be attracted to all genders except men. Or a polysexual individual could be attracted only to non-binary individuals, genderfluid individuals, and male-aligned individuals.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Polysexual"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"89-93": [[1086, 871], [1084, 873], [1084, 874], [1088, 878], [1092, 874], [1092, 873], [1090, 871]], "129-145, 150-165, 79-82, T:0-1": [[1032, 871], [1030, 873], [1030, 874], [1034, 878], [1038, 874], [1038, 873], [1036, 871]]}, "center": {"89-93": [1088, 874], "129-145, 150-165, 79-82, T:0-1": [1034, 874]}},
+{"id": "u5t9fq", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"115-165, 64-111, T:0-1": [[1026, 871], [1024, 873], [1024, 874], [1028, 878], [1032, 874], [1032, 873], [1030, 871]]}, "center": {"115-165, 64-111, T:0-1": [1028, 874]}},
+{"id": "u5t8sf", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"65-83": [[1020, 871], [1018, 873], [1018, 874], [1022, 878], [1026, 874], [1026, 873], [1024, 871], [1086, 871], [1084, 873], [1084, 874], [1088, 878], [1092, 874], [1092, 873], [1090, 871]], "84-165, T:0-1": [[1020, 871], [1018, 873], [1018, 874], [1022, 878], [1026, 874], [1026, 873], [1024, 871]]}, "center": {"65-83": [1022, 874], "84-165, T:0-1": [1022, 874]}},
+{"id": "u5t838", "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"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"79-80": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871], [1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871]], "81-90": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]], "124-134": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871], [1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871]], "67-69": [[1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871]], "146-152, 70-78, 96-123, T:0-1": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871], [1032, 871], [1030, 873], [1030, 874], [1034, 878], [1038, 874], [1038, 873], [1036, 871]], "135-145, 153-165": [[1014, 871], [1012, 873], [1012, 874], [1016, 878], [1020, 874], [1020, 873], [1018, 871]]}, "center": {"79-80": [998, 874], "81-90": [998, 874], "124-134": [1016, 874], "67-69": [1070, 874], "146-152, 70-78, 96-123, T:0-1": [1016, 874], "135-145, 153-165": [1016, 874]}},
{"id": "u5t72t", "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": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"115-122, 136-146": [[1086, 871], [1084, 873], [1084, 874], [1088, 878], [1092, 874], [1092, 873], [1090, 871]], "101-105": [[1110, 871], [1108, 873], [1108, 874], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "99-100": [[1098, 871], [1096, 873], [1096, 874], [1100, 878], [1104, 874], [1104, 873], [1102, 871], [1110, 871], [1108, 873], [1108, 874], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "80-85": [[966, 871], [964, 873], [964, 874], [968, 878], [972, 874], [972, 873], [970, 871]], "147-165, 98, T:0-1": [[1098, 871], [1096, 873], [1096, 874], [1100, 878], [1104, 874], [1104, 873], [1102, 871]]}, "center": {"115-122, 136-146": [1088, 874], "101-105": [1112, 874], "99-100": [1100, 874], "80-85": [968, 874], "147-165, 98, T:0-1": [1100, 874]}},
-{"id": "u5t6hg", "name": "Germany hearts", "description": "Hearts depicting the flag of Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["celesteplace", "celestegame", "placeDE", "de", "germany"], "discord": ["celeste", "placeDE"]}, "path": {"56-165, T:0-1": [[1104, 871], [1102, 873], [1102, 874], [1106, 878], [1124, 878], [1128, 874], [1128, 873], [1126, 871]]}, "center": {"56-165, T:0-1": [1115, 874]}},
+{"id": "u5t6hg", "name": "Germany hearts", "description": "Hearts depicting the flag of Germany, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"104": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871], [1098, 871], [1096, 873], [1096, 874], [1100, 878], [1106, 878], [1110, 874], [1110, 873], [1108, 871]], "99-103": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1106, 878], [1110, 874], [1110, 873], [1108, 871]], "97-98": [[1062, 871], [1060, 873], [1060, 874], [1064, 878], [1118, 878], [1121, 875], [1121, 872], [1120, 871]], "70-74": [[1074, 871], [1072, 873], [1072, 874], [1076, 878], [1080, 874], [1080, 873], [1078, 871]], "63-69": [[1062, 871], [1060, 873], [1060, 874], [1064, 878], [1068, 874], [1068, 873], [1066, 871], [1074, 871], [1072, 873], [1072, 874], [1076, 878], [1082, 878], [1086, 874], [1086, 873], [1084, 871]], "105-114": [[1074, 871], [1072, 873], [1072, 874], [1076, 878], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "95-96": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871], [1068, 871], [1066, 873], [1066, 874], [1070, 878], [1118, 878], [1121, 875], [1121, 872], [1120, 871]], "90-94": [[1086, 871], [1084, 873], [1084, 874], [1088, 878], [1118, 878], [1121, 875], [1121, 872], [1120, 871]], "115-123, 135-145": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1112, 878], [1116, 874], [1116, 873], [1114, 871]], "146-165, T:0-1": [[1104, 871], [1102, 873], [1102, 874], [1106, 878], [1124, 878], [1128, 874], [1128, 873], [1126, 871]]}, "center": {"104": [1101, 874], "99-103": [1100, 875], "97-98": [1091, 875], "70-74": [1076, 874], "63-69": [1078, 875], "105-114": [1094, 875], "95-96": [1087, 875], "90-94": [1103, 875], "115-123, 135-145": [1103, 875], "146-165, T:0-1": [1115, 875]}},
{"id": "u5t32e", "name": "Moon Berry", "description": "A secret berry in the game Celeste located in an alternative path near the end of Chapter 9: Farewell.\n\nThis berry showed up about a day after the first two were constructed, after several failed attempts to add a berry with the transgender flag.", "links": {"website": ["https://celestegame.fandom.com/wiki/Collectibles#Moon_Berry"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"53-107": [[545, 18], [544, 19], [542, 19], [536, 25], [536, 26], [538, 28], [539, 28], [540, 29], [541, 29], [544, 32], [545, 32], [548, 29], [552, 27], [553, 26], [553, 25], [546, 18]], "108-166, T:0-1": [[545, 21], [544, 22], [542, 22], [536, 28], [536, 29], [538, 31], [539, 31], [540, 32], [541, 32], [544, 35], [545, 35], [548, 32], [549, 32], [550, 31], [551, 31], [553, 29], [553, 28], [546, 21]]}, "center": {"53-107": [545, 25], "108-166, T:0-1": [545, 28]}},
{"id": "u5sssz", "name": "V-Wheel-Hatsune Miku/Nyan Cat heart", "description": "A heart with the colors of the V-Wheel and Hatsune Miku/Nyan Cat artworks.", "links": {"subreddit": ["MysteryDungeon", "Victini", "NyanPlace", "hatsune"], "discord": ["mysterydungeon"]}, "path": {"109-166, T:0-1": [[1733, 1490], [1731, 1492], [1731, 1493], [1734, 1496], [1737, 1493], [1737, 1492], [1735, 1490]]}, "center": {"109-166, T:0-1": [1734, 1493]}},
{"id": "u5sqj4", "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", "Volcaloid"]}, "path": {"109-166, T:0-1": [[1706, 1451], [1705, 1452], [1704, 1452], [1703, 1453], [1703, 1454], [1702, 1455], [1702, 1457], [1701, 1458], [1701, 1464], [1702, 1465], [1702, 1466], [1705, 1469], [1708, 1469], [1709, 1470], [1710, 1470], [1711, 1471], [1713, 1471], [1714, 1470], [1715, 1470], [1716, 1469], [1719, 1469], [1723, 1465], [1723, 1458], [1722, 1457], [1722, 1455], [1721, 1454], [1721, 1453], [1720, 1452], [1719, 1452], [1718, 1451]]}, "center": {"109-166, T:0-1": [1712, 1460]}},
@@ -7057,12 +7033,12 @@
{"id": "u6uu1w", "name": "5up's Among Us", "description": "An Among Us crewmate with a snowman hat that Twitch streamer 5up typically uses.", "links": {"website": ["https://twitch.tv/5uppp"], "subreddit": ["5up"]}, "path": {"109-165, T:0-1": [[969, 1499], [975, 1499], [976, 1511], [969, 1512], [971, 1513], [971, 1509], [970, 1512], [971, 1512], [970, 1513], [969, 1514]]}, "center": {"109-165, T:0-1": [972, 1505]}},
{"id": "u6ulw2", "name": "COTC", "description": "A running joke from Twitch streamer Steven Suptic where he talks about his COTC, a rare disease affecting less than 5% of the population), later revealing that it stands for 'corn on the cob'.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=COTC"], "subreddit": ["stevensuptic"]}, "path": {"109-165, T:0-1": [[1266, 1357], [1266, 1362], [1283, 1362], [1283, 1357]]}, "center": {"109-165, T:0-1": [1275, 1360]}},
{"id": "u6uk8t", "name": "SUGR?", "description": "The stage name of Twitch streamer Steven Suptic when he produces music.", "links": {"website": ["https://soundcloud.com/stevensuptic"], "subreddit": ["stevensuptic"]}, "path": {"109-165, T:0-1": [[1266, 1362], [1266, 1366], [1285, 1366], [1285, 1362]]}, "center": {"109-165, T:0-1": [1276, 1364]}},
-{"id": "u6uafm", "name": "Finland heart", "description": "A heart depicting the flag of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["Suomi"]}, "path": {"109-165, T:0-1": [[1273, 1311], [1269, 1315], [1269, 1316], [1275, 1322], [1281, 1316], [1281, 1315], [1277, 1311]]}, "center": {"109-165, T:0-1": [1275, 1316]}},
+{"id": "u6uafm", "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": {"78-81": [[1312, 871], [1310, 873], [1310, 874], [1314, 878], [1318, 874], [1318, 873], [1316, 871]], "127-165, T:0-1": [[1273, 1311], [1269, 1315], [1269, 1316], [1275, 1322], [1281, 1316], [1281, 1315], [1277, 1311]]}, "center": {"78-81": [1314, 874], "127-165, T:0-1": [1275, 1315]}},
{"id": "u6u9xy", "name": "Belgium-Finland hearts", "description": "Hearts depicting the flags of Belgium and Finland.", "links": {"subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "Suomi"]}, "path": {"109-165, T:0-1": [[1283, 1317], [1279, 1321], [1279, 1337], [1285, 1343], [1286, 1343], [1292, 1337], [1292, 1321], [1288, 1317], [1287, 1317], [1286, 1318], [1285, 1318], [1284, 1317]]}, "center": {"109-165, T:0-1": [1286, 1329]}},
{"id": "u6u0nv", "name": "Tufts University", "description": "A private university in the Greater Boston area. Its logo is drawn twice to spell out the word 'butt'.", "links": {"website": ["https://www.tufts.edu/"]}, "path": {"109-164, T:0-1": [[330, 1520], [330, 1537], [358, 1537], [358, 1520]]}, "center": {"109-164, T:0-1": [344, 1529]}},
{"id": "u6t0y7", "name": "Limealicious", "description": "A lime symbolizing the streamer Limealicious, who is part of the Vinesauce crew.", "links": {"website": ["https://www.twitch.tv/limealicious"], "subreddit": ["vinesauce"]}, "path": {"152-166, T:0-1": [[127, 1088], [131, 1088], [134, 1091], [135, 1094], [131, 1098], [127, 1098], [124, 1095], [124, 1091]]}, "center": {"152-166, T:0-1": [129, 1093]}},
-{"id": "u6spz5", "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"163-166, T:0-1": [[1234, 248], [1231, 251], [1231, 252], [1236, 257], [1241, 252], [1241, 251], [1238, 248]]}, "center": {"163-166, T:0-1": [1236, 252]}},
-{"id": "u6sobc", "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": {"35-56": [[689, 360], [689, 374], [691, 376], [693, 374], [693, 360]], "162-166, T:0-1": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]]}, "center": {"35-56": [691, 368], "162-166, T:0-1": [1276, 252]}},
+{"id": "u6spz5", "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"80-86": [[1152, 871], [1150, 873], [1150, 874], [1154, 878], [1158, 874], [1158, 873], [1156, 871]], "163-166, T:0-1": [[1234, 248], [1231, 251], [1231, 252], [1236, 257], [1241, 252], [1241, 251], [1238, 248]]}, "center": {"80-86": [1154, 874], "163-166, T:0-1": [1236, 252]}},
+{"id": "u6sobc", "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": {"35-56": [[689, 360], [689, 374], [691, 376], [693, 374], [693, 360]], "92-97": [[1038, 871], [1036, 873], [1036, 874], [1040, 878], [1044, 874], [1044, 873], [1042, 871]], "162-166, T:0-1": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]]}, "center": {"35-56": [691, 368], "92-97": [1040, 874], "162-166, T:0-1": [1276, 252]}},
{"id": "u6snok", "name": "Hungary heart", "description": "A heart depicting the flag of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"]}, "path": {"61-68": [[1208, 277], [1205, 280], [1205, 282], [1210, 287], [1215, 282], [1215, 280], [1212, 277]], "102-106, 110-111, 116, 77-89, 96-98": [[1362, 248], [1359, 251], [1359, 252], [1364, 257], [1369, 252], [1369, 251], [1366, 248]], "145, 150-166, T:0-1": [[1282, 248], [1279, 251], [1279, 252], [1284, 257], [1289, 252], [1289, 251], [1286, 248]]}, "center": {"61-68": [1210, 281], "102-106, 110-111, 116, 77-89, 96-98": [1364, 252], "145, 150-166, T:0-1": [1284, 252]}},
{"id": "u6sllr", "name": "Turkey heart", "description": "A heart depicting the flag of Turkey, a country in Southwestern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"140-150": [[1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]], "64-103": [[1312, 277], [1309, 280], [1309, 282], [1314, 287], [1319, 282], [1319, 280], [1316, 277]], "156-166, T:0-1": [[1250, 248], [1247, 251], [1247, 252], [1252, 257], [1257, 252], [1257, 251], [1254, 248]]}, "center": {"140-150": [1228, 252], "64-103": [1314, 281], "156-166, T:0-1": [1252, 252]}},
{"id": "u6ske7", "name": "Pakistan heart", "description": "A heart depicting the flag of Pakistan, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Pakistan", "https://en.wikipedia.org/wiki/Flag_of_Pakistan"], "subreddit": ["pakistan"]}, "path": {"123-127, 142-144, 155, 163-166, 91-119, T:0-1": [[1186, 248], [1183, 251], [1183, 252], [1188, 257], [1193, 252], [1193, 251], [1190, 248]]}, "center": {"123-127, 142-144, 155, 163-166, 91-119, T:0-1": [1188, 252]}},
@@ -7162,7 +7138,7 @@
{"id": "u7oh9o", "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", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"22": [[773, 161], [771, 163], [771, 166], [776, 171], [781, 166], [781, 163], [779, 161]], "58": [[259, 190], [257, 192], [257, 193], [261, 197], [265, 193], [265, 192], [263, 190], [135, 190], [135, 178], [124, 178], [123, 179], [119, 175], [119, 174], [121, 172], [125, 172], [127, 174], [127, 175], [124, 178], [135, 178], [135, 190]], "59": [[149, 174], [149, 175], [153, 179], [157, 175], [157, 174]], "133": [[265, 184], [263, 186], [263, 187], [267, 191], [271, 187], [271, 186], [269, 184]], "122-124": [[223, 202], [221, 204], [221, 205], [225, 209], [229, 205], [229, 204], [227, 202]], "110-111": [[289, 202], [288, 203], [288, 206], [291, 209], [295, 205], [295, 204], [293, 202]], "101-102": [[277, 184], [275, 186], [275, 187], [279, 191], [283, 187], [283, 186], [281, 184]], "130-131, 93-94": [[277, 178], [275, 180], [275, 181], [279, 185], [283, 181], [283, 180], [281, 178]], "84-85": [[226, 196], [224, 198], [224, 199], [228, 203], [230, 201], [230, 199], [231, 198], [231, 196]], "86-90": [[217, 184], [215, 186], [215, 187], [219, 191], [220, 190], [228, 190], [228, 196], [226, 196], [224, 198], [224, 199], [228, 203], [230, 201], [230, 199], [231, 198], [231, 196], [228, 196], [228, 190], [220, 190], [223, 187], [223, 186], [221, 184]], "74-75": [[217, 184], [215, 186], [215, 187], [219, 191], [223, 187], [223, 186], [221, 184]], "45-48": [[253, 178], [251, 180], [251, 181], [255, 185], [259, 181], [259, 180], [257, 178]], "35-36": [[725, 161], [723, 163], [723, 166], [728, 171], [733, 166], [733, 163], [731, 161]], "37-43": [[725, 161], [723, 163], [723, 166], [728, 171], [733, 166], [733, 163], [731, 161], [773, 161], [771, 163], [771, 166], [776, 171], [781, 166], [781, 163], [779, 161]], "13-16": [[773, 161], [771, 163], [771, 166], [776, 171], [784, 171], [789, 166], [789, 163], [787, 161]], "139-143": [[292, 208], [290, 210], [290, 212], [298, 212], [298, 210], [296, 208]], "145-147, 152-153": [[265, 190], [263, 192], [263, 193], [267, 197], [271, 193], [271, 192], [269, 190]], "135, 53-54, 63-65, 68-70, 73": [[259, 190], [257, 192], [257, 193], [261, 197], [265, 193], [265, 192], [263, 190]], "157, 161-165, T:0-1": [[283, 172], [281, 174], [281, 175], [285, 179], [289, 175], [289, 174], [287, 172]]}, "center": {"22": [776, 165], "58": [261, 193], "59": [153, 176], "133": [267, 187], "122-124": [225, 205], "110-111": [291, 205], "101-102": [279, 187], "130-131, 93-94": [279, 181], "84-85": [228, 199], "86-90": [219, 187], "74-75": [219, 187], "45-48": [255, 181], "35-36": [728, 165], "37-43": [776, 165], "13-16": [780, 166], "139-143": [294, 210], "145-147, 152-153": [267, 193], "135, 53-54, 63-65, 68-70, 73": [261, 193], "157, 161-165, T:0-1": [285, 175]}},
{"id": "u7ofc7", "name": "Hungary heart", "description": "A heart depicting the flag of Hungary, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"]}, "path": {"49": [[181, 172], [179, 174], [179, 175], [183, 179], [184, 178], [215, 178], [217, 180], [217, 181], [213, 185], [209, 181], [209, 180], [211, 178], [184, 178], [187, 175], [187, 174], [185, 172]], "58": [[229, 190], [227, 192], [227, 193], [231, 197], [235, 193], [235, 192], [233, 190]], "114-116": [[277, 190], [275, 192], [275, 193], [279, 197], [283, 193], [283, 192], [281, 190]], "108-110": [[220, 202], [218, 204], [218, 205], [222, 209], [226, 205], [226, 204], [224, 202]], "102-105": [[241, 190], [239, 192], [239, 193], [243, 197], [247, 193], [247, 192], [245, 190]], "54-55": [[154, 178], [152, 180], [152, 181], [156, 185], [160, 181], [160, 180], [158, 178]], "15-44": [[709, 161], [707, 163], [707, 166], [712, 171], [717, 166], [717, 163], [715, 161]], "12-14": [[589, 161], [587, 163], [587, 166], [592, 171], [597, 166], [597, 163], [595, 161]], "56-57": [[154, 178], [152, 180], [152, 181], [156, 185], [157, 184], [177, 184], [177, 190], [175, 190], [173, 192], [173, 193], [177, 197], [181, 193], [181, 192], [179, 190], [177, 190], [177, 184], [157, 184], [160, 181], [160, 180], [158, 178]], "93-94": [[271, 178], [269, 180], [269, 181], [273, 185], [277, 181], [277, 180], [275, 178]], "87-92": [[253, 172], [251, 174], [251, 175], [255, 179], [259, 175], [259, 174], [257, 172]], "50-53, 84-85": [[211, 178], [209, 180], [209, 181], [213, 185], [217, 181], [217, 180], [215, 178], [223, 178], [221, 180], [221, 181], [225, 185], [229, 181], [229, 180], [227, 178]], "63-64, 67-81": [[229, 178], [227, 180], [227, 181], [231, 185], [235, 181], [235, 180], [233, 178]], "118-122, 46-48": [[223, 178], [221, 180], [221, 181], [225, 185], [229, 181], [229, 180], [227, 178]], "141-142, 145-165": [[292, 202], [290, 204], [290, 205], [294, 209], [298, 205], [298, 204], [296, 202]]}, "center": {"49": [183, 175], "58": [231, 193], "114-116": [279, 193], "108-110": [222, 205], "102-105": [243, 193], "54-55": [156, 181], "15-44": [712, 165], "12-14": [592, 165], "56-57": [177, 193], "93-94": [273, 181], "87-92": [255, 175], "50-53, 84-85": [213, 181], "63-64, 67-81": [231, 181], "118-122, 46-48": [225, 181], "141-142, 145-165": [294, 205]}},
{"id": "u7odi0", "name": "Spain heart", "description": "A heart depicting the flag of Spain, a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"140-143": [[277, 178], [275, 180], [275, 181], [279, 185], [285, 185], [289, 181], [289, 180], [287, 178]], "138-139": [[277, 178], [275, 180], [275, 181], [279, 185], [283, 181], [283, 180], [281, 178]], "75-77": [[241, 190], [239, 192], [239, 193], [243, 197], [247, 193], [247, 192], [245, 190]], "70-74": [[220, 190], [218, 192], [218, 197], [225, 197], [229, 193], [229, 192], [227, 190]], "67-69": [[223, 190], [221, 192], [221, 193], [221, 196], [220, 196], [218, 198], [218, 199], [222, 203], [226, 199], [226, 196], [229, 193], [229, 192], [227, 190]], "55-59": [[181, 178], [179, 180], [179, 181], [183, 185], [187, 181], [187, 180], [185, 178], [275, 178], [277, 180], [277, 181], [273, 185], [267, 185], [263, 181], [263, 180], [265, 178]], "146-148": [[283, 178], [281, 180], [281, 181], [285, 185], [286, 184], [295, 184], [293, 186], [293, 187], [297, 191], [299, 189], [299, 184], [286, 184], [289, 181], [289, 180], [287, 178]], "112-114": [[229, 184], [227, 186], [227, 193], [231, 197], [235, 193], [235, 186], [233, 184], [234, 184], [234, 178], [272, 178], [269, 175], [269, 174], [271, 172], [275, 172], [277, 174], [277, 175], [273, 179], [272, 178], [234, 178], [234, 184]], "88-92": [[271, 172], [269, 174], [269, 181], [273, 185], [277, 181], [277, 174], [275, 172]], "78-82": [[265, 190], [263, 192], [263, 193], [267, 197], [271, 193], [271, 192], [269, 190]], "48-49": [[181, 178], [179, 180], [179, 181], [183, 185], [187, 181], [187, 180], [185, 178], [264, 178], [264, 185], [263, 186], [263, 187], [267, 191], [271, 187], [271, 186], [269, 184], [264, 184], [264, 178]], "103-111, 115-119": [[271, 172], [269, 174], [269, 175], [272, 178], [234, 178], [234, 185], [235, 186], [235, 187], [231, 191], [227, 187], [227, 186], [229, 184], [234, 184], [234, 178], [272, 178], [273, 179], [277, 175], [275, 172]], "50-54, 60-66": [[181, 178], [179, 180], [179, 181], [183, 185], [187, 181], [187, 180], [185, 178]], "14-24, 32-45": [[757, 161], [755, 163], [755, 166], [760, 171], [765, 166], [765, 163], [763, 161]], "120-137, 84-87, 93-102": [[271, 172], [269, 174], [269, 175], [273, 179], [277, 175], [277, 174], [275, 172]], "144-145, 149-165, T:0-1": [[283, 178], [281, 180], [281, 181], [285, 185], [289, 181], [289, 180], [287, 178]]}, "center": {"140-143": [282, 182], "138-139": [279, 181], "75-77": [243, 193], "70-74": [224, 194], "67-69": [225, 193], "55-59": [272, 181], "146-148": [285, 181], "112-114": [231, 189], "88-92": [273, 178], "78-82": [267, 193], "48-49": [267, 187], "103-111, 115-119": [273, 175], "50-54, 60-66": [183, 181], "14-24, 32-45": [760, 165], "120-137, 84-87, 93-102": [273, 175], "144-145, 149-165, T:0-1": [285, 181]}},
-{"id": "u7ocgm", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"123": [[247, 190], [245, 192], [245, 193], [249, 197], [253, 193], [253, 192], [251, 190], [293, 190], [295, 192], [295, 193], [291, 197], [285, 197], [281, 193], [281, 192], [283, 190]], "142-156": [[235, 184], [233, 186], [233, 187], [237, 191], [241, 187], [241, 186], [239, 184]], "127-136": [[259, 172], [257, 174], [257, 175], [261, 179], [265, 175], [265, 174], [263, 172]], "124-126": [[283, 184], [281, 186], [281, 193], [285, 197], [225, 197], [229, 193], [229, 192], [227, 190], [223, 190], [221, 192], [221, 193], [225, 197], [285, 197], [289, 193], [289, 186], [287, 184]], "102-103": [[295, 178], [293, 180], [293, 181], [297, 185], [299, 183], [299, 178]], "49-83": [[229, 172], [227, 174], [227, 175], [231, 179], [235, 175], [235, 174], [233, 172]], "33-44": [[501, 161], [499, 163], [499, 166], [504, 171], [509, 166], [509, 163], [507, 161]], "12-32": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]], "104-122, 98": [[283, 190], [281, 192], [281, 193], [285, 197], [289, 193], [289, 192], [287, 190]], "158-165, T:0-1": [[295, 178], [293, 180], [293, 181], [297, 185], [299, 183], [299, 179], [298, 178]]}, "center": {"123": [290, 193], "142-156": [237, 187], "127-136": [261, 175], "124-126": [285, 189], "102-103": [297, 181], "49-83": [231, 175], "33-44": [504, 165], "12-32": [792, 165], "104-122, 98": [285, 193], "158-165, T:0-1": [297, 181]}},
+{"id": "u7ocgm", "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": ["argentina", "Republica_Argentina"]}, "path": {"123": [[247, 190], [245, 192], [245, 193], [249, 197], [253, 193], [253, 192], [251, 190], [293, 190], [295, 192], [295, 193], [291, 197], [285, 197], [281, 193], [281, 192], [283, 190]], "142-156": [[235, 184], [233, 186], [233, 187], [237, 191], [241, 187], [241, 186], [239, 184]], "127-136": [[259, 172], [257, 174], [257, 175], [261, 179], [265, 175], [265, 174], [263, 172]], "124-126": [[283, 184], [281, 186], [281, 193], [285, 197], [225, 197], [229, 193], [229, 192], [227, 190], [223, 190], [221, 192], [221, 193], [225, 197], [285, 197], [289, 193], [289, 186], [287, 184]], "102-103": [[295, 178], [293, 180], [293, 181], [297, 185], [299, 183], [299, 178]], "49-83": [[229, 172], [227, 174], [227, 175], [231, 179], [235, 175], [235, 174], [233, 172]], "33-44": [[501, 161], [499, 163], [499, 166], [504, 171], [509, 166], [509, 163], [507, 161]], "12-32": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]], "104-122, 98": [[283, 190], [281, 192], [281, 193], [285, 197], [289, 193], [289, 192], [287, 190]], "158-165, T:0-1": [[295, 178], [293, 180], [293, 181], [297, 185], [299, 183], [299, 179], [298, 178]]}, "center": {"123": [290, 193], "142-156": [237, 187], "127-136": [261, 175], "124-126": [285, 189], "102-103": [297, 181], "49-83": [231, 175], "33-44": [504, 165], "12-32": [792, 165], "104-122, 98": [285, 193], "158-165, T:0-1": [297, 181]}},
{"id": "u7oaiw", "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": {"150-154": [[271, 184], [269, 186], [269, 187], [272, 190], [228, 190], [228, 209], [227, 208], [223, 208], [221, 210], [221, 212], [229, 212], [229, 210], [228, 209], [228, 190], [272, 190], [273, 191], [277, 187], [277, 186], [275, 184]], "12-31": [[317, 161], [315, 163], [315, 166], [320, 171], [325, 166], [325, 163], [323, 161]], "70-71": [[277, 178], [275, 180], [275, 181], [279, 185], [285, 185], [289, 181], [289, 180], [287, 178]], "50-52": [[259, 190], [257, 192], [257, 193], [261, 197], [265, 193], [265, 192], [263, 190], [276, 190], [276, 182], [275, 181], [275, 180], [277, 178], [281, 178], [283, 180], [283, 181], [279, 185], [276, 182], [276, 190]], "45-49, 53-69, 72-91, 95-129": [[277, 178], [275, 180], [275, 181], [279, 185], [283, 181], [283, 180], [281, 178]], "137-149, 155-165, T:0-1": [[223, 208], [221, 210], [221, 212], [229, 212], [229, 210], [227, 208]]}, "center": {"150-154": [273, 187], "12-31": [320, 165], "70-71": [282, 182], "50-52": [279, 181], "45-49, 53-69, 72-91, 95-129": [279, 181], "137-149, 155-165, T:0-1": [225, 210]}},
{"id": "u7o9r1", "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": ["Romania"]}, "path": {"63": [[151, 172], [149, 174], [149, 175], [153, 179], [157, 175], [157, 174], [155, 172], [271, 172], [269, 174], [269, 175], [273, 179], [277, 175], [277, 174], [275, 172]], "91": [[217, 184], [215, 186], [215, 187], [219, 191], [223, 187], [223, 186], [221, 184]], "119": [[253, 190], [251, 192], [251, 193], [255, 197], [259, 193], [259, 192], [257, 190]], "136-139": [[259, 190], [257, 192], [257, 193], [261, 197], [267, 197], [271, 193], [271, 186], [269, 184], [265, 184], [263, 186], [263, 190]], "122-125": [[277, 184], [275, 186], [275, 187], [279, 191], [283, 187], [283, 186], [281, 184]], "104-108": [[289, 172], [287, 174], [287, 175], [291, 179], [295, 175], [295, 174], [293, 172]], "98-103": [[296, 172], [293, 175], [297, 179], [299, 177], [299, 172]], "58-59": [[187, 178], [185, 180], [185, 181], [189, 185], [193, 181], [193, 180], [191, 178]], "56-57": [[271, 172], [269, 174], [269, 175], [272, 178], [187, 178], [185, 180], [185, 181], [189, 185], [193, 181], [193, 180], [191, 178], [272, 178], [273, 179], [277, 175], [277, 174], [275, 172]], "46-49": [[154, 184], [152, 186], [152, 187], [156, 191], [160, 187], [160, 186], [158, 184]], "133-135": [[283, 178], [281, 180], [281, 181], [284, 184], [270, 184], [270, 191], [269, 190], [265, 190], [263, 192], [263, 193], [267, 197], [271, 193], [271, 192], [270, 191], [270, 184], [284, 184], [285, 185], [289, 181], [289, 180], [287, 178]], "152-155": [[218, 172], [218, 176], [220, 178], [223, 175], [223, 174], [221, 172], [220, 173], [219, 172]], "50-55, 61-62, 64-65": [[271, 172], [269, 174], [269, 175], [273, 179], [277, 175], [277, 174], [275, 172]], "110, 145-146": [[259, 190], [257, 192], [257, 193], [261, 197], [265, 193], [265, 192], [263, 190]], "66-71, 75-83": [[199, 172], [197, 174], [197, 175], [201, 179], [205, 175], [205, 174], [203, 172]], "127-132, 94-96": [[265, 190], [263, 192], [263, 193], [267, 197], [271, 193], [271, 192], [269, 190]], "156-165, T:0-1": [[219, 172], [218, 173], [218, 176], [220, 178], [223, 175], [223, 174], [221, 172], [288, 172], [288, 185], [289, 186], [289, 187], [285, 191], [281, 187], [281, 186], [283, 184], [288, 184], [288, 172]]}, "center": {"63": [153, 175], "91": [219, 187], "119": [255, 193], "136-139": [267, 191], "122-125": [279, 187], "104-108": [291, 175], "98-103": [297, 175], "58-59": [189, 181], "56-57": [273, 175], "46-49": [156, 187], "133-135": [285, 181], "152-155": [220, 175], "50-55, 61-62, 64-65": [273, 175], "110, 145-146": [261, 193], "66-71, 75-83": [201, 175], "127-132, 94-96": [267, 193], "156-165, T:0-1": [285, 187]}},
{"id": "u7o8qe", "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": {"50": [[271, 190], [269, 192], [269, 193], [273, 197], [277, 193], [277, 192], [275, 190]], "51": [[229, 184], [227, 186], [227, 187], [231, 191], [235, 187], [235, 186], [233, 184]], "55": [[199, 172], [197, 174], [197, 175], [201, 179], [205, 175], [205, 174], [203, 172]], "70": [[211, 172], [209, 174], [209, 175], [213, 179], [214, 178], [251, 178], [253, 180], [253, 181], [249, 185], [245, 181], [245, 180], [247, 178], [214, 178], [217, 175], [217, 174], [215, 172]], "90": [[247, 172], [245, 174], [245, 175], [249, 179], [253, 175], [253, 174], [251, 172]], "131": [[283, 178], [281, 180], [281, 181], [285, 185], [289, 181], [289, 180], [287, 178]], "138": [[253, 184], [251, 186], [251, 187], [255, 191], [259, 187], [259, 186], [257, 184]], "154": [[265, 184], [263, 186], [263, 187], [267, 191], [271, 187], [271, 186], [269, 184]], "141-144": [[247, 184], [245, 186], [245, 187], [249, 191], [253, 187], [253, 186], [251, 184], [226, 184], [229, 181], [229, 180], [227, 178], [223, 178], [221, 180], [221, 181], [225, 185], [226, 184]], "139-140": [[259, 172], [257, 174], [257, 175], [260, 178], [252, 178], [252, 185], [251, 184], [247, 184], [245, 186], [245, 187], [249, 191], [253, 187], [253, 186], [252, 185], [252, 178], [260, 178], [261, 179], [265, 175], [265, 174], [263, 172]], "111-112": [[283, 184], [281, 186], [281, 187], [285, 191], [291, 191], [295, 187], [295, 186], [293, 184]], "106-107": [[271, 178], [269, 180], [269, 181], [273, 185], [274, 184], [293, 184], [295, 186], [295, 187], [291, 191], [287, 187], [287, 186], [289, 184], [274, 184], [277, 181], [277, 180], [275, 178]], "94-95": [[259, 172], [257, 174], [257, 175], [261, 179], [262, 178], [288, 178], [288, 185], [287, 186], [287, 187], [291, 191], [295, 187], [295, 186], [293, 184], [288, 184], [288, 178], [262, 178], [265, 175], [265, 174], [263, 172]], "87-89": [[247, 172], [245, 174], [245, 175], [248, 178], [228, 178], [228, 196], [220, 196], [218, 198], [218, 199], [222, 203], [226, 199], [226, 198], [224, 196], [228, 196], [228, 178], [248, 178], [249, 179], [253, 175], [253, 174], [251, 172]], "84-86": [[247, 178], [245, 180], [245, 181], [248, 184], [228, 184], [228, 196], [220, 196], [218, 198], [218, 199], [222, 203], [226, 199], [226, 198], [224, 196], [228, 196], [228, 184], [248, 184], [249, 185], [253, 181], [253, 180], [251, 178]], "80-82": [[220, 196], [218, 198], [218, 199], [222, 203], [226, 199], [226, 198], [224, 196]], "68-69": [[247, 178], [245, 180], [245, 181], [249, 185], [255, 185], [259, 181], [259, 180], [257, 178]], "64-67": [[247, 178], [245, 180], [245, 181], [249, 185], [253, 181], [253, 180], [251, 178]], "56-62": [[235, 190], [233, 192], [233, 193], [237, 197], [241, 193], [241, 192], [239, 190]], "45-47": [[271, 178], [269, 180], [269, 181], [273, 185], [277, 181], [277, 180], [275, 178]], "92-93": [[259, 172], [257, 174], [257, 175], [260, 178], [234, 178], [234, 191], [233, 190], [229, 190], [227, 192], [227, 193], [231, 197], [235, 193], [235, 192], [234, 191], [234, 178], [260, 178], [261, 179], [262, 178], [288, 178], [288, 185], [287, 186], [287, 187], [291, 191], [295, 187], [295, 186], [293, 184], [288, 184], [288, 178], [262, 178], [265, 175], [265, 174], [263, 172]], "54, 71-73": [[211, 172], [209, 174], [209, 175], [213, 179], [217, 175], [217, 174], [215, 172]], "146-148, 48": [[289, 178], [287, 180], [287, 181], [291, 185], [295, 181], [295, 180], [293, 178]], "108-110, 114-117, 96-105": [[289, 184], [287, 186], [287, 187], [291, 191], [295, 187], [295, 186], [293, 184]], "158-165, T:0-1": [[218, 203], [218, 209], [219, 209], [223, 205], [223, 204], [221, 202], [220, 202], [219, 203]]}, "center": {"50": [273, 193], "51": [231, 187], "55": [201, 175], "70": [249, 181], "90": [249, 175], "131": [285, 181], "138": [255, 187], "154": [267, 187], "141-144": [249, 187], "139-140": [249, 187], "111-112": [288, 188], "106-107": [291, 187], "94-95": [291, 187], "87-89": [222, 199], "84-86": [249, 181], "80-82": [222, 199], "68-69": [252, 182], "64-67": [249, 181], "56-62": [237, 193], "45-47": [273, 181], "92-93": [290, 187], "54, 71-73": [213, 175], "146-148, 48": [291, 181], "108-110, 114-117, 96-105": [291, 187], "158-165, T:0-1": [220, 205]}},
@@ -7185,8 +7161,8 @@
{"id": "u7lcpc", "name": "Elfstones", "description": "Magic stones that are central to the plot of The Elfstones of Shannara.", "links": {"website": ["https://shannara.fandom.com/wiki/Elfstones"], "subreddit": ["SFFA"]}, "path": {"109-165, T:0-1": [[1683, 1392], [1683, 1395], [1684, 1395], [1684, 1399], [1687, 1399], [1687, 1396], [1689, 1396], [1689, 1393], [1686, 1393], [1686, 1392]]}, "center": {"109-165, T:0-1": [1686, 1395]}},
{"id": "u7kvfx", "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": {"124-154": [[1696, 474], [1696, 487], [1698, 487], [1700, 489], [1700, 493], [1698, 495], [1690, 495], [1690, 519], [1691, 520], [1691, 528], [1688, 531], [1691, 534], [1694, 534], [1694, 538], [1692, 540], [1690, 540], [1690, 542], [1695, 551], [1695, 559], [1690, 566], [1690, 569], [1700, 569], [1700, 558], [1697, 554], [1697, 548], [1694, 544], [1694, 534], [1697, 532], [1703, 532], [1703, 474]], "82-112": [[1696, 474], [1696, 487], [1698, 487], [1700, 489], [1700, 493], [1698, 495], [1690, 495], [1690, 518], [1692, 521], [1692, 526], [1689, 530], [1689, 532], [1691, 534], [1693, 534], [1695, 536], [1695, 537], [1692, 540], [1690, 540], [1690, 542], [1695, 551], [1695, 559], [1690, 566], [1690, 569], [1703, 569], [1703, 474]], "56-72": [[1690, 466], [1690, 487], [1698, 487], [1700, 489], [1700, 493], [1698, 495], [1690, 495], [1690, 533], [1694, 536], [1694, 538], [1692, 540], [1690, 540], [1690, 543], [1694, 551], [1694, 568], [1690, 568], [1690, 618], [1703, 618], [1703, 466]], "155-166, T:0-1": [[1696, 474], [1696, 487], [1698, 487], [1700, 489], [1700, 494], [1698, 495], [1690, 495], [1690, 512], [1692, 512], [1692, 526], [1693, 527], [1693, 534], [1694, 535], [1694, 544], [1692, 546], [1695, 549], [1695, 552], [1703, 552], [1703, 474]]}, "center": {"124-154": [1697, 504], "82-112": [1697, 502], "56-72": [1697, 525], "155-166, T:0-1": [1697, 515]}},
{"id": "u7ks6n", "name": "Atlanta Braves", "description": "The Atlanta Braves are a professional baseball team in Major League Baseball, the highest league for baseball in the United States and arguably the top league in the world for the sport. This piece celebrates their unprecedented run to a world series title despite the losses of star players to injury such as pitcher Mike Soroka and outfielder Ronald Acuña Jr. throughout the season. They defeated the Milwaukee Brewers in the National League Division Series and the reigning champion Los Angeles Dodgers in the National League Championship Series, then defeated the Houston Astros 4-2 in the World Series to claim their first league title in 26 years and fourth World Series title overall. The piece also displays the jersey number 44 for Braves legend Hank Aaron, who tragically passed away earlier in 2021.", "links": {"website": ["https://www.mlb.com/braves", "https://en.wikipedia.org/wiki/Atlanta_Braves"], "subreddit": ["Braves"]}, "path": {"2-103": [[52, 436], [52, 467], [85, 467], [85, 442], [77, 442], [75, 440], [75, 436]], "104-165, T:0-1": [[52, 436], [52, 467], [85, 467], [85, 436]]}, "center": {"2-103": [67, 452], "104-165, T:0-1": [69, 452]}},
-{"id": "u7kmx2", "name": "Pattern", "description": "Shallan's spren from the Stormlight Archive series.", "links": {"website": ["https://coppermind.net/wiki/Pattern"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1842, 887], [1840, 889], [1841, 890], [1840, 891], [1842, 893], [1843, 892], [1844, 893], [1846, 891], [1845, 890], [1846, 889], [1844, 887], [1843, 888]]}, "center": {"56-166, T:0-1": [1843, 890]}},
-{"id": "u7klun", "name": "Sylphrena", "description": "Kaladin's spren in the Stormlight Archive series.", "links": {"website": ["https://coppermind.net/wiki/Sylphrena"], "subreddit": ["Stormlight_Archive", "Cosmere", "SFFA"]}, "path": {"56-166, T:0-1": [[1857, 888], [1855, 890], [1856, 891], [1855, 892], [1856, 893], [1859, 890]]}, "center": {"56-166, T:0-1": [1857, 890]}},
+{"id": "u7kmx2", "name": "Pattern", "description": "Pattern is the spren of main character Shallan from the book series The Stormlight Archive.", "links": {"website": ["https://coppermind.net/wiki/Pattern"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"104-166, T:0-1": [[1842, 887], [1840, 889], [1841, 890], [1840, 891], [1842, 893], [1843, 892], [1844, 893], [1846, 891], [1845, 890], [1846, 889], [1844, 887], [1843, 888]]}, "center": {"104-166, T:0-1": [1843, 890]}},
+{"id": "u7klun", "name": "Sylphrena", "description": "Sylphrena is the spren of main character Kaladin in the book series The Stormlight Archive.", "links": {"website": ["https://coppermind.net/wiki/Sylphrena"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"104-166, T:0-1": [[1857, 888], [1855, 890], [1856, 891], [1855, 892], [1856, 893], [1859, 890]]}, "center": {"104-166, T:0-1": [1857, 890]}},
{"id": "u7k3da", "name": "Free Derry Corner", "description": "Free Derry was a self-declared autonomous area of Derry, Northern Ireland, United Kingdom during the Troubles, a conflict between Ireland and the United Kingdom. The area was established by Irish residents of Derry in opposition to Northern Ireland's police force, the Royal Ulster Constabulary (RUC).\n\nThe words \"Free Derry\" are drawn on a house wall. This alludes to the Free Derry Corner, where a Free Derry activist painted graffiti on a house with the words \"You are now entering Free Derry\". The house was later demolished, but the wall remains as a landmark and has been repainted with professional lettering.", "links": {"website": ["https://en.wikipedia.org/wiki/Free_Derry", "https://en.wikipedia.org/wiki/Free_Derry_Corner"], "subreddit": ["ireland"]}, "path": {"161-166, T:0-1": [[1288, 83], [1277, 94], [1277, 106], [1301, 106], [1301, 94], [1290, 83]]}, "center": {"161-166, T:0-1": [1289, 96]}},
{"id": "u7juhe", "name": "Ireland-Indonesia heart", "description": "A heart depicting the flags of Ireland and Indonesia.", "links": {"website": ["https://en.wikipedia.org/wiki/Republic_of_Ireland", "https://en.wikipedia.org/wiki/Indonesia"], "subreddit": ["PlaceIreland", "ireland", "indonesia"]}, "path": {"24-165, T:0-1": [[140, 783], [137, 786], [137, 788], [143, 794], [149, 788], [149, 786], [146, 783], [145, 783], [144, 784], [141, 783]]}, "center": {"24-165, T:0-1": [143, 788]}},
{"id": "u7jsrb", "name": "Flag of Cornwall", "description": "Cornwall is a county in the southwestern tip of England, United Kingdom. The flag of Cornwall is known as St. Piran's flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Cornwall", "https://en.wikipedia.org/wiki/Saint_Piran%27s_Flag"], "subreddit": ["Cornwall", "PlaceIreland", "ireland"]}, "path": {"97-165, T:0-1": [[145, 725], [145, 731], [153, 731], [153, 725]]}, "center": {"97-165, T:0-1": [149, 728]}},
@@ -7276,43 +7252,39 @@
{"id": "u8vh92", "name": "Peru car", "description": "A car depicting the flag of Peru, a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Peru"], "subreddit": ["PERU", "fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"160-165, T:0-1": [[1059, 735], [1063, 735], [1063, 733], [1059, 733]]}, "center": {"160-165, T:0-1": [1061, 734]}},
{"id": "u8t5kj", "name": "Most SNP", "description": "Most SNP, also known as Most Slovenského národného povstania or the UFO Bridge, is a road bridge over the Danube river in Bratislava, the capital of Slovakia. The bridge was named Nový most (New Bridge) from 1993 to 2012.", "links": {"website": ["https://en.wikipedia.org/wiki/Most_SNP"], "subreddit": ["Slovakia"]}, "path": {"50-166, T:0-1": [[363, 884], [363, 885], [365, 887], [381, 887], [381, 888], [390, 888], [390, 887], [397, 887], [397, 880], [393, 876], [393, 874], [396, 871], [393, 868], [391, 868], [390, 867], [389, 868], [387, 868], [384, 871], [387, 874], [387, 876], [384, 876], [370, 884]]}, "center": {"50-166, T:0-1": [386, 882]}},
{"id": "u8szg6", "name": "Bratislava Castle", "description": "Bratislava Castle (Slovak: Bratislavský Hrad) is the main castle of Bratislava, the capital of Slovakia.", "links": {"website": ["http://www.bratislava-hrad.sk", "https://en.wikipedia.org/wiki/Bratislava_Castle"], "subreddit": ["Slovakia"]}, "path": {"44-166, T:0-1": [[398, 874], [396, 876], [396, 888], [416, 888], [416, 876], [414, 874], [412, 876], [412, 878], [410, 878], [410, 875], [408, 873], [406, 875], [404, 875], [403, 874], [402, 875], [399, 875]]}, "center": {"44-166, T:0-1": [403, 882]}},
-{"id": "u8spwy", "name": "Woozi", "description": "A bowl of rice representing member Woozi of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/Woozi"], "subreddit": ["seventeen"]}, "path": {"56-166, T:0-1": [[1710, 892], [1708, 894], [1708, 895], [1710, 897], [1712, 897], [1714, 895], [1714, 894], [1712, 892]]}, "center": {"56-166, T:0-1": [1711, 895]}},
-{"id": "u8spa1", "name": "Hoshi", "description": "A tiger representing member Hoshi of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/Hoshi"], "subreddit": ["seventeen"]}, "path": {"56-166, T:0-1": [[1704, 892], [1702, 894], [1702, 897], [1708, 897], [1708, 894], [1706, 892]]}, "center": {"56-166, T:0-1": [1705, 895]}},
-{"id": "u8somb", "name": "S.Coups", "description": "A cherry representing member S.Coups of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/S.COUPS"], "subreddit": ["seventeen"]}, "path": {"56-166, T:0-1": [[1698, 892], [1697, 893], [1697, 894], [1696, 895], [1696, 897], [1702, 897], [1701, 894], [1701, 893], [1700, 892]]}, "center": {"56-166, T:0-1": [1699, 895]}},
-{"id": "u8sm64", "name": "Caratbong", "description": "Official light stick of K-pop group SEVENTEEN.", "links": {"subreddit": ["seventeen"]}, "path": {"56-165, T:0-1": [[1716, 887], [1714, 889], [1714, 890], [1716, 892], [1718, 890], [1718, 889]]}, "center": {"56-165, T:0-1": [1716, 890]}},
-{"id": "u8sln2", "name": "SEVENTEEN logo", "description": "Logo of K-pop group SEVENTEEN, drawn in fandom colors (rose quartz and serenity).", "links": {"website": ["https://twitter.com/pledis_17"], "subreddit": ["seventeen"]}, "path": {"56-166, T:0-1": [[1708, 880], [1708, 882], [1712, 889], [1713, 890], [1714, 889], [1718, 881], [1718, 880]]}, "center": {"56-166, T:0-1": [1713, 884]}},
-{"id": "u8sin6", "name": "Daewang", "description": "A bunny representing Daewang, a member of K-pop group Pink Fantasy. Daewang never shows her face, and is always seen wearing a bunny mask.", "links": {"website": ["https://kpop.fandom.com/wiki/Daewang"]}, "path": {"56-166, T:0-1": [[1689, 891], [1689, 898], [1696, 898], [1696, 891], [1693, 891], [1693, 893], [1692, 893], [1692, 891]]}, "center": {"56-166, T:0-1": [1693, 895]}},
-{"id": "u8shaz", "name": "Pink Fantasy logo", "description": "The logo of K-pop group Pink Fantasy, consisting of two keys crossing over each other.", "links": {"website": ["https://en.wikipedia.org/wiki/Pink_Fantasy"]}, "path": {"56-166, T:0-1": [[1682, 890], [1680, 892], [1680, 893], [1682, 895], [1681, 896], [1683, 898], [1685, 896], [1687, 898], [1689, 896], [1688, 895], [1690, 893], [1690, 892], [1688, 890], [1687, 890], [1685, 892], [1683, 890]]}, "center": {"56-166, T:0-1": [1685, 894]}},
-{"id": "u8sg8x", "name": "(G)I-DLE logo", "description": "Logo of K-pop group (G)I-DLE.", "links": {"website": ["https://en.wikipedia.org/wiki/(G)I-dle"], "subreddit": ["GIDLE"]}, "path": {"56-166, T:0-1": [[1671, 870], [1671, 878], [1685, 878], [1685, 870]]}, "center": {"56-166, T:0-1": [1678, 874]}},
-{"id": "u8sdvr", "name": "(G)I-DLE light stick", "description": "Official light stick of K-pop group (G)I-DLE.", "links": {"subreddit": ["GIDLE"]}, "path": {"56-166, T:0-1": [[1689, 869], [1686, 872], [1686, 874], [1688, 876], [1688, 879], [1692, 879], [1692, 876], [1694, 874], [1694, 872], [1691, 869]]}, "center": {"56-166, T:0-1": [1690, 874]}},
-{"id": "u8sa3z", "name": "Yeri", "description": "The color of Yeri, member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Yeri_(singer)"], "subreddit": ["red_velvet"]}, "path": {"56-166, T:0-1": [[1643, 901], [1643, 903], [1646, 903], [1646, 901]]}, "center": {"56-166, T:0-1": [1645, 902]}},
-{"id": "u8s9mn", "name": "Joy", "description": "The color of Joy, member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Joy_(singer)"], "subreddit": ["red_velvet"]}, "path": {"56-166, T:0-1": [[1643, 900], [1643, 902], [1646, 902], [1646, 900]]}, "center": {"56-166, T:0-1": [1645, 901]}},
-{"id": "u8s965", "name": "Wendy", "description": "The color of Wendy, member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Wendy_(singer)"], "subreddit": ["red_velvet"]}, "path": {"56-165, T:0-1": [[1643, 899], [1643, 901], [1646, 901], [1646, 899]]}, "center": {"56-165, T:0-1": [1645, 900]}},
-{"id": "u8s8go", "name": "Seulgi", "description": "The color of Seulgi, member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Seulgi_(singer)"], "subreddit": ["red_velvet"]}, "path": {"56-165, T:0-1": [[1643, 898], [1643, 900], [1646, 900], [1646, 898]]}, "center": {"56-165, T:0-1": [1645, 899]}},
-{"id": "u8s7xh", "name": "Irene", "description": "The color of Irene, member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Irene_(singer)"], "subreddit": ["red_velvet"]}, "path": {"56-166, T:0-1": [[1643, 897], [1643, 899], [1646, 899], [1646, 897]]}, "center": {"56-166, T:0-1": [1645, 898]}},
-{"id": "u8s1ny", "name": "TWICE logo", "description": "Logo of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Twice"], "subreddit": ["twice"]}, "path": {"56-165, T:0-1": [[1566, 873], [1557, 882], [1557, 889], [1560, 892], [1564, 888], [1563, 887], [1563, 886], [1562, 885], [1562, 883], [1563, 882], [1563, 881], [1564, 881], [1565, 880], [1568, 880], [1567, 881], [1565, 885], [1565, 887], [1564, 888], [1564, 890], [1565, 891], [1565, 893], [1566, 894], [1566, 895], [1569, 898], [1573, 898], [1574, 897], [1575, 898], [1579, 898], [1585, 892], [1585, 890], [1586, 889], [1586, 887], [1588, 885], [1588, 883], [1586, 881], [1584, 881], [1583, 882], [1582, 881], [1580, 881], [1578, 883], [1578, 886], [1576, 884], [1575, 884], [1572, 887], [1572, 885], [1573, 884], [1573, 883], [1574, 882], [1574, 881], [1575, 880], [1579, 880], [1584, 875], [1584, 869], [1582, 869], [1581, 870], [1580, 870], [1579, 871], [1578, 871], [1577, 872], [1575, 872], [1574, 873]]}, "center": {"56-165, T:0-1": [1573, 885]}},
-{"id": "u8s0ab", "name": "Candy Bong Z", "description": "The lollipop-shaped official light stick of K-pop group TWICE.", "links": {"subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1561, 891], [1561, 895], [1562, 895], [1562, 898], [1564, 898], [1564, 895], [1565, 895], [1565, 891]]}, "center": {"56-166, T:0-1": [1563, 894]}},
-{"id": "u8ryvl", "name": "Tzuyu", "description": "The color of Tsuyu, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Tzuyu"], "subreddit": ["twice"]}, "path": {"56-165, T:0-1": [[1528, 873], [1528, 875], [1530, 875], [1530, 873]]}, "center": {"56-165, T:0-1": [1529, 874]}},
-{"id": "u8ryij", "name": "Chaeyoung", "description": "The color of Chaeyoung, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Chaeyoung"], "subreddit": ["twice"]}, "path": {"56-165, T:0-1": [[1527, 873], [1527, 875], [1529, 875], [1529, 873]]}, "center": {"56-165, T:0-1": [1528, 874]}},
-{"id": "u8ry5y", "name": "Dahyun", "description": "The color of Dahyun, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Dahyun"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1526, 873], [1526, 875], [1528, 875], [1528, 873]]}, "center": {"56-166, T:0-1": [1527, 874]}},
-{"id": "u8rxsl", "name": "Mina", "description": "The color of Mina, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Mina_(Japanese_singer)"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1528, 872], [1528, 874], [1530, 874], [1530, 872]]}, "center": {"56-166, T:0-1": [1529, 873]}},
-{"id": "u8rxea", "name": "Jihyo", "description": "The color of Jihyo, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Jihyo"], "subreddit": ["twice"]}, "path": {"56-165, T:0-1": [[1527, 872], [1527, 874], [1529, 874], [1529, 872]]}, "center": {"56-165, T:0-1": [1528, 873]}},
-{"id": "u8rx02", "name": "Sana", "description": "The color of Sana, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Sana_(singer)"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1526, 872], [1526, 874], [1528, 874], [1528, 872]]}, "center": {"56-166, T:0-1": [1527, 873]}},
-{"id": "u8rwln", "name": "Momo", "description": "The color of Momo, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Momo_Hirai"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1528, 871], [1528, 873], [1530, 873], [1530, 871]]}, "center": {"56-166, T:0-1": [1529, 872]}},
-{"id": "u8rw3v", "name": "Jeongyeon", "description": "The color of Jeongyeon, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Jeongyeon"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1527, 871], [1527, 873], [1529, 873], [1529, 871]]}, "center": {"56-166, T:0-1": [1528, 872]}},
-{"id": "u8rvbu", "name": "Nayeon", "description": "The color of Nayeon, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Nayeon"], "subreddit": ["twice"]}, "path": {"56-166, T:0-1": [[1526, 871], [1526, 873], [1528, 873], [1528, 871]]}, "center": {"56-166, T:0-1": [1527, 872]}},
+{"id": "u8spwy", "name": "Woozi", "description": "A bowl of rice representing member Woozi of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/Woozi"], "subreddit": ["seventeen", "kpop"]}, "path": {"130-134": [[1709, 892], [1707, 894], [1707, 895], [1709, 897], [1711, 897], [1713, 895], [1713, 894], [1711, 892]], "135-166, T:0-1": [[1710, 892], [1708, 894], [1708, 895], [1710, 897], [1712, 897], [1714, 895], [1714, 894], [1712, 892]]}, "center": {"130-134": [1710, 895], "135-166, T:0-1": [1711, 895]}},
+{"id": "u8spa1", "name": "Hoshi", "description": "A tiger representing member Hoshi of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/Hoshi"], "subreddit": ["seventeen", "kpop"]}, "path": {"130-134": [[1703, 892], [1701, 894], [1701, 897], [1707, 897], [1707, 894], [1705, 892]], "135-166, T:0-1": [[1704, 892], [1702, 894], [1702, 897], [1708, 897], [1708, 894], [1706, 892]]}, "center": {"130-134": [1704, 895], "135-166, T:0-1": [1705, 895]}},
+{"id": "u8somb", "name": "S.Coups", "description": "A cherry representing S.Coups, a member of K-pop group SEVENTEEN.", "links": {"website": ["https://carat.fandom.com/wiki/S.COUPS"], "subreddit": ["seventeen"]}, "path": {"129-166, T:0-1": [[1698, 892], [1697, 893], [1697, 894], [1696, 895], [1696, 897], [1702, 897], [1701, 894], [1701, 893], [1700, 892]]}, "center": {"129-166, T:0-1": [1699, 895]}},
+{"id": "u8sm64", "name": "Caratbong", "description": "Official light stick of K-pop group SEVENTEEN.", "links": {"subreddit": ["seventeen", "kpop"]}, "path": {"155-165, T:0-1": [[1716, 887], [1714, 889], [1714, 890], [1716, 892], [1718, 890], [1718, 889]]}, "center": {"155-165, T:0-1": [1716, 890]}},
+{"id": "u8sin6", "name": "Daewang", "description": "A bunny representing Daewang, a member of K-pop group Pink Fantasy. Daewang never shows her face, and is always seen wearing a bunny mask.", "links": {"website": ["https://kpop.fandom.com/wiki/Daewang"]}, "path": {"135-166, T:0-1": [[1689, 891], [1689, 898], [1696, 898], [1696, 891], [1693, 891], [1693, 893], [1692, 893], [1692, 891]]}, "center": {"135-166, T:0-1": [1692, 895]}},
+{"id": "u8sdvr", "name": "(G)I-DLE light stick", "description": "Official light stick of K-pop group (G)I-DLE.", "links": {"subreddit": ["GIDLE", "kpop"]}, "path": {"128-134": [[1689, 868], [1686, 870], [1686, 873], [1688, 875], [1688, 879], [1692, 879], [1692, 875], [1694, 873], [1694, 871], [1691, 868]], "135-166, T:0-1": [[1689, 869], [1686, 872], [1686, 874], [1688, 876], [1688, 879], [1692, 879], [1692, 876], [1694, 874], [1694, 872], [1691, 869]]}, "center": {"128-134": [1690, 872], "135-166, T:0-1": [1690, 873]}},
+{"id": "u8sa3z", "name": "Yeri", "description": "The color of Yeri, a member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Yeri_(singer)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"78-166, T:0-1": [[1643, 901], [1643, 903], [1646, 903], [1646, 901]]}, "center": {"78-166, T:0-1": [1645, 902]}},
+{"id": "u8s9mn", "name": "Joy", "description": "The color of Joy, a member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Joy_(singer)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"78-166, T:0-1": [[1643, 900], [1643, 902], [1646, 902], [1646, 900]]}, "center": {"78-166, T:0-1": [1645, 901]}},
+{"id": "u8s965", "name": "Wendy", "description": "The color of Wendy, a member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Wendy_(singer)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"78-165, T:0-1": [[1643, 899], [1643, 901], [1646, 901], [1646, 899]]}, "center": {"78-165, T:0-1": [1645, 900]}},
+{"id": "u8s8go", "name": "Seulgi", "description": "The color of Seulgi, a member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Seulgi_(singer)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"78-165, T:0-1": [[1643, 898], [1643, 900], [1646, 900], [1646, 898]]}, "center": {"78-165, T:0-1": [1645, 899]}},
+{"id": "u8s7xh", "name": "Irene", "description": "The color of Irene, a member of K-pop group Red Velvet.", "links": {"website": ["https://en.wikipedia.org/wiki/Irene_(singer)"], "subreddit": ["red_velvet", "kpop"]}, "path": {"78-166, T:0-1": [[1643, 897], [1643, 899], [1646, 899], [1646, 897]]}, "center": {"78-166, T:0-1": [1645, 898]}},
+{"id": "u8s0ab", "name": "Candy Bong Z", "description": "The lollipop-shaped official light stick of K-pop group TWICE.", "links": {"subreddit": ["twice", "kpop"]}, "path": {"105-166, T:0-1": [[1561, 891], [1561, 895], [1562, 895], [1562, 898], [1564, 898], [1564, 895], [1565, 895], [1565, 891]]}, "center": {"105-166, T:0-1": [1563, 893]}},
+{"id": "u8ryvl", "name": "Tzuyu", "description": "The color of Tsuyu, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Tzuyu"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1532, 873], [1532, 875], [1534, 875], [1534, 873]], "65-165, T:0-1": [[1528, 873], [1528, 875], [1530, 875], [1530, 873]]}, "center": {"64": [1533, 874], "65-165, T:0-1": [1529, 874]}},
+{"id": "u8ryij", "name": "Chaeyoung", "description": "The color of Chaeyoung, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Chaeyoung"], "subreddit": ["twice"]}, "path": {"64": [[1531, 873], [1531, 875], [1533, 875], [1533, 873]], "65-165, T:0-1": [[1527, 873], [1527, 875], [1529, 875], [1529, 873]]}, "center": {"64": [1532, 874], "65-165, T:0-1": [1528, 874]}},
+{"id": "u8ry5y", "name": "Dahyun", "description": "The color of Dahyun, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Dahyun"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1530, 873], [1530, 875], [1532, 875], [1532, 873]], "65-166, T:0-1": [[1526, 873], [1526, 875], [1528, 875], [1528, 873]]}, "center": {"64": [1531, 874], "65-166, T:0-1": [1527, 874]}},
+{"id": "u8rxsl", "name": "Mina", "description": "The color of Mina, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Mina_(Japanese_singer)"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1532, 872], [1532, 874], [1534, 874], [1534, 872]], "65-166, T:0-1": [[1528, 872], [1528, 874], [1530, 874], [1530, 872]]}, "center": {"64": [1533, 873], "65-166, T:0-1": [1529, 873]}},
+{"id": "u8rxea", "name": "Jihyo", "description": "The color of Jihyo, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Jihyo"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1531, 872], [1531, 874], [1533, 874], [1533, 872]], "65-165, T:0-1": [[1527, 872], [1527, 874], [1529, 874], [1529, 872]]}, "center": {"64": [1532, 873], "65-165, T:0-1": [1528, 873]}},
+{"id": "u8rx02", "name": "Sana", "description": "The color of Sana, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Sana_(singer)"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1530, 872], [1530, 874], [1532, 874], [1532, 872]], "65-166, T:0-1": [[1526, 872], [1526, 874], [1528, 874], [1528, 872]]}, "center": {"64": [1531, 873], "65-166, T:0-1": [1527, 873]}},
+{"id": "u8rwln", "name": "Momo", "description": "The color of Momo, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Momo_Hirai"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1532, 871], [1532, 873], [1534, 873], [1534, 871]], "65-166, T:0-1": [[1528, 871], [1528, 873], [1530, 873], [1530, 871]]}, "center": {"64": [1533, 872], "65-166, T:0-1": [1529, 872]}},
+{"id": "u8rw3v", "name": "Jeongyeon", "description": "The color of Jeongyeon, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Jeongyeon"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1531, 871], [1531, 873], [1533, 873], [1533, 871]], "65-166, T:0-1": [[1527, 871], [1527, 873], [1529, 873], [1529, 871]]}, "center": {"64": [1532, 872], "65-166, T:0-1": [1528, 872]}},
+{"id": "u8rvbu", "name": "Nayeon", "description": "The color of Nayeon, a member of K-pop group TWICE.", "links": {"website": ["https://en.wikipedia.org/wiki/Nayeon"], "subreddit": ["twice", "kpop"]}, "path": {"64": [[1530, 871], [1530, 873], [1532, 873], [1532, 871]], "65-166, T:0-1": [[1526, 871], [1526, 873], [1528, 873], [1528, 871]]}, "center": {"64": [1531, 872], "65-166, T:0-1": [1527, 872]}},
{"id": "u8h0q7", "name": "senzawa-Shantae heart", "description": "A heart with the colors of senzawa and Shantae.", "links": {"website": ["https://www.youtube.com/c/senzawa", "https://en.wikipedia.org/wiki/Shantae"], "subreddit": ["Senzawa", "Shantae"]}, "path": {"102-166, T:0-1": [[1856, 789], [1854, 791], [1854, 792], [1858, 796], [1862, 792], [1862, 791], [1860, 789]]}, "center": {"102-166, T:0-1": [1858, 792]}},
-{"id": "u8gwoo", "name": "Rem", "description": "A main character in Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Rem"], "subreddit": ["Re_Zero"]}, "path": {"56-166, T:0-1": [[1885, 808], [1885, 813], [1886, 814], [1886, 817], [1882, 817], [1881, 818], [1878, 818], [1878, 820], [1895, 820], [1895, 817], [1898, 814], [1898, 810], [1897, 809], [1897, 808], [1895, 806], [1894, 806], [1893, 805], [1889, 805], [1888, 806], [1887, 806]]}, "center": {"56-166, T:0-1": [1890, 813]}},
-{"id": "u8gvqd", "name": "Ram", "description": "A main character in Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Ram"], "subreddit": ["Re_Zero"]}, "path": {"56-166, T:0-1": [[1881, 805], [1880, 806], [1879, 806], [1875, 810], [1875, 814], [1878, 817], [1878, 818], [1877, 819], [1878, 820], [1893, 820], [1893, 817], [1886, 817], [1886, 807], [1884, 805]]}, "center": {"56-166, T:0-1": [1882, 813]}},
-{"id": "u8guh0", "name": "Emilia", "description": "A main character from Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Emilia"], "subreddit": ["Re_Zero"]}, "path": {"56-166, T:0-1": [[1867, 805], [1867, 817], [1870, 820], [1873, 817], [1873, 816], [1875, 814], [1875, 811], [1874, 810], [1874, 809], [1873, 808], [1874, 807], [1872, 805]]}, "center": {"56-166, T:0-1": [1870, 812]}},
+{"id": "u8gwoo", "name": "Rem", "description": "Rem is a main character in the light novel Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Rem"], "subreddit": ["Re_Zero", "ReZero"]}, "path": {"75-121": [[1889, 805], [1886, 808], [1886, 817], [1880, 817], [1880, 818], [1882, 820], [1892, 820], [1898, 814], [1898, 811], [1894, 806], [1892, 805]], "57-74": [[1889, 805], [1886, 808], [1886, 816], [1888, 818], [1892, 818], [1895, 816], [1898, 813], [1898, 809], [1894, 805]], "122-166, T:0-1": [[1885, 808], [1885, 813], [1886, 814], [1886, 817], [1882, 817], [1881, 818], [1878, 818], [1878, 820], [1895, 820], [1895, 817], [1898, 814], [1898, 810], [1897, 809], [1897, 808], [1895, 806], [1894, 806], [1893, 805], [1889, 805], [1888, 806], [1887, 806]]}, "center": {"75-121": [1892, 812], "57-74": [1892, 811], "122-166, T:0-1": [1892, 812]}},
+{"id": "u8gvqd", "name": "Ram", "description": "Ram is a main character in the Light Novel Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Ram"], "subreddit": ["Re_Zero", "ReZero"]}, "path": {"75-121": [[1882, 805], [1878, 808], [1876, 811], [1876, 814], [1882, 820], [1892, 820], [1895, 817], [1895, 816], [1887, 816], [1887, 807], [1885, 805]], "57-74": [[1882, 805], [1879, 807], [1876, 811], [1876, 814], [1880, 818], [1887, 818], [1887, 807], [1885, 805]], "122-166, T:0-1": [[1881, 805], [1880, 806], [1879, 806], [1875, 810], [1875, 814], [1878, 817], [1878, 818], [1877, 819], [1878, 820], [1893, 820], [1893, 817], [1886, 817], [1886, 807], [1884, 805]]}, "center": {"75-121": [1882, 812], "57-74": [1882, 812], "122-166, T:0-1": [1881, 812]}},
+{"id": "u8guh0", "name": "Emilia", "description": "Emilia is a main character in the light novel Re:Zero.", "links": {"website": ["https://rezero.fandom.com/wiki/Emilia"], "subreddit": ["Re_Zero", "ReZero"]}, "path": {"65-166, T:0-1": [[1867, 805], [1867, 817], [1870, 820], [1873, 817], [1873, 816], [1875, 814], [1875, 811], [1874, 810], [1874, 809], [1873, 808], [1874, 807], [1872, 805]]}, "center": {"65-166, T:0-1": [1871, 813]}},
{"id": "u8gp1t", "name": ".tn", "description": "The top-level domain of Tunisian websites.", "links": {"website": ["https://en.wikipedia.org/wiki/.tn"], "subreddit": ["Tunisia"]}, "path": {"56-166, T:0-1": [[1899, 800], [1899, 806], [1909, 806], [1909, 800]]}, "center": {"56-166, T:0-1": [1904, 803]}},
-{"id": "u8goaz", "name": "bunny", "description": "a bunny that refers to the sold friendship between r/tunisia and re:zero, both of those are allaies", "links": {"subreddit": ["Re_Zero"]}, "path": {"164": [[1900, 823], [1900, 831], [1903, 826], [1897, 829], [1898, 825], [1903, 825], [1899, 830], [1903, 827], [1901, 826]]}, "center": {"164": [1899, 827]}},
-{"id": "u8gnr2", "name": "Camel", "description": "Camels have been used as transportation in Tunisia since ancient times.", "links": {"website": ["https://en.wikipedia.org/wiki/Camel"], "subreddit": ["Tunisia"]}, "path": {"56-166, T:0-1": [[1880, 822], [1875, 827], [1877, 829], [1877, 831], [1883, 831], [1883, 827], [1884, 826], [1884, 825], [1886, 825], [1886, 824], [1883, 821], [1882, 822], [1882, 824]]}, "center": {"56-166, T:0-1": [1880, 827]}},
+{"id": "u8goaz", "name": "Bunny", "description": "This bunny symbolizes the solid friendship and alliance between r/Tunisia and Re:Zero.", "links": {"website": ["https://en.wikipedia.org/wiki/Rabbit"], "subreddit": ["Tunisia", "Re_Zero", "ReZero"]}, "path": {"149-163": [[1896, 825], [1896, 828], [1898, 829], [1902, 829], [1902, 827], [1903, 827], [1903, 824], [1901, 824], [1900, 823], [1899, 824], [1900, 825]]}, "center": {"149-163": [1900, 827]}},
+{"id": "u8gnr2", "name": "Camel", "description": "Camels have been used as transportation in Tunisia since ancient times.", "links": {"website": ["https://en.wikipedia.org/wiki/Camel"], "subreddit": ["Tunisia"]}, "path": {"146-152": [[1880, 822], [1876, 826], [1876, 828], [1877, 828], [1877, 830], [1883, 830], [1883, 828], [1884, 828], [1884, 825], [1886, 825], [1886, 824], [1884, 822]], "153-166, T:0-1": [[1880, 822], [1875, 827], [1877, 829], [1877, 831], [1883, 831], [1883, 827], [1884, 826], [1884, 825], [1886, 825], [1886, 824], [1883, 821], [1882, 822], [1882, 824]]}, "center": {"146-152": [1880, 826], "153-166, T:0-1": [1880, 827]}},
{"id": "u8gjqy", "name": "The Great Wave off Kanagawa-Tunisia heart", "description": "A heart with the colors of The Great Wave off Kanagawa and the flag of Tunisia.", "links": {"subreddit": ["place_the_wave", "Tunisia"]}, "path": {"56-166, T:0-1": [[1918, 812], [1916, 814], [1916, 815], [1920, 819], [1924, 815], [1924, 814], [1922, 812]]}, "center": {"56-166, T:0-1": [1920, 815]}},
{"id": "u8fwzq", "name": "Lucas", "description": "Lucas is the player character and protagonist of Mother 3. This sprite is from his appearance in Snowcap Mountain.", "links": {"website": ["https://earthbound.fandom.com/wiki/Lucas"], "subreddit": ["earthbound"]}, "path": {"160-167, T:0-1": [[1971, 348], [1968, 351], [1968, 352], [1969, 353], [1968, 354], [1970, 356], [1972, 356], [1974, 354], [1973, 353], [1974, 352], [1974, 350], [1972, 348]]}, "center": {"160-167, T:0-1": [1971, 351]}},
{"id": "u8fpy5", "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.\n\nThis art was made by a small Discord.", "links": {"website": ["https://nzhistory.govt.nz/war/anzac-day/poppies", "https://en.wikipedia.org/wiki/Papaver_rhoeas", "https://en.wikipedia.org/wiki/Anzac_Day"]}, "path": {"149-166, T:0-1": [[352, 720], [352, 732], [363, 732], [363, 720]]}, "center": {"149-166, T:0-1": [358, 726]}},
-{"id": "u8f1si", "name": "Marisad", "description": "Marisa Kirisame is a character from Touhou Project. In the fan-made anime \"Memories of Phantasm\", she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom, who dubbed her \"Marisad\" (Marisa + sad).\n\nSmol Marisad was established by r/marisad as a second project on the canvas. It unfortunately had to destroy the old Rick Astley pixel art that used to cover both Tomoko and the Tani logo. Shortly after Smol Marisad started to take shape, r/watamote began drawing Tomoko. After a short period of bickering between the two groups they finally agreed to borders, and an alliance. In the end both were destroyed before the archiving by the streamer Tanizen, who ordered his followers to draw a dog in their place.", "links": {"website": ["https://en.touhouwiki.net/wiki/Marisa_Kirisame"], "subreddit": ["Marisad", "touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1724, 1199], [1724, 1218], [1740, 1218], [1740, 1199]]}, "center": {"109-166, T:0-1": [1732, 1209]}},
-{"id": "u8emqw", "name": "Purple hearts", "description": "A purple heart background. Purple represents love and trust between BTS and their fans, the ARMY.", "links": {"website": [], "subreddit": ["bangtan"]}, "path": {"97-104": [[1950, 175], [1943, 182], [1943, 238], [2000, 238], [2000, 194], [1982, 194], [1982, 195], [1989, 203], [1989, 215], [1976, 229], [1976, 238], [1970, 238], [1970, 229], [1958, 217], [1943, 217], [1943, 199], [1961, 199], [1965, 195], [1964, 194], [1960, 194], [1960, 175]], "69-94": [[1943, 194], [1943, 238], [2000, 238], [2000, 194], [1982, 194], [1982, 195], [1989, 203], [1989, 216], [1976, 229], [1976, 238], [1969, 238], [1969, 228], [1958, 217], [1943, 217], [1943, 199], [1962, 199], [1966, 194]], "111-166, T:0-1": [[1966, 194], [1966, 197], [1961, 197], [1959, 199], [1960, 238], [1976, 238], [1977, 238], [1977, 232], [1978, 231], [1977, 230], [1977, 229], [1969, 221], [1969, 220], [1967, 218], [1967, 216], [1966, 215], [1966, 205], [1968, 203], [1968, 202], [1970, 198], [1973, 195], [1992, 195], [1996, 199], [1996, 201], [1998, 203], [1998, 217], [1996, 219], [1996, 220], [1987, 229], [1987, 230], [1986, 231], [1987, 232], [1987, 238], [1999, 238], [1999, 194]]}, "center": {"97-104": [1953, 227], "69-94": [1954, 227], "111-166, T:0-1": [1967, 231]}},
+{"id": "u8f1si", "name": "Marisad", "description": "Marisa Kirisame is a character from Touhou Project. In the fan-made anime Fantasy Kaleidoscope ~The Memories of Phantasm~, she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom after being popularized by Touhou YouTuber Chiruno, and was dubbed \"Marisad\" (Marisa + sad). Additionally the emote of Marisa crying spread across many Touhou-related Discord servers, further adding to its popularity.\n\nSmol Marisad was established by r/marisad as a second project on the canvas. It unfortunately had to destroy the old Rick Astley pixel art that used to cover both Tomoko and the Tani logo. Shortly after Smol Marisad started to take shape, r/watamote began drawing Tomoko. After a short period of bickering between the two groups they finally agreed to borders, and an alliance. In the end both were destroyed before the archiving by the streamer Tanizen, who ordered his followers to draw a dog in their place.", "links": {"website": ["https://en.touhouwiki.net/wiki/Marisa_Kirisame"], "subreddit": ["Marisad", "touhou"], "discord": ["UVkWNdhQ"]}, "path": {"109-166, T:0-1": [[1724, 1199], [1724, 1218], [1740, 1218], [1740, 1199]]}, "center": {"109-166, T:0-1": [1732, 1209]}},
+{"id": "u8emqw", "name": "Purple hearts", "description": "A purple heart background. Purple represents love and trust between BTS and their fans, the ARMY.", "links": {"subreddit": ["bangtan"]}, "path": {"97-104": [[1950, 175], [1943, 182], [1943, 238], [2000, 238], [2000, 194], [1982, 194], [1982, 195], [1989, 203], [1989, 215], [1976, 229], [1976, 238], [1970, 238], [1970, 229], [1958, 217], [1943, 217], [1943, 199], [1961, 199], [1965, 195], [1964, 194], [1960, 194], [1960, 175]], "69-94": [[1943, 194], [1943, 238], [2000, 238], [2000, 194], [1982, 194], [1982, 195], [1989, 203], [1989, 216], [1976, 229], [1976, 238], [1969, 238], [1969, 228], [1958, 217], [1943, 217], [1943, 199], [1962, 199], [1966, 194]], "111-166, T:0-1": [[1966, 194], [1966, 197], [1961, 197], [1959, 199], [1960, 238], [1976, 238], [1977, 238], [1977, 232], [1978, 231], [1977, 230], [1977, 229], [1969, 221], [1969, 220], [1967, 218], [1967, 216], [1966, 215], [1966, 205], [1968, 203], [1968, 202], [1970, 198], [1973, 195], [1992, 195], [1996, 199], [1996, 201], [1998, 203], [1998, 217], [1996, 219], [1996, 220], [1987, 229], [1987, 230], [1986, 231], [1987, 232], [1987, 238], [1999, 238], [1999, 194]]}, "center": {"97-104": [1953, 227], "69-94": [1954, 227], "111-166, T:0-1": [1967, 231]}},
{"id": "u8el5a", "name": "BTS logo", "description": "A tricolor version of the BTS double trapezoid logo.", "links": {"website": ["https://en.wikipedia.org/wiki/BTS"], "subreddit": ["bangtan"]}, "path": {"113-165, T:0-1": [[1942, 207], [1942, 235], [1943, 235], [1948, 230], [1950, 230], [1955, 235], [1956, 234], [1956, 208], [1955, 207], [1950, 212], [1948, 212], [1943, 207]]}, "center": {"113-165, T:0-1": [1949, 221]}},
{"id": "u8ek3b", "name": "방탄", "description": "Korean for \"bangtan\", the first word of the band Bangtan Sonyeondan (BTS).", "links": {"website": ["https://en.wikipedia.org/wiki/BTS"], "subreddit": ["bangtan"]}, "path": {"111-153": [[1958, 226], [1958, 236], [1973, 236], [1973, 226]], "71-104": [[1983, 228], [1983, 238], [1997, 238], [1997, 228]], "154-166, T:0-1": [[1958, 226], [1958, 235], [1973, 235], [1973, 226]]}, "center": {"111-153": [1966, 231], "71-104": [1990, 233], "154-166, T:0-1": [1966, 231]}},
{"id": "u8eivo", "name": "보라해", "description": "The Korean text \"보라해\" (borahae) is a portmanteau of bora (violet) and saranghae (I love you), and means \"I purple you\". This is a symbol of love between BTS and their fandom, The ARMY, who often associate the color purple with love.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=I%20Purple%20You"], "subreddit": ["bangtan"]}, "path": {"62-104": [[1944, 230], [1944, 238], [1967, 238], [1967, 230]], "112-166, T:0-1": [[1943, 197], [1943, 205], [1965, 205], [1965, 197]]}, "center": {"62-104": [1956, 234], "112-166, T:0-1": [1954, 201]}},
@@ -7412,12 +7384,12 @@
{"id": "ualxkc", "name": "Transgender Among Us crewmate", "description": "An Among Us crewmate in the colors of 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"]}, "path": {"114-121": [[1797, 386], [1795, 388], [1795, 390], [1797, 392], [1800, 392], [1800, 386]], "91-95": [[1752, 336], [1750, 338], [1750, 340], [1751, 340], [1751, 342], [1755, 342], [1755, 336]], "137-165, T:0-1": [[1325, 994], [1325, 1000], [1328, 1000], [1329, 999], [1329, 998], [1330, 997], [1330, 996], [1328, 994]]}, "center": {"114-121": [1798, 389], "91-95": [1753, 339], "137-165, T:0-1": [1327, 997]}},
{"id": "ualwwb", "name": "LGBT Among Us crewmate", "description": "An Among Us crewmate in the colors of the LGBT pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)"]}, "path": {"56-165, T:0-1": [[1322, 994], [1320, 996], [1320, 997], [1321, 998], [1321, 1000], [1325, 1000], [1325, 994]]}, "center": {"56-165, T:0-1": [1323, 997]}},
{"id": "ualw4z", "name": "Asexual Among Us crewmate", "description": "An Among Us crewmate in the colors of the asexual pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Asexuality"]}, "path": {"56-165, T:0-1": [[1315, 994], [1315, 1000], [1319, 1000], [1319, 998], [1320, 997], [1320, 996], [1318, 994]]}, "center": {"56-165, T:0-1": [1317, 997]}},
-{"id": "ualvnk", "name": "Bisexual Among Us crewmate", "description": "An Among Us crewmate in the colors of the bisexual pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"]}, "path": {"56-165, T:0-1": [[1312, 994], [1310, 996], [1310, 997], [1311, 998], [1311, 1000], [1315, 1000], [1315, 994]]}, "center": {"56-165, T:0-1": [1313, 997]}},
+{"id": "ualvnk", "name": "Bisexual Among Us crewmate", "description": "An Among Us crewmate in the colors of the bisexual pride flag. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"], "subreddit": ["bisexual"]}, "path": {"56-165, T:0-1": [[1312, 994], [1310, 996], [1310, 997], [1311, 998], [1311, 1000], [1315, 1000], [1315, 994]]}, "center": {"56-165, T:0-1": [1313, 997]}},
{"id": "ualv66", "name": "Aromantic Among Us crewmate", "description": "An Among Us crewmate in the colors of the aromantic pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"]}, "path": {"56-165, T:0-1": [[1305, 994], [1305, 1000], [1308, 1000], [1309, 999], [1309, 998], [1310, 997], [1310, 996], [1308, 994]]}, "center": {"56-165, T:0-1": [1307, 997]}},
{"id": "ualugs", "name": "Lesbian Among Us crewmate", "description": "An Among Us crewmate in the colors of the lesbian pride flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"]}, "path": {"56-165, T:0-1": [[1302, 994], [1300, 996], [1300, 997], [1301, 998], [1301, 1000], [1305, 1000], [1305, 994]]}, "center": {"56-165, T:0-1": [1303, 997]}},
{"id": "ualu37", "name": "Non-binary Among Us crewmate", "description": "An Among Us crewmate in the colors of 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": {"56-165, T:0-1": [[1295, 994], [1295, 1000], [1298, 1000], [1299, 999], [1299, 998], [1300, 996], [1298, 994]]}, "center": {"56-165, T:0-1": [1297, 997]}},
{"id": "ualt4y", "name": "Pansexual Among Us crewmate", "description": "An Among Us crewmate in the colors of 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"], "subreddit": ["pansexual"]}, "path": {"56-165, T:0-1": [[1292, 994], [1290, 996], [1290, 997], [1291, 998], [1291, 1000], [1295, 1000], [1295, 994]]}, "center": {"56-165, T:0-1": [1293, 997]}},
-{"id": "ualjw8", "name": "OSU-Belgium heart", "description": "A heart with the colors of Ohio State University and the flag of Belgium.", "links": {"subreddit": ["OSU", "belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"56-166, T:0-1": [[1330, 801], [1328, 803], [1328, 805], [1332, 809], [1336, 805], [1336, 803], [1334, 801]]}, "center": {"56-166, T:0-1": [1332, 804]}},
+{"id": "ualjw8", "name": "OSU-Belgium heart", "description": "A heart with the colors of Ohio State University and the flag of Belgium.", "links": {"website": ["https://www.osu.edu/", "https://en.wikipedia.org/wiki/Belgium"], "subreddit": ["OSU", "belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"108-166, T:0-1": [[1330, 801], [1328, 803], [1328, 805], [1332, 809], [1336, 805], [1336, 803], [1334, 801]]}, "center": {"108-166, T:0-1": [1332, 804]}},
{"id": "ualj4h", "name": "Belgium-Turkey heart", "description": "A heart depicting the flags of Belgium and Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Turkey"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "Wow_Mao", "2balkan4you"]}, "path": {"97-121": [[1321, 769], [1319, 771], [1319, 773], [1323, 777], [1327, 773], [1327, 771], [1325, 769]], "142-164, T:0-1": [[1318, 769], [1316, 771], [1316, 774], [1320, 778], [1324, 774], [1324, 771], [1322, 769]]}, "center": {"97-121": [1323, 772], "142-164, T:0-1": [1320, 773]}},
{"id": "ualijn", "name": "Belgium-Venezuela heart", "description": "A heart depicting the flags of Belgium and Venezuela.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Venezuela"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE", "vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"89-127, T:0-1": [[1280, 786], [1277, 789], [1277, 791], [1282, 796], [1287, 791], [1287, 789], [1284, 786]], "132-166": [[1280, 782], [1277, 785], [1277, 787], [1282, 792], [1287, 787], [1287, 785], [1284, 782], [1283, 783], [1281, 783]]}, "center": {"89-127, T:0-1": [1282, 790], "132-166": [1282, 787]}},
{"id": "ualhq0", "name": "Coat of arms of the German-speaking Community", "description": "The German-speaking Community's portion of the combined Belgian communities' coats of arms, depicting blue flowers.", "links": {"website": ["https://en.wikipedia.org/wiki/German-speaking_Community_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"109-165, T:0-1": [[1318, 1238], [1316, 1240], [1317, 1241], [1316, 1242], [1315, 1241], [1313, 1243], [1315, 1245], [1315, 1246], [1317, 1248], [1295, 1269], [1294, 1270], [1294, 1271], [1293, 1271], [1293, 1270], [1292, 1269], [1290, 1271], [1291, 1272], [1289, 1274], [1291, 1276], [1292, 1276], [1294, 1278], [1296, 1276], [1295, 1275], [1296, 1274], [1297, 1275], [1299, 1273], [1297, 1271], [1296, 1272], [1296, 1270], [1295, 1269], [1317, 1248], [1318, 1247], [1320, 1247], [1322, 1245], [1321, 1244], [1323, 1242], [1321, 1240], [1320, 1241], [1320, 1240]]}, "center": {"109-165, T:0-1": [1307, 1257]}},
@@ -7432,8 +7404,8 @@
{"id": "uak332", "name": "SerdarSARI", "description": "A Turkish streamer and content creator. Youtube and Twitch Partner.", "links": {"website": ["https://www.twitch.tv/SerdarSARI"]}, "path": {"109-165, T:0-1": [[346, 1687], [346, 1699], [358, 1699], [358, 1687]]}, "center": {"109-165, T:0-1": [352, 1693]}},
{"id": "uajoz4", "name": "r/heraldry Discord coat of arms", "description": "Coat of arms for the r/heraldry Discord server.", "links": {"subreddit": ["heraldry"]}, "path": {"109-165, T:0-1": [[1277, 1241], [1275, 1243], [1275, 1250], [1279, 1254], [1282, 1254], [1286, 1250], [1286, 1243], [1284, 1241]]}, "center": {"109-165, T:0-1": [1281, 1247]}},
{"id": "uajd7f", "name": "Infinity Dragon Ball", "description": "A Dragon Ball from the fan-made game Dragon Ball Infinity, based on the anime Dragon Ball Z.", "links": {"subreddit": ["dbz"]}, "path": {"117-130": [[1412, 121], [1409, 124], [1409, 126], [1412, 129], [1414, 129], [1417, 126], [1417, 124], [1414, 121]], "142-166, T:0-1": [[1414, 143], [1410, 147], [1410, 149], [1414, 153], [1416, 153], [1420, 149], [1420, 147], [1416, 143]]}, "center": {"117-130": [1413, 125], "142-166, T:0-1": [1415, 148]}},
-{"id": "uahc6o", "name": "Joy pill", "description": "In Lisa: The Painful, Joy is an addictive drug that fully heals a character. If taken too much, it causes severe physical mutations.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Joy"], "subreddit": ["lisathepainfulrpg"]}, "path": {"56-165, T:0-1": [[1092, 808], [1090, 810], [1090, 811], [1092, 813], [1093, 813], [1095, 811], [1095, 810], [1093, 808]]}, "center": {"56-165, T:0-1": [1093, 811]}},
-{"id": "uah90z", "name": "Brad Armstrong", "description": "The main character of Lisa: The Painful.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Brad_Armstrong"], "subreddit": ["lisathepainfulrpg"]}, "path": {"56-165, T:0-1": [[1075, 802], [1073, 804], [1073, 805], [1072, 806], [1072, 814], [1071, 815], [1071, 823], [1070, 824], [1070, 825], [1071, 826], [1071, 827], [1072, 828], [1074, 828], [1076, 830], [1085, 830], [1089, 826], [1089, 825], [1090, 824], [1090, 815], [1088, 813], [1089, 812], [1089, 805], [1086, 802]]}, "center": {"56-165, T:0-1": [1080, 816]}},
+{"id": "uahc6o", "name": "Joy pill", "description": "In the game Lisa: The Painful, Joy is an addictive drug that fully heals a character. If taken too much, it causes severe physical mutations.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Joy"], "subreddit": ["lisathepainfulrpg"]}, "path": {"65-165, T:0-1": [[1092, 808], [1090, 810], [1090, 811], [1092, 813], [1093, 813], [1095, 811], [1095, 810], [1093, 808]]}, "center": {"65-165, T:0-1": [1093, 811]}},
+{"id": "uah90z", "name": "Brad Armstrong", "description": "Brad Armstrong is the main character of game Lisa: The Painful.", "links": {"website": ["https://lisa-rpg.fandom.com/wiki/Brad_Armstrong"], "subreddit": ["lisathepainfulrpg"]}, "path": {"64-165, T:0-1": [[1075, 802], [1073, 804], [1073, 805], [1072, 806], [1072, 814], [1071, 815], [1071, 823], [1070, 824], [1070, 825], [1071, 826], [1071, 827], [1072, 828], [1074, 828], [1076, 830], [1085, 830], [1089, 826], [1089, 825], [1090, 824], [1090, 815], [1088, 813], [1089, 812], [1089, 805], [1086, 802]]}, "center": {"64-165, T:0-1": [1080, 820]}},
{"id": "uagvhu", "name": "Laurel Hell", "description": "An album by Japanese-American musician Mitski.", "links": {"website": ["https://en.wikipedia.org/wiki/Laurel_Hell"], "subreddit": ["mitski"]}, "path": {"109-166, T:0-1": [[1082, 1795], [1082, 1800], [1087, 1800], [1087, 1795]]}, "center": {"109-166, T:0-1": [1085, 1798]}},
{"id": "uagv0o", "name": "Puberty 2", "description": "An album by Japanese-American musician Mitski.", "links": {"website": ["https://en.wikipedia.org/wiki/Puberty_2"], "subreddit": ["mitski"]}, "path": {"109-166, T:0-1": [[1077, 1795], [1077, 1800], [1082, 1800], [1082, 1795]]}, "center": {"109-166, T:0-1": [1080, 1798]}},
{"id": "uaguii", "name": "Retired from Sad, New Career in Business", "description": "An album by Japanese-American musician Mitski.", "links": {"website": ["https://en.wikipedia.org/wiki/Retired_from_Sad,_New_Career_in_Business"], "subreddit": ["mitski"]}, "path": {"109-166, T:0-1": [[1072, 1795], [1072, 1800], [1077, 1800], [1077, 1795]]}, "center": {"109-166, T:0-1": [1075, 1798]}},
@@ -7448,7 +7420,7 @@
{"id": "uae8yj", "name": "TUR", "description": "Flag made in honor of the deeply missed TUR, best transport company ever", "links": {}, "path": {"109-166, T:0-1": [[1583, 1326], [1583, 1317], [1585, 1317], [1585, 1326], [1584, 1326]]}, "center": {"109-166, T:0-1": [1584, 1322]}},
{"id": "uadvnj", "name": "ASTRO", "description": "Entirely made by a discord community named \"ASTRO\" in tribute to the greatest : Sminem, Bog, and Bizonacci <3.\nThis is not made by the astro kpop band subreddit, The colors were chosen by us, we had no idea of the existence of the kpop band. Rest in peace AstroBort, Thanks for helping us when you no longer existed.", "links": {}, "path": {"109-166, T:0-1": [[1576, 1333], [1576, 1328], [1600, 1328], [1600, 1330], [1599, 1330], [1599, 1331], [1598, 1331], [1598, 1332], [1597, 1333]]}, "center": {"109-166, T:0-1": [1587, 1330]}},
{"id": "uac4gl", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"105, 141-144": [[1127, 718], [1125, 720], [1125, 721], [1127, 723], [1127, 726], [1126, 725], [1124, 725], [1122, 727], [1122, 728], [1125, 731], [1128, 728], [1128, 727], [1127, 726], [1127, 723], [1128, 724], [1131, 721], [1131, 720], [1129, 718]], "106-140, 145-166, 89-104, T:0-1": [[1127, 718], [1125, 720], [1125, 721], [1128, 724], [1131, 721], [1131, 720], [1129, 718]]}, "center": {"105, 141-144": [1125, 727], "106-140, 145-166, 89-104, T:0-1": [1128, 721]}},
-{"id": "uabymv", "name": "Louis XVI", "description": "The last king of France, ruling from 1754 to 1793. The monarchy fell during the French Revolution, and Louis XVI was executed via guillotine.", "links": {"website": ["https://en.wikipedia.org/wiki/Louis_XVI"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"56-166, T:0-1": [[1138, 822], [1138, 829], [1144, 829], [1144, 822]]}, "center": {"56-166, T:0-1": [1141, 826]}},
+{"id": "uabymv", "name": "Louis XVI", "description": "Louis XVI was the last king of France, ruling from 1754 to 1793. The monarchy fell during the French Revolution, and Louis XVI was executed via guillotine.", "links": {"website": ["https://en.wikipedia.org/wiki/Louis_XVI"], "subreddit": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"100-152": [[1136, 823], [1136, 829], [1142, 829], [1142, 823], [1140, 823], [1139, 822], [1138, 823]], "153-166, T:0-1": [[1138, 822], [1138, 829], [1144, 829], [1144, 822]]}, "center": {"100-152": [1139, 826], "153-166, T:0-1": [1141, 826]}},
{"id": "uabu8k", "name": "Bisexual car", "description": "A car in the colors of the bisexual pride flag. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"], "subreddit": ["fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"156-160": [[1090, 715], [1090, 717], [1094, 717], [1094, 715]], "147-155": [[1089, 715], [1089, 717], [1095, 717], [1095, 715]]}, "center": {"156-160": [1092, 716], "147-155": [1092, 716]}},
{"id": "uabtth", "name": "Lesbian car", "description": "A car in the colors of the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"], "subreddit": ["fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"125-130": [[1078, 714], [1078, 716], [1084, 716], [1084, 714]], "70-120": [[1077, 714], [1077, 716], [1083, 716], [1083, 714]], "131-165, T:0-1": [[1082, 715], [1082, 717], [1088, 717], [1088, 715]]}, "center": {"125-130": [1081, 715], "70-120": [1080, 715], "131-165, T:0-1": [1085, 716]}},
{"id": "uabtev", "name": "Transgender car", "description": "A car in the colors of 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"], "subreddit": ["fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"156-165, T:0-1": [[1075, 715], [1075, 717], [1081, 717], [1081, 715]]}, "center": {"156-165, T:0-1": [1078, 716]}},
@@ -7470,11 +7442,11 @@
{"id": "ubdh43", "name": "University of Michigan Among Us crewmate", "description": "An Among Us crewmate in the colors of the University of Michigan.", "links": {"website": ["https://umich.edu/"], "subreddit": ["TheB1G"]}, "path": {"109-165, T:0-1": [[1106, 1715], [1104, 1717], [1104, 1718], [1106, 1720], [1109, 1720], [1109, 1715]]}, "center": {"109-165, T:0-1": [1107, 1718]}},
{"id": "ubdgef", "name": "Northwestern University Among Us crewmate", "description": "An Among Us crewmate in the colors of Northwestern University.", "links": {"website": ["https://www.northwestern.edu/"], "subreddit": ["TheB1G"]}, "path": {"109-166, T:0-1": [[1101, 1715], [1099, 1717], [1099, 1718], [1101, 1720], [1104, 1720], [1104, 1715]]}, "center": {"109-166, T:0-1": [1102, 1718]}},
{"id": "ubdfu6", "name": "University of Minnesota Among Us crewmate", "description": "An Among Us crewmate in the colors of the University of Minnesota.", "links": {"website": ["http://www.umn.edu/"], "subreddit": ["TheB1G"]}, "path": {"109-166, T:0-1": [[1096, 1715], [1094, 1717], [1094, 1718], [1096, 1720], [1099, 1720], [1099, 1715]]}, "center": {"109-166, T:0-1": [1097, 1718]}},
-{"id": "ubdcwo", "name": "Pizza John-OSU heart", "description": "A heart with the colors of Pizza John and Ohio State University.", "links": {"subreddit": ["nerdfighters", "OSU"]}, "path": {"56-166, T:0-1": [[1361, 804], [1359, 806], [1359, 808], [1363, 812], [1367, 808], [1367, 806], [1365, 804]]}, "center": {"56-166, T:0-1": [1363, 807]}},
+{"id": "ubdcwo", "name": "Pizza John-OSU heart", "description": "A heart with the colors of Pizza John and Ohio State University.", "links": {"website": ["https://pizzamas.com/pages/what-is-this", "https://www.osu.edu/"], "subreddit": ["nerdfighters", "OSU"]}, "path": {"146-166, T:0-1": [[1361, 804], [1359, 806], [1359, 808], [1363, 812], [1367, 808], [1367, 806], [1365, 804]]}, "center": {"146-166, T:0-1": [1363, 807]}},
{"id": "ubdca6", "name": "15-2", "description": "Starting in 2004, this is the score in American football games between the University of Ohio and the University of Michigan, longtime college football rivals. OSU is currently leading.", "links": {"website": ["https://en.wikipedia.org/wiki/Michigan%E2%80%93Ohio_State_football_rivalry"], "subreddit": ["OSU"]}, "path": {"66-84, 97-107": [[1333, 796], [1333, 803], [1350, 803], [1350, 796]], "108-166, T:0-1": [[1334, 796], [1334, 803], [1351, 803], [1351, 796]]}, "center": {"66-84, 97-107": [1342, 800], "108-166, T:0-1": [1343, 800]}},
{"id": "ubd8ko", "name": "Flag of Ohio", "description": "Ohio is a state in the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Ohio", "https://en.wikipedia.org/wiki/Flag_of_Ohio"], "subreddit": ["OSU"]}, "path": {"65-88, 99-165, T:0-1": [[1351, 796], [1351, 800], [1352, 801], [1352, 804], [1353, 805], [1353, 807], [1354, 808], [1354, 810], [1358, 810], [1358, 808], [1359, 807], [1359, 805], [1360, 804], [1360, 801], [1361, 800], [1361, 796]]}, "center": {"65-88, 99-165, T:0-1": [1356, 802]}},
-{"id": "ubd7j6", "name": "Script Ohio", "description": "A tradition at Ohio State University where the school's marching band forms the word \"Ohio\" in script during half-time at American football games.", "links": {"website": ["https://library.osu.edu/site/osuvsmichigan/script-ohio/"], "subreddit": ["OSU"]}, "path": {"56-166, T:0-1": [[1353, 810], [1353, 828], [1362, 828], [1362, 812], [1360, 810]]}, "center": {"56-166, T:0-1": [1357, 819]}},
-{"id": "ubd6gj", "name": "Buckeye", "description": "An Ohio buckeye nut that serves as a symbol of Ohio State University. Also the name of the school's sports teams and student/alumni body.", "links": {"website": ["https://en.wikipedia.org/wiki/Aesculus_glabra"], "subreddit": ["OSU"]}, "path": {"56-165, T:0-1": [[1349, 816], [1347, 818], [1347, 819], [1346, 820], [1345, 820], [1343, 822], [1341, 822], [1338, 825], [1338, 826], [1336, 828], [1338, 830], [1340, 830], [1341, 829], [1347, 829], [1351, 825], [1351, 821], [1352, 820], [1352, 818], [1350, 816]]}, "center": {"56-165, T:0-1": [1345, 824]}},
+{"id": "ubd7j6", "name": "Script Ohio", "description": "A tradition at Ohio State University where the school's marching band forms the word \"Ohio\" in script during half-time at American football games.", "links": {"website": ["https://library.osu.edu/site/osuvsmichigan/script-ohio/"], "subreddit": ["OSU"]}, "path": {"65-90, 94-166, T:0-1": [[1355, 810], [1353, 812], [1353, 826], [1355, 828], [1357, 828], [1359, 826], [1359, 823], [1360, 822], [1360, 821], [1362, 819], [1362, 812], [1360, 810]]}, "center": {"65-90, 94-166, T:0-1": [1358, 815]}},
+{"id": "ubd6gj", "name": "Buckeye", "description": "The Ohio buckeye nut is a symbol of Ohio State University. The school's sports teams and student/alumni body, the Buckeyes, are named after the Ohio buckeye.", "links": {"website": ["https://en.wikipedia.org/wiki/Aesculus_glabra"], "subreddit": ["OSU"]}, "path": {"62-165, T:0-1": [[1349, 816], [1347, 818], [1347, 819], [1346, 820], [1345, 820], [1343, 822], [1341, 822], [1338, 825], [1338, 826], [1336, 828], [1338, 830], [1340, 830], [1341, 829], [1347, 829], [1351, 825], [1351, 821], [1352, 820], [1352, 818], [1350, 816]]}, "center": {"62-165, T:0-1": [1345, 825]}},
{"id": "ubcqlf", "name": "7", "description": "An album by dream pop duo Beach House.", "links": {"website": ["https://en.wikipedia.org/wiki/7_(Beach_House_album)"], "subreddit": ["BeachHouse"]}, "path": {"109-165, T:0-1": [[341, 1474], [341, 1477], [344, 1477], [344, 1474]]}, "center": {"109-165, T:0-1": [343, 1476]}},
{"id": "ubcqd5", "name": "Thank Your Lucky Stars", "description": "An album by dream pop duo Beach House.", "links": {"website": ["https://en.wikipedia.org/wiki/Thank_Your_Lucky_Stars_(Beach_House_album)"], "subreddit": ["BeachHouse"]}, "path": {"109-165, T:0-1": [[341, 1472], [341, 1475], [344, 1475], [344, 1472]]}, "center": {"109-165, T:0-1": [343, 1474]}},
{"id": "ubcpyt", "name": "Depression Cherry", "description": "An album by dream pop duo Beach House.", "links": {"website": ["https://en.wikipedia.org/wiki/Depression_Cherry"], "subreddit": ["BeachHouse"]}, "path": {"109-165, T:0-1": [[341, 1470], [341, 1473], [344, 1473], [344, 1470]]}, "center": {"109-165, T:0-1": [343, 1472]}},
@@ -7621,15 +7593,15 @@
{"id": "ucuuwb", "name": "Subway", "description": "The Subway logo next to a submarine sandwich. Subway is an American fast food chain that sells submarine sandwiches. The sandwich is 11 pixels in length, a reference to Etika's World Network news update on people bringing rulers into Subway restaurants and measuring their \"footlong\" sandwiches to see if they are actually a foot (12 inches) long.", "links": {"website": ["https://www.subway.com/", "https://en.wikipedia.org/wiki/Subway_(restaurant)", "https://youtu.be/O2EAeZA8qrQ"], "subreddit": ["EtikaRedditNetwork"], "discord": ["VHzRpZ3327"]}, "path": {"63-166, T:0-1": [[1639, 171], [1639, 176], [1651, 176], [1651, 171]]}, "center": {"63-166, T:0-1": [1645, 174]}},
{"id": "ucutty", "name": "1990-2019", "description": "The lifespan of Etika, who committed suicide by jumping off Manhattan Bridge in New York City, New York, United States.", "links": {"subreddit": ["EtikaRedditNetwork"], "discord": ["VHzRpZ3327"]}, "path": {"57-166, T:0-1": [[1618, 164], [1618, 171], [1651, 171], [1651, 164]]}, "center": {"57-166, T:0-1": [1635, 168]}},
{"id": "ucukzs", "name": "Trust The Process", "description": "A motto of the Philadelphia 76ers that originated from former team manager Sam Hinkie.", "links": {"subreddit": ["sixers"]}, "path": {"15-42": [[85, 602], [85, 607], [97, 607], [97, 602]], "43-166, T:0-1": [[83, 602], [83, 607], [95, 607], [95, 602]]}, "center": {"15-42": [91, 605], "43-166, T:0-1": [89, 605]}},
-{"id": "ucub47", "name": "Tamaki Iroha", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Iroha_Tamaki"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"16-166, T:0-1": [[652, 414], [649, 417], [649, 423], [651, 425], [651, 426], [650, 427], [650, 429], [652, 431], [658, 431], [660, 429], [660, 427], [659, 426], [659, 425], [661, 423], [661, 417], [658, 414]]}, "center": {"16-166, T:0-1": [655, 420]}},
-{"id": "ucuacc", "name": "Nanami Yachiyo", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Yachiyo_Nanami"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"17-166, T:0-1": [[638, 414], [635, 417], [635, 425], [634, 426], [637, 429], [637, 431], [646, 431], [646, 428], [648, 426], [647, 425], [647, 422], [648, 421], [648, 420], [649, 419], [648, 418], [647, 419], [647, 417], [644, 414]]}, "center": {"17-166, T:0-1": [641, 420]}},
-{"id": "ucu8lx", "name": "Tomoe Mami", "description": "A heart representing the magical girl Tomoe Mami from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Mami_Tomoe"], "subreddit": ["MadokaMagica"]}, "path": {"16-19": [[665, 394], [665, 396], [667, 398], [669, 396], [669, 394]], "20-166, T:0-1": [[666, 406], [665, 407], [665, 408], [667, 410], [669, 408], [669, 407], [668, 406], [667, 407]]}, "center": {"16-19": [667, 396], "20-166, T:0-1": [667, 408]}},
-{"id": "ucu7yb", "name": "Sakura Kyouko", "description": "A heart representing the magical girl Sakura Kyouko from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Kyoko_Sakura"], "subreddit": ["MadokaMagica"]}, "path": {"16-166, T:0-1": [[666, 403], [665, 404], [665, 405], [667, 407], [669, 405], [669, 404], [668, 403], [667, 404]]}, "center": {"16-166, T:0-1": [667, 405]}},
-{"id": "ucu7gh", "name": "Miki Sayaka", "description": "A heart representing the magical girl Miki Sayaka from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Sayaka_Miki"], "subreddit": ["MadokaMagica"]}, "path": {"16-166, T:0-1": [[666, 400], [665, 401], [665, 402], [667, 404], [669, 402], [669, 401], [668, 400], [667, 401]]}, "center": {"16-166, T:0-1": [667, 402]}},
-{"id": "ucu6w8", "name": "Kaname Madoka", "description": "A heart representing the magical girl Kaname Madoka from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Madoka_Kaname"], "subreddit": ["MadokaMagica"]}, "path": {"15-166, T:0-1": [[666, 397], [665, 398], [665, 399], [667, 401], [669, 399], [669, 398], [668, 397], [667, 398]]}, "center": {"15-166, T:0-1": [667, 399]}},
-{"id": "ucu69e", "name": "Akemi Homura", "description": "A heart representing the magical girl Akemi Homura from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Homura_Akemi"], "subreddit": ["MadokaMagica"]}, "path": {"17-19": [[665, 406], [665, 408], [667, 410], [669, 408], [669, 406]], "20-166, T:0-1": [[666, 394], [665, 395], [665, 396], [667, 398], [669, 396], [669, 395], [668, 394], [667, 395]]}, "center": {"17-19": [667, 408], "20-166, T:0-1": [667, 396]}},
-{"id": "ucu56n", "name": "Kaname Madoka", "description": "The titular character from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Madoka_Kaname"], "subreddit": ["MadokaMagica"]}, "path": {"1-13": [[649, 398], [646, 401], [646, 404], [649, 407], [651, 407], [651, 410], [650, 410], [649, 411], [649, 413], [653, 413], [653, 417], [659, 417], [659, 413], [663, 413], [663, 410], [661, 408], [661, 407], [663, 407], [666, 404], [666, 401], [663, 398], [660, 398], [659, 397], [653, 397], [652, 398]], "14-166, T:0-1": [[649, 393], [648, 394], [648, 395], [646, 395], [646, 397], [645, 398], [645, 400], [647, 402], [649, 400], [651, 402], [652, 402], [650, 404], [648, 404], [648, 407], [650, 407], [651, 406], [651, 408], [652, 408], [652, 411], [658, 411], [658, 408], [659, 407], [659, 406], [660, 407], [662, 407], [662, 404], [660, 404], [658, 402], [659, 402], [660, 403], [661, 402], [660, 401], [661, 400], [663, 402], [665, 400], [665, 398], [664, 397], [664, 396], [661, 393], [660, 394], [659, 394], [658, 393], [657, 394], [653, 394], [652, 393], [651, 394], [650, 394]]}, "center": {"1-13": [656, 403], "14-166, T:0-1": [655, 399]}},
-{"id": "ucu45w", "name": "Akemi Homura", "description": "One of the main characters in Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Homura_Akemi"], "subreddit": ["MadokaMagica"]}, "path": {"4-12": [[637, 399], [634, 402], [634, 411], [635, 412], [635, 417], [644, 417], [644, 402], [641, 399]], "13-166, T:0-1": [[638, 394], [635, 397], [635, 409], [637, 409], [637, 411], [643, 411], [643, 409], [645, 409], [645, 397], [642, 394]]}, "center": {"4-12": [639, 408], "13-166, T:0-1": [640, 403]}},
+{"id": "ucub47", "name": "Tamaki Iroha", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Iroha_Tamaki"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"16-166, T:0-1": [[652, 414], [649, 417], [649, 423], [651, 425], [651, 426], [650, 427], [650, 429], [652, 431], [658, 431], [660, 429], [660, 427], [659, 426], [659, 425], [661, 423], [661, 417], [658, 414]]}, "center": {"16-166, T:0-1": [655, 420]}},
+{"id": "ucuacc", "name": "Nanami Yachiyo", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Yachiyo_Nanami"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"17-166, T:0-1": [[638, 414], [635, 417], [635, 425], [634, 426], [637, 429], [637, 431], [646, 431], [646, 428], [648, 426], [647, 425], [647, 422], [648, 421], [648, 420], [649, 419], [648, 418], [647, 419], [647, 417], [644, 414]]}, "center": {"17-166, T:0-1": [641, 420]}},
+{"id": "ucu8lx", "name": "Tomoe Mami", "description": "A heart representing the magical girl Tomoe Mami from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Mami_Tomoe"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"16-19": [[665, 394], [665, 396], [667, 398], [669, 396], [669, 394]], "20-166, T:0-1": [[666, 406], [665, 407], [665, 408], [667, 410], [669, 408], [669, 407], [668, 406], [667, 407]]}, "center": {"16-19": [667, 396], "20-166, T:0-1": [667, 408]}},
+{"id": "ucu7yb", "name": "Sakura Kyouko", "description": "A heart representing the magical girl Sakura Kyouko from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Kyoko_Sakura"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"16-166, T:0-1": [[666, 403], [665, 404], [665, 405], [667, 407], [669, 405], [669, 404], [668, 403], [667, 404]]}, "center": {"16-166, T:0-1": [667, 405]}},
+{"id": "ucu7gh", "name": "Miki Sayaka", "description": "A heart representing the magical girl Miki Sayaka from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Sayaka_Miki"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"16-166, T:0-1": [[666, 400], [665, 401], [665, 402], [667, 404], [669, 402], [669, 401], [668, 400], [667, 401]]}, "center": {"16-166, T:0-1": [667, 402]}},
+{"id": "ucu6w8", "name": "Kaname Madoka", "description": "A heart representing the magical girl Madoka Kaname, one of the main characters of the Puella Magi Madoka Magica anime series.", "links": {"website": ["https://en.wikipedia.org/wiki/Madoka_Kaname", "https://wiki.puella-magi.net/Madoka_Kaname"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"15-166, T:0-1": [[666, 397], [665, 398], [665, 399], [667, 401], [669, 399], [669, 398], [668, 397], [667, 398]]}, "center": {"15-166, T:0-1": [667, 399]}},
+{"id": "ucu69e", "name": "Akemi Homura", "description": "A heart representing the magical girl Akemi Homura from Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Homura_Akemi"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"17-19": [[665, 406], [665, 408], [667, 410], [669, 408], [669, 406]], "20-166, T:0-1": [[666, 394], [665, 395], [665, 396], [667, 398], [669, 396], [669, 395], [668, 394], [667, 395]]}, "center": {"17-19": [667, 408], "20-166, T:0-1": [667, 396]}},
+{"id": "ucu56n", "name": "Kaname Madoka", "description": "Madoka Kaname is one of the main characters of the Puella Magi Madoka Magica anime series.", "links": {"website": ["https://en.wikipedia.org/wiki/Madoka_Kaname", "https://wiki.puella-magi.net/Madoka_Kaname"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"1-13": [[649, 398], [646, 401], [646, 404], [649, 407], [651, 407], [651, 410], [650, 410], [649, 411], [649, 413], [653, 413], [653, 417], [659, 417], [659, 413], [663, 413], [663, 410], [661, 408], [661, 407], [663, 407], [666, 404], [666, 401], [663, 398], [660, 398], [659, 397], [653, 397], [652, 398]], "14-166, T:0-1": [[649, 393], [648, 394], [648, 395], [646, 395], [646, 397], [645, 398], [645, 400], [647, 402], [649, 400], [651, 402], [652, 402], [650, 404], [648, 404], [648, 407], [650, 407], [651, 406], [651, 408], [652, 408], [652, 411], [658, 411], [658, 408], [659, 407], [659, 406], [660, 407], [662, 407], [662, 404], [660, 404], [658, 402], [659, 402], [660, 403], [661, 402], [660, 401], [661, 400], [663, 402], [665, 400], [665, 398], [664, 397], [664, 396], [661, 393], [660, 394], [659, 394], [658, 393], [657, 394], [653, 394], [652, 393], [651, 394], [650, 394]]}, "center": {"1-13": [656, 403], "14-166, T:0-1": [655, 399]}},
+{"id": "ucu45w", "name": "Akemi Homura", "description": "One of the main characters in Puella Magi Madoka Magica.", "links": {"website": ["https://wiki.puella-magi.net/Homura_Akemi"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"4-12": [[637, 399], [634, 402], [634, 411], [635, 412], [635, 417], [644, 417], [644, 402], [641, 399]], "13-166, T:0-1": [[638, 394], [635, 397], [635, 409], [637, 409], [637, 411], [643, 411], [643, 409], [645, 409], [645, 397], [642, 394]]}, "center": {"4-12": [639, 408], "13-166, T:0-1": [640, 403]}},
{"id": "uctlmf", "name": "Arepa", "description": "Arepas are sandwich-like dishes in Colombia, often filled with cheese, meats, or avocado.", "links": {"website": ["https://en.wikipedia.org/wiki/Arepa"], "subreddit": ["Colombia"]}, "path": {"109-166, T:0-1": [[373, 1270], [370, 1273], [370, 1275], [373, 1278], [376, 1278], [379, 1275], [379, 1273], [376, 1270]]}, "center": {"109-166, T:0-1": [375, 1274]}},
{"id": "ucth8o", "name": "Cube Escape", "description": "Cube Escape is a series of games made by the studio Rusty Lake. Cube Escape's logo is a white \"memory cube\", a staple item in the games.\n\nThe Cube Escape logo was drawn by the Rusty Lake community after the original Rusty Lake logo was destroyed.", "links": {"website": ["http://www.cubeescape.com/"], "subreddit": ["rustylake"]}, "path": {"155-166, T:0-1": [[1416, 50], [1412, 54], [1412, 57], [1414, 59], [1414, 66], [1421, 66], [1421, 61], [1420, 61], [1420, 54]]}, "center": {"155-166, T:0-1": [1416, 56]}},
{"id": "ucsvu7", "name": "Love, Me Normally", "description": "Love, Me Normally is musician Will Wood's hit single. This art contains the logo for WWTV, a fictional TV channel from Love, Me Normally's music video.", "links": {"website": ["https://www.youtube.com/watch?v=yZf7EoV76Po"], "subreddit": ["willwood"]}, "path": {"56-91": [[1949, 741], [1949, 760], [1973, 760], [1973, 741]], "102-165, T:0-1": [[1077, 391], [1077, 401], [1078, 401], [1079, 402], [1079, 406], [1098, 406], [1098, 391]]}, "center": {"56-91": [1961, 751], "102-165, T:0-1": [1088, 399]}},
@@ -7667,7 +7639,7 @@
{"id": "udmtvy", "name": "Carrier Dome", "description": "A stadium in Syracuse University where most of the university's sports teams play.", "links": {"website": ["https://en.wikipedia.org/wiki/Carrier_Dome"], "subreddit": ["SyracuseU"]}, "path": {"127-163, T:0-1": [[1768, 561], [1767, 562], [1766, 562], [1764, 564], [1764, 565], [1767, 568], [1774, 568], [1774, 563], [1773, 562], [1772, 562], [1771, 561]]}, "center": {"127-163, T:0-1": [1769, 565]}},
{"id": "udmm8l", "name": "Kacheek", "description": "A type of pet in Neopets.", "links": {"website": ["https://neopets.fandom.com/wiki/Kacheek"], "subreddit": ["neopets"]}, "path": {"1-166, T:0-1": [[328, 702], [327, 703], [326, 703], [323, 706], [323, 707], [322, 708], [322, 710], [321, 711], [321, 713], [320, 713], [317, 710], [315, 710], [313, 712], [315, 714], [315, 718], [314, 719], [314, 723], [317, 726], [325, 726], [327, 728], [331, 728], [332, 727], [338, 727], [338, 725], [335, 722], [339, 718], [339, 716], [337, 714], [338, 713], [339, 713], [341, 711], [337, 707], [337, 706], [333, 702]]}, "center": {"1-166, T:0-1": [327, 716]}},
{"id": "udmlac", "name": "Feed your Neopets", "description": "A phrase used on official merchandise for Neopets, and a tongue-in-cheek reminder to all of the now-20-30-year olds who played as children.", "links": {"subreddit": ["neopets"]}, "path": {"3-166, T:0-1": [[311, 728], [311, 735], [310, 736], [310, 739], [311, 740], [312, 741], [314, 741], [315, 740], [316, 740], [317, 741], [318, 741], [319, 742], [323, 742], [324, 741], [326, 741], [327, 742], [330, 742], [331, 743], [332, 743], [333, 742], [334, 742], [335, 741], [337, 741], [338, 742], [341, 742], [342, 741], [344, 741], [345, 742], [350, 742], [352, 740], [352, 736], [350, 734], [347, 734], [344, 731], [342, 731], [342, 730], [340, 728]]}, "center": {"3-166, T:0-1": [331, 735]}},
-{"id": "udmhya", "name": "Longnose Alley", "description": "Named after the iconic long nose of Spamton, Longnose Alley was a defensive alliance with smaller communities that were wedged between their larger neighbors. It included Deltarune, Risk of Rain, Madoka Magica, SCP and GOC, Chicago, 100 Gecs, and Tupper Ware Remix Party.", "links": {"subreddit": ["100gecs", "chicago", "DankMemesFromSite19", "Deltarune", "MadokaMagica", "PlaceSCP", "riskofrain", "SCP", "TWRP"]}, "path": {"2-22": [[622, 392], [622, 429], [694, 429], [694, 399], [704, 399], [704, 392]], "23-166, T:0-1": [[706, 392], [706, 398], [698, 398], [698, 429], [622, 429], [622, 430], [480, 430], [480, 399], [622, 399], [622, 392]]}, "center": {"2-22": [663, 411], "23-166, T:0-1": [679, 411]}},
+{"id": "udmhya", "name": "Longnose Alley", "description": "Named after the iconic long nose of Spamton, Longnose Alley was a defensive alliance with smaller communities that were wedged between their larger neighbors. It included Deltarune, Risk of Rain, Madoka Magica, SCP and GOC, Chicago, 100 Gecs, and Tupper Ware Remix Party.", "links": {"subreddit": ["100gecs", "chicago", "DankMemesFromSite19", "Deltarune", "MadokaMagica", "PlaceSCP", "riskofrain", "SCP", "TWRP"], "discord": ["madoka"]}, "path": {"2-22": [[622, 392], [622, 429], [694, 429], [694, 399], [704, 399], [704, 392]], "23-166, T:0-1": [[706, 392], [706, 398], [698, 398], [698, 429], [622, 429], [622, 430], [480, 430], [480, 399], [622, 399], [622, 392]]}, "center": {"2-22": [663, 411], "23-166, T:0-1": [679, 411]}},
{"id": "udmezs", "name": "Kanpachi", "description": "Kanpachi is a character in Cave Story.", "links": {"website": ["https://cavestory.fandom.com/wiki/Kanpachi"], "subreddit": ["cavestory", "place_CentralAlliance"]}, "path": {"136-166, T:0-1": [[621, 890], [619, 892], [618, 891], [617, 891], [615, 889], [612, 889], [612, 896], [614, 896], [614, 891], [615, 891], [617, 893], [618, 893], [619, 894], [619, 896], [620, 896], [622, 898], [624, 898], [625, 897], [625, 896], [627, 894], [627, 892], [625, 890]]}, "center": {"136-166, T:0-1": [622, 894]}},
{"id": "udme6t", "name": "Colon", "description": "Colon is a character in Cave Story.", "links": {"website": ["https://cavestory.fandom.com/wiki/Colons"], "subreddit": ["cavestory", "place_CentralAlliance"]}, "path": {"137-166, 24-106, T:0-1": [[603, 892], [600, 895], [600, 899], [602, 899], [603, 900], [604, 900], [607, 903], [608, 902], [607, 901], [608, 900], [608, 899], [611, 899], [611, 895], [608, 892]]}, "center": {"137-166, 24-106, T:0-1": [606, 896]}},
{"id": "udmdgp", "name": "Puu Black", "description": "Puu Black is a boss character in Cave Story.", "links": {"website": ["https://cavestory.fandom.com/wiki/Puu_Black"], "subreddit": ["cavestory", "place_CentralAlliance"]}, "path": {"137-166, T:0-1": [[600, 885], [598, 887], [598, 895], [596, 897], [596, 898], [601, 898], [601, 895], [603, 893], [608, 893], [610, 895], [610, 897], [621, 897], [621, 896], [620, 895], [620, 892], [621, 891], [625, 891], [626, 892], [627, 892], [627, 889], [628, 888], [628, 887], [626, 885], [599, 885]]}, "center": {"137-166, T:0-1": [614, 891]}},
@@ -7749,7 +7721,7 @@
{"id": "usmv6w", "name": "73", "description": "A hitsplat icon indicating 73 damage in Old School RuneScape. This number is a meme in the OSRS community that originated from a player-vs.-player fight between two OSRS Twitch streamers, B0aty and Skill Specs. During the fight, Skill Specs readied his Armadyl godsword, a weapon known for its powerful special attack, To which B0aty remarked that there was no way the special attack would kill him. Immediately after, The special attack killed B0aty by hitting for 73 damage.", "links": {"website": ["https://youtu.be/VpOIJEE613s?t=161", "https://knowyourmeme.com/memes/73-the-b0aty-number"], "subreddit": ["2007scape"]}, "path": {"38-77": [[121, 33], [117, 37], [117, 50], [120, 53], [129, 53], [130, 54], [135, 54], [139, 50], [139, 46], [141, 46], [141, 40], [140, 40], [140, 36], [137, 33]]}, "center": {"38-77": [129, 43]}},
{"id": "usmfke", "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe. Due to the Russian invasion of Ukraine, many Redditors drew flags of Ukraine to show support for Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"52": [[534, 589], [534, 595], [547, 595], [547, 594], [543, 592], [540, 592], [540, 589]], "58": [[543, 596], [543, 597], [545, 599], [548, 599], [548, 596]], "32-39": [[131, 33], [131, 40], [144, 40], [144, 33]], "18-31": [[135, 33], [135, 40], [144, 40], [144, 37], [145, 36], [145, 33]], "92-95": [[1795, 445], [1795, 450], [1799, 450], [1800, 449], [1808, 449], [1808, 445]], "71-74": [[506, 595], [506, 601], [542, 601], [542, 595]], "1-8": [[714, 805], [714, 815], [733, 815], [733, 810], [734, 809], [734, 805], [729, 805], [728, 804], [719, 804], [718, 805]]}, "center": {"52": [537, 592], "58": [546, 598], "32-39": [138, 37], "18-31": [140, 37], "92-95": [1798, 448], "71-74": [524, 598], "1-8": [724, 810]}},
{"id": "usmdg8", "name": "Communism", "description": "Communism is a political philosophy that revolves around common ownership of resources in a community. This art depicts a common communist symbol, a hammer and sickle on a red background, used by communist societies such as the Soviet Union and the Chinese Communist Party.", "links": {"website": ["https://en.wikipedia.org/wiki/Communism", "https://en.wikipedia.org/wiki/Hammer_and_sickle"], "subreddit": ["communism"]}, "path": {"19-36": [[160, 34], [160, 57], [182, 57], [182, 34]], "56-65": [[1862, 377], [1858, 382], [1858, 390], [1870, 390], [1870, 385], [1871, 384], [1871, 380], [1866, 377]], "96-99": [[1481, 416], [1495, 416], [1495, 427], [1481, 427]]}, "center": {"19-36": [171, 46], "56-65": [1864, 384], "96-99": [1488, 422]}},
-{"id": "usm0g8", "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": {"4-9": [[87, 35], [87, 41], [93, 41], [93, 35]], "10-12": [[111, 37], [111, 43], [120, 43], [120, 37]], "61-64": [[1682, 725], [1682, 731], [1687, 731], [1687, 727], [1688, 726], [1688, 725]], "112-115": [[1752, 700], [1752, 706], [1770, 706], [1770, 700], [1765, 700], [1765, 706], [1755, 706], [1755, 700]]}, "center": {"4-9": [90, 38], "10-12": [116, 40], "61-64": [1684, 728], "112-115": [1768, 703]}},
+{"id": "usm0g8", "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": {"4-9": [[87, 35], [87, 41], [93, 41], [93, 35]], "10-12": [[111, 37], [111, 43], [120, 43], [120, 37]], "61-64": [[1682, 725], [1682, 731], [1687, 731], [1687, 727], [1688, 726], [1688, 725]], "112-115": [[1752, 700], [1752, 706], [1770, 706], [1770, 700], [1765, 700], [1765, 706], [1755, 706], [1755, 700]], "74-76": [[1062, 886], [1062, 892], [1070, 892], [1070, 886]], "78-82": [[1062, 886], [1062, 892], [1068, 892], [1068, 886]]}, "center": {"4-9": [90, 38], "10-12": [116, 40], "61-64": [1684, 728], "112-115": [1768, 703], "74-76": [1066, 889], "78-82": [1065, 889]}},
{"id": "uslwi8", "name": "Among Us crewmate", "description": "A character from the social deduction game Among Us.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"9-15": [[72, 42], [71, 43], [70, 43], [68, 45], [68, 46], [67, 46], [63, 50], [63, 54], [69, 54], [69, 64], [71, 64], [71, 63], [72, 63], [76, 59], [78, 59], [81, 56], [81, 45], [79, 43], [78, 43], [77, 42]], "86-95": [[1187, 414], [1184, 417], [1184, 420], [1185, 420], [1185, 423], [1191, 423], [1191, 419], [1192, 419], [1192, 416], [1190, 414]], "60-74": [[1887, 469], [1884, 472], [1884, 474], [1885, 474], [1885, 477], [1891, 477], [1891, 471], [1889, 469]], "121-133": [[1978, 541], [1971, 548], [1971, 553], [1974, 556], [1974, 557], [1977, 560], [1983, 560], [1986, 557], [1986, 551], [1987, 551], [1987, 546], [1982, 541]], "2-3": [[662, 769], [660, 771], [659, 773], [659, 774], [660, 775], [660, 780], [666, 780], [666, 778], [668, 775], [668, 771], [666, 769]]}, "center": {"9-15": [74, 49], "86-95": [1188, 418], "60-74": [1888, 474], "121-133": [1979, 551], "2-3": [664, 773]}},
{"id": "uu388f", "name": "Will of the People", "description": "An upcoming album by British rock band Muse.", "links": {"website": ["https://en.wikipedia.org/wiki/Will_of_the_People_(album)"], "subreddit": ["Muse"]}, "path": {"48-113": [[77, 54], [77, 63], [86, 63], [86, 54]], "114-164, T:0-1": [[78, 54], [78, 63], [87, 63], [87, 54]]}, "center": {"48-113": [82, 59], "114-164, T:0-1": [83, 59]}},
{"id": "uu34f8", "name": "Simulation Theory", "description": "An album released by British rock band Muse in 2018.", "links": {"website": ["https://en.wikipedia.org/wiki/Simulation_Theory_(album)"], "subreddit": ["Muse"]}, "path": {"37-114": [[69, 54], [69, 63], [78, 63], [78, 54]], "115-164, T:0-1": [[70, 54], [70, 63], [79, 63], [79, 54]]}, "center": {"37-114": [74, 59], "115-164, T:0-1": [75, 59]}},
@@ -7774,7 +7746,7 @@
{"id": "uz2coe", "name": "RoundedTB", "description": "An application for modifying the shape of the Windows taskbar", "links": {"website": ["https://github.com/torchgm/RoundedTB"], "discord": ["wYQJd8VGSB"]}, "path": {"164": [[1567, 1333], [1567, 1339], [1573, 1339], [1573, 1333]]}, "center": {"164": [1570, 1336]}},
{"id": "uz2bdg", "name": "TranslucentTB", "description": "An application for modifying the appearance of the Windows taskbar", "links": {"website": ["https://github.com/translucenttb/translucenttb"], "discord": ["translucenttb"]}, "path": {"164": [[1561, 1333], [1561, 1339], [1567, 1339], [1567, 1333]]}, "center": {"164": [1564, 1336]}},
{"id": "ux6b2h", "name": "The Amazing Maker Pen!", "description": "The maker pen is one of the tools that are available in the Backpack Menu of the Watch Menu in Rec Room. it replaced the former 3D Pen and can be used to create objects that consist of primitive 3D shapes (spheres, boxes, etc.) of various colors, as well as spawn in props from all of the RROs. it's also the icon of the official 'Rec Room Creative Club' Discord server (linked below) and YouTube channel.", "links": {"website": ["https://rec-room.fandom.com/wiki/Maker_Pen"], "discord": ["bbVUBSY4BK"]}, "path": {"41-58": [[391, 964], [401, 964], [401, 972], [391, 972]]}, "center": {"41-58": [396, 968]}},
-{"id": "ux5nab", "name": "Chad Sol de Mayo", "description": "The \"Sol de Mayo Chad\", symbol of r/dankgentina, a sub of dank memes from Argentina, which is the Sun of May (Symbol of the Argentine flag) but with the face of the popular Mega Chad meme.\n\nIt was a joint project between r/argentina and r/dankgentina, Two subs who hate each other.", "links": {"subreddit": ["dankgentina", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"164": [[1649, 1841], [1683, 1844], [1687, 1876], [1685, 1902], [1620, 1897], [1622, 1840]]}, "center": {"164": [1651, 1870]}},
+{"id": "ux5nab", "name": "Chad Sol de Mayo", "description": "The \"Sol de Mayo Chad\", symbol of r/dankgentina, a sub of dank memes from Argentina, which is the Sun of May (Symbol of the Argentine flag) but with the face of the popular Mega Chad meme.\n\nIt was a joint project between r/argentina and r/dankgentina, Two subs who hate each other.", "links": {"subreddit": ["dankgentina", "argentina", "Republica_Argentina"]}, "path": {"164": [[1649, 1841], [1683, 1844], [1687, 1876], [1685, 1902], [1620, 1897], [1622, 1840]]}, "center": {"164": [1651, 1870]}},
{"id": "uuo2vp", "name": "Xomni Logo", "description": "Xomni is an inter-planetary Discord Roleplay, which has a deep history built across 2 years by various players. It is currently working on worldbuilding the universe further by developing every single one of its facets.", "links": {"website": ["https://xomni.miraheze.org/wiki/Main_Page"], "discord": ["84gDCrVaQf"]}, "path": {"164": [[525, 1524], [534, 1524], [534, 1533], [525, 1533]]}, "center": {"164": [530, 1529]}},
{"id": "usqfao", "name": "Rhythm Heaven", "description": "Rhythm Heaven is a rhythm game franchise by Nintendo, made in collaboration with TSUNKU♂ and TNX. This art featured the Perfect P, the Barista, and a rainbow background symbolizing the color scheme of Rhythm Heaven Fever. \n\nThis is the first area where Rhythm Heaven appeared, lasting from April 2nd, 6:30 PM GMT to April 3rd, 11:30 AM GMT. It was eventually destroyed by the void, and after attempts to return it were made, it was ultimately replaced by the logo of Twitch streamer Cristinini, and was moved to the r/earthbound section.", "links": {"website": ["https://en.wikipedia.org/wiki/Rhythm_Heaven"], "subreddit": ["rhythmheaven"]}, "path": {"56-93": [[1797, 704], [1797, 702], [1795, 702], [1795, 701], [1794, 701], [1794, 698], [1795, 698], [1795, 696], [1794, 696], [1794, 686], [1795, 686], [1795, 679], [1814, 679], [1814, 676], [1815, 675], [1817, 675], [1818, 674], [1821, 674], [1822, 675], [1824, 675], [1825, 676], [1825, 678], [1824, 679], [1823, 679], [1823, 681], [1824, 681], [1824, 685], [1822, 685], [1822, 688], [1816, 688], [1816, 704]]}, "center": {"56-93": [1805, 691]}},
{"id": "urws58", "name": "Lesbian pride flag", "description": "", "links": {"subreddit": ["actuallesbians"]}, "path": {"164": [[1153, 935], [1160, 935], [1160, 953], [1153, 953]]}, "center": {"164": [1157, 944]}},
@@ -7789,7 +7761,7 @@
{"id": "upr4iv", "name": "Panda", "description": "A small panda to represent the musician Disuko.", "links": {"website": ["http://disuko.gay"], "subreddit": ["panda_place"]}, "path": {"164": [[267, 1805], [268, 1805], [269, 1806], [270, 1806], [271, 1806], [272, 1806], [273, 1806], [274, 1805], [275, 1805], [276, 1806], [276, 1807], [275, 1808], [275, 1809], [275, 1810], [275, 1811], [275, 1812], [274, 1813], [273, 1814], [272, 1814], [271, 1814], [270, 1814], [269, 1814], [268, 1813], [267, 1812], [267, 1811], [267, 1810], [267, 1809], [267, 1808], [266, 1807], [266, 1806]]}, "center": {"164": [271, 1810]}},
{"id": "uph7lb", "name": "Dragon Mahjong tiles", "description": "Small pictures of the red and white dragon Mahjong tiles, later consumed by the EVE Online community.", "links": {"website": ["https://en.wikipedia.org/wiki/Mahjong_tiles#Dragons", "https://en.wikipedia.org/wiki/Mahjong"], "subreddit": ["Mahjong"]}, "path": {"10-15": [[20, 36], [34, 36], [34, 47], [20, 47]]}, "center": {"10-15": [27, 42]}},
{"id": "upflyl", "name": "Plok", "description": "Plok is the titular character of Plok!, a platformer game for SNES made by Ste and John Pickford. Plok later returned in a webcomic, also created by the Pickfords.", "links": {"website": ["http://www.zee-3.com/plok/index.php?comic=980", "https://plok.fandom.com/wiki/Plok!_Wiki", "https://en.wikipedia.org/wiki/Plok!"], "subreddit": ["plok"]}, "path": {"141-157": [[1508, 367], [1506, 369], [1504, 372], [1504, 376], [1513, 376], [1513, 371], [1512, 371], [1512, 369], [1510, 367]]}, "center": {"141-157": [1508, 372]}},
-{"id": "upd8ls", "name": "Flag of the European Union", "description": "The European Union 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"], "wiki": ["PlaceEU"]}, "path": {"8-22": [[226, 528], [226, 552], [250, 552], [250, 550], [252, 548], [254, 547], [261, 547], [259, 542], [261, 540], [264, 543], [268, 543], [268, 539], [275, 539], [275, 535], [274, 534], [274, 528]], "4-7": [[229, 521], [229, 528], [227, 528], [227, 544], [249, 544], [249, 521]]}, "center": {"8-22": [238, 540], "4-7": [238, 533]}},
+{"id": "upd8ls", "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"], "wiki": ["PlaceEU"]}, "path": {"8-22": [[226, 528], [226, 552], [250, 552], [250, 550], [252, 548], [254, 547], [261, 547], [259, 542], [261, 540], [264, 543], [268, 543], [268, 539], [275, 539], [275, 535], [274, 534], [274, 528]], "4-7": [[229, 521], [229, 528], [227, 528], [227, 544], [249, 544], [249, 521]]}, "center": {"8-22": [238, 540], "4-7": [238, 533]}},
{"id": "upcuc9", "name": "Katawa Shoujo", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average 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. The heart design is the logo of the game, and a direct precursor to this design was on the final image of the previous 2017 r/place.", "links": {"website": ["https://www.katawa-shoujo.com/", "https://en.wikipedia.org/wiki/Katawa_Shoujo"], "subreddit": ["katawashoujo"]}, "path": {"31-49": [[481, 212], [481, 229], [496, 229], [496, 212]]}, "center": {"31-49": [489, 221]}},
{"id": "up6xcp", "name": "Axis Order", "description": "The logo of the Axis Order from anime \"Konosuba\", added by the Axis Order Discord community.", "links": {"website": ["https://axisorder.com/"], "discord": ["hB3Duxf"]}, "path": {"3-7": [[364, 19], [373, 10], [382, 19], [373, 28]]}, "center": {"3-7": [373, 19]}},
{"id": "up27fs", "name": "fishmonger", "description": "fishmonger is an album by EDM/hyperpop musician underscores. This art depicts the smiling water tower that appears on the cover art of the album.", "links": {"website": ["https://www.discogs.com/master/2590760-underscores-Fishmonger", "https://underscores.bandcamp.com/album/fishmonger"], "subreddit": ["underscores"], "discord": ["UeWkrt7XTD"]}, "path": {"22-166, T:0-1": [[491, 729], [488, 732], [488, 735], [492, 738], [494, 738], [497, 735], [497, 731], [495, 729]]}, "center": {"22-166, T:0-1": [493, 733]}},
@@ -7819,7 +7791,7 @@
{"id": "v804mg", "name": "Among Us crewmate", "description": "A character from the social deduction game Among Us.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"86-94": [[77, 72], [77, 76], [75, 76], [75, 83], [77, 83], [77, 91], [94, 91], [94, 87], [93, 87], [93, 72], [91, 72], [91, 71], [80, 71], [80, 72]]}, "center": {"86-94": [85, 80]}},
{"id": "v801gz", "name": "Shrek", "description": "The titular ogre character from the Shrek franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Shrek_(character)"]}, "path": {"78-93": [[29, 70], [28, 71], [26, 71], [26, 72], [28, 74], [28, 77], [27, 78], [27, 85], [28, 86], [28, 92], [40, 92], [44, 88], [44, 70]]}, "center": {"78-93": [35, 82]}},
{"id": "v9cg79", "name": "Flag of Puerto Rico", "description": "Puerto Rico is a Caribbean island and a territory of the United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico", "https://en.wikipedia.org/wiki/Flag_of_Puerto_Rico"], "subreddit": ["PuertoRico"]}, "path": {"79-114": [[527, 616], [527, 622], [535, 622], [535, 616]], "118-157, T:0-1": [[527, 617], [527, 623], [535, 623], [535, 617]]}, "center": {"79-114": [531, 619], "118-157, T:0-1": [531, 620]}},
-{"id": "v9cevg", "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", "Republica_Argentina", "dankargentina"]}, "path": {"130-132": [[27, 73], [27, 77], [33, 77], [33, 73]], "13-14": [[283, 254], [280, 257], [283, 260], [286, 257]], "101-102": [[1124, 682], [1124, 686], [1128, 686], [1128, 682]], "78-99": [[1374, 660], [1374, 671], [1619, 671], [1619, 660]], "70-77": [[1372, 660], [1372, 671], [1460, 671], [1460, 660]]}, "center": {"130-132": [30, 75], "13-14": [283, 257], "101-102": [1126, 684], "78-99": [1497, 666], "70-77": [1416, 666]}},
+{"id": "v9cevg", "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", "Republica_Argentina"]}, "path": {"130-132": [[27, 73], [27, 77], [33, 77], [33, 73]], "13-14": [[283, 254], [280, 257], [283, 260], [286, 257]], "101-102": [[1124, 682], [1124, 686], [1128, 686], [1128, 682]], "78-99": [[1374, 660], [1374, 671], [1619, 671], [1619, 660]], "70-77": [[1372, 660], [1372, 671], [1460, 671], [1460, 660]]}, "center": {"130-132": [30, 75], "13-14": [283, 257], "101-102": [1126, 684], "78-99": [1497, 666], "70-77": [1416, 666]}},
{"id": "v9cdzh", "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": {"128-135": [[32, 73], [32, 77], [38, 77], [38, 73]], "95-117": [[1129, 657], [1129, 661], [1135, 661], [1135, 657]], "71-72": [[1130, 659], [1127, 662], [1127, 663], [1132, 663], [1132, 659]]}, "center": {"128-135": [35, 75], "95-117": [1132, 659], "71-72": [1130, 661]}},
{"id": "v9hy6v", "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/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"8-12": [[0, 74], [0, 81], [9, 81], [9, 74]], "107-114": [[1788, 428], [1788, 431], [1790, 433], [1795, 433], [1797, 431], [1797, 428]], "131-138": [[448, 597], [448, 602], [457, 602], [457, 621], [465, 621], [465, 597]]}, "center": {"8-12": [5, 78], "107-114": [1793, 431], "131-138": [461, 607]}},
{"id": "v9hw6c", "name": "r/place", "description": "The logo of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/R/place"], "subreddit": ["place"]}, "path": {"94-95": [[4, 85], [4, 91], [10, 91], [10, 85]]}, "center": {"94-95": [7, 88]}},
@@ -7842,7 +7814,7 @@
{"id": "vpeb84", "name": "Muff3ntop", "description": "Muff3ntop is a content creator on YouTube.\n\nThis art was destroyed countless times, only to prevail in the end.", "links": {"website": ["https://www.youtube.com/channel/UC8bEfS6GSsfv3QyUL-yjvIA"], "subreddit": ["Muff3ntop"]}, "path": {"113-126, 155-166, T:0-1": [[1997, 452], [1995, 454], [1996, 455], [1996, 457], [2000, 457], [2000, 452]]}, "center": {"113-126, 155-166, T:0-1": [1998, 454]}},
{"id": "vo5or9", "name": "proacventure", "description": "Logo from proacventure, a little Spanish streamer.", "links": {"website": ["https://www.twitch.tv/proacventure"]}, "path": {"138-167, T:0-1": [[1545, 105], [1560, 105], [1560, 114], [1545, 114]]}, "center": {"138-167, T:0-1": [1553, 110]}},
{"id": "vnpyb9", "name": "Ninjaxx's face", "description": "the face of Ninjaxx: a french YouTuber", "links": {"website": ["https://www.youtube.com/c/Ninjaxx"]}, "path": {"157-165": [[645, 1529], [636, 1529], [636, 1522], [645, 1522]]}, "center": {"157-165": [641, 1526]}},
-{"id": "vmifc9", "name": "pepeD", "description": "pepeD is an animated BetterTTV extension Twitch emote of pixel art animation of Pepe the Frog dancing by turning left and right and raising and lowering his left and right arms. After the emoji was enabled by a number of popular streamers, it became a popular way of expressing approval of the music which is being played, or expressing joy.", "links": {"website": ["https://betterttv.com/emotes/5b1740221c5a6065a7bad4b5", "https://knowyourmeme.com/memes/peped"]}, "path": {"164": [[1851, 1736], [1863, 1736], [1863, 1743], [1851, 1743]]}, "center": {"164": [1857, 1740]}},
+{"id": "vmifc9", "name": "pepeD", "description": "pepeD is an animated BetterTTV extension Twitch emote of pixel art animation of Pepe the Frog dancing by turning left and right and raising and lowering his left and right arms. After the emoji was enabled by a number of popular streamers, it became a popular way of expressing approval of the music which is being played, or expressing joy.", "links": {"website": ["https://betterttv.com/emotes/5b1740221c5a6065a7bad4b5", "https://knowyourmeme.com/memes/peped"]}, "path": {"125-129": [[1421, 838], [1421, 841], [1423, 843], [1431, 843], [1436, 838], [1432, 835], [1428, 835], [1425, 837], [1424, 838]], "89-110": [[1826, 818], [1826, 821], [1828, 823], [1835, 823], [1840, 818], [1839, 817], [1838, 817], [1836, 815], [1832, 815], [1829, 818]], "80-88": [[1826, 816], [1826, 819], [1828, 821], [1835, 821], [1840, 816], [1839, 815], [1838, 815], [1836, 813], [1832, 813], [1829, 816]], "163-165": [[1851, 1736], [1851, 1738], [1850, 1739], [1850, 1741], [1852, 1743], [1859, 1743], [1864, 1738], [1860, 1735], [1856, 1735], [1855, 1736]]}, "center": {"125-129": [1429, 839], "89-110": [1833, 819], "80-88": [1833, 817], "163-165": [1857, 1739]}},
{"id": "vmzo17", "name": "Pinewood Builders", "description": "Pinewood Builders is a group in the game platform Roblox.", "links": {"website": ["https://www.roblox.com/groups/159511/Pinewood-Builders#!/about"], "subreddit": ["PinewoodBuilders"], "discord": ["RHWxvhc"], "wiki": ["Pinewood_Builders"]}, "path": {"114-117": [[681, 1484], [681, 1502], [699, 1502], [699, 1484]], "1-3": [[22, 274], [43, 274], [43, 295], [22, 295]]}, "center": {"114-117": [690, 1493], "1-3": [33, 285]}},
{"id": "vm1x57", "name": "The Surprised One (Place Squad)", "description": "A simple surprised face :)/n/nBuild by :/n- Gastar/n- Julot/n/n| Part of the Place Squad Community |", "links": {"subreddit": ["placesquad"], "discord": ["Pk586W2aTA"]}, "path": {"142-147": [[1578, 977], [1583, 977], [1583, 986], [1578, 986], [1578, 977], [1579, 977]]}, "center": {"142-147": [1581, 982]}},
{"id": "vm1va9", "name": "The Perplex One", "description": "A simple perplex face =|/n/nBuild by : /n- Gastar/n- Julot /n/n| Part of the Place Squad Community |", "links": {"subreddit": ["placesquad"], "discord": ["Pk586W2aTA"]}, "path": {"147-150": [[1584, 1041], [1590, 1041], [1590, 1046], [1584, 1046]]}, "center": {"147-150": [1587, 1044]}},
@@ -7881,7 +7853,7 @@
{"id": "w4lvw7", "name": "Minecraft Hardcore hearts", "description": "Three hearts that appear 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": {"1-18": [[218, 55], [215, 58], [215, 61], [220, 66], [242, 66], [246, 62], [246, 57], [244, 55]]}, "center": {"1-18": [231, 61]}},
{"id": "w6rh82", "name": "Adult Baby/Diaper Lovers", "description": "ABDL, or Adult Baby/Diaper Lovers, is a group of people who enjoy wearing diapers and/or acting like infants, for many different reasons. Here's a space for all of them, including the ABDL subreddit and Discord server.", "links": {"website": ["https://en.wikipedia.org/wiki/Paraphilic_infantilism"], "subreddit": ["ABDL"], "discord": ["ABDL"]}, "path": {"72-100": [[1444, 216], [1439, 220], [1437, 225], [1437, 235], [1439, 238], [1439, 243], [1445, 248], [1445, 252], [1447, 254], [1451, 254], [1465, 265], [1489, 242], [1489, 226], [1484, 218], [1478, 214], [1443, 214]]}, "center": {"72-100": [1463, 236]}},
{"id": "w9kgjt", "name": "Maryland hearts", "description": "Hearts depicting the yellow/black portion of the flag of Maryland.", "links": {"website": ["https://en.wikipedia.org/wiki/Maryland"], "subreddit": ["maryland"]}, "path": {"20-44": [[272, 32], [270, 34], [270, 36], [274, 40], [283, 40], [287, 36], [287, 34], [285, 32]], "115-146, 70-87": [[254, 32], [252, 34], [252, 36], [256, 40], [292, 40], [296, 36], [296, 34], [294, 32]]}, "center": {"20-44": [279, 36], "115-146, 70-87": [274, 36]}},
-{"id": "w9kds5", "name": "Finland heart", "description": "A heart depicting the flag of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["maryland", "place_nordicunion", "Suomi"]}, "path": {"148-165, T:0-1": [[290, 32], [288, 34], [288, 36], [292, 40], [296, 36], [296, 34], [294, 32]]}, "center": {"148-165, T:0-1": [292, 35]}},
+{"id": "w9kds5", "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": ["maryland", "place_nordicunion", "Suomi"]}, "path": {"148-165, T:0-1": [[290, 32], [288, 34], [288, 36], [292, 40], [296, 36], [296, 34], [294, 32]]}, "center": {"148-165, T:0-1": [292, 35]}},
{"id": "w9kcic", "name": "Iceland heart", "description": "A heart depicting the flag of Iceland.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland"], "subreddit": ["maryland", "place_nordicunion", "Iceland"]}, "path": {"148-165, T:0-1": [[281, 32], [279, 34], [279, 36], [283, 40], [287, 36], [287, 34], [285, 32]]}, "center": {"148-165, T:0-1": [283, 35]}},
{"id": "w9kaxm", "name": "Denmark heart", "description": "A heart depicting the flag of Denmark.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark"], "subreddit": ["maryland", "place_nordicunion", "Denmark"]}, "path": {"20-33": [[266, 32], [265, 33], [265, 39], [274, 39], [274, 33], [273, 32]], "34-44": [[266, 32], [265, 33], [265, 39], [266, 39], [269, 36], [269, 34], [267, 32]], "146-165, T:0-1": [[272, 32], [270, 34], [270, 36], [274, 40], [278, 36], [278, 34], [276, 32]]}, "center": {"20-33": [270, 36], "34-44": [267, 36], "146-165, T:0-1": [274, 35]}},
{"id": "w9k8gq", "name": "Norway heart", "description": "A heart depicting the flag of Norway.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway"], "subreddit": ["maryland", "place_nordicunion", "Norge"]}, "path": {"21-39": [[290, 32], [288, 34], [288, 36], [292, 40], [296, 36], [296, 34], [294, 32]], "149-165, T:0-1": [[263, 32], [261, 34], [261, 36], [265, 40], [269, 36], [269, 34], [267, 32]]}, "center": {"21-39": [292, 35], "149-165, T:0-1": [265, 35]}},
@@ -7916,7 +7888,7 @@
{"id": "wsj4xh", "name": "Sápmi", "description": "Sápmi (formerly known as Lapland) is a region in northern Europe historically inhabited by the Sámi people. It includes the northern parts of Norway, Sweden, Finland, and of Murmansk Oblast, Russia.", "links": {"website": ["https://en.wikipedia.org/wiki/S%C3%A1pmi"], "subreddit": ["place_nordicunion", "SaamiPeople"]}, "path": {"118-166, T:0-1": [[503, 38], [503, 44], [523, 44], [523, 38], [511, 38], [511, 35], [509, 35], [509, 37], [508, 38]]}, "center": {"118-166, T:0-1": [509, 41]}},
{"id": "wsia2j", "name": "Norway-Netherlands heart", "description": "A heart depicting the flags of Norway and the Netherlands.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://en.wikipedia.org/wiki/Netherlands"], "subreddit": ["PlaceNL", "thenetherlands", "place_nordicunion", "Norge"]}, "path": {"46-56": [[465, 30], [462, 33], [462, 36], [469, 44], [476, 36], [476, 33], [473, 30], [471, 30], [470, 31], [468, 31], [467, 30]]}, "center": {"46-56": [469, 36]}},
{"id": "wwt7uj", "name": "420/69", "description": "This box contains the coordinates (420, 69), which me and some friends attempted to make green for \"peak internet humor\". We failed.", "links": {"website": ["https://knowyourmeme.com/memes/events/420", "https://knowyourmeme.com/memes/69"]}, "path": {"1-6": [[418, 65], [418, 70], [422, 70], [422, 65]]}, "center": {"1-6": [420, 68]}},
-{"id": "wwqg2k", "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise. This is the sprite for Small Mario from the original Super Mario Bros. game, though with his modern color palette.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"], "subreddit": ["Mario"]}, "path": {"21-28": [[444, 0], [444, 1], [443, 1], [443, 11], [441, 13], [441, 14], [454, 14], [454, 4], [455, 3], [451, 0]]}, "center": {"21-28": [449, 6]}},
+{"id": "wwqg2k", "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise. This is the sprite for Small Mario from the original Super Mario Bros. game, though with his modern color palette.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"], "subreddit": ["Mario"]}, "path": {"21-28": [[444, 0], [444, 1], [443, 1], [443, 11], [441, 13], [441, 14], [454, 14], [454, 4], [455, 3], [451, 0]], "75-81": [[1079, 852], [1076, 856], [1076, 861], [1075, 862], [1075, 866], [1076, 866], [1076, 869], [1088, 869], [1088, 858], [1100, 858], [1100, 855], [1089, 855], [1089, 853], [1086, 853], [1085, 852]]}, "center": {"21-28": [449, 6], "75-81": [1082, 863]}},
{"id": "wwtqne", "name": "Albert Heijn", "description": "Albert Heijn is a chain of supermarkets in the Netherlands.", "links": {"website": ["https://www.ah.nl/", "https://en.wikipedia.org/wiki/Albert_Heijn"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"44-51": [[180, 96], [180, 125], [207, 125], [207, 96]]}, "center": {"44-51": [194, 111]}},
{"id": "wwuef9", "name": "Oosterscheldekering", "description": "The Oosterscheldekering (English: \"Eastern Scheldt storm surge barrier\") is a dam and storm surge barrier in the Netherlands. It is the largest structure in the Delta Works (Deltawerken) project, a series of structures designed to protect the Netherlands from flooding from the North Sea after a disastrous flood in 1953.", "links": {"website": ["https://en.wikipedia.org/wiki/Oosterscheldekering"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"T:0-1": [[388, 14], [388, 22], [387, 22], [387, 32], [386, 32], [384, 34], [384, 35], [489, 35], [489, 33], [486, 33], [486, 14]]}, "center": {"T:0-1": [437, 25]}},
{"id": "wyg6ev", "name": "Netherlands-Sweden heart", "description": "A heart depicting the flags of the Netherlands and Sweden", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Sweden"], "subreddit": ["PlaceNL", "thenetherlands", "place_nordicunion", "sweden"]}, "path": {"47-69": [[528, 30], [525, 33], [525, 36], [532, 43], [539, 36], [539, 33], [536, 30], [534, 30], [532, 32], [530, 30]]}, "center": {"47-69": [532, 37]}},
@@ -7973,7 +7945,7 @@
{"id": "xgzfkn", "name": "193∞", "description": "Mustafa Kemal Atatürk served as the first president of Turkey from 1923 until his death in 1938. The 8 is turned on its side to become an infinity symbol, as Atatürk's legacy continues to the present day.", "links": {"website": ["https://en.wikipedia.org/wiki/Mustafa_Kemal_Atat%C3%BCrk"], "subreddit": ["Turkey"]}, "path": {"16-51": [[800, 36], [800, 69], [870, 69], [870, 36]]}, "center": {"16-51": [835, 53]}},
{"id": "xgz8rs", "name": "Minion", "description": "Minions are small, yellow, cylindrical creatures with one or two eyes. They are the signature characters and comic relief of the Despicable Me series. They speak in an incomprehensible language called Minionese, occasionally switching to English. They are childish in some ways, yet they seem to be very intelligent in certain aspects.", "links": {"website": ["https://despicableme.fandom.com/wiki/Minions", "https://en.wikipedia.org/wiki/Minions_(Despicable_Me)"]}, "path": {"79-85": [[816, 0], [815, 1], [815, 4], [814, 5], [814, 10], [818, 10], [818, 8], [820, 8], [820, 10], [823, 10], [825, 8], [825, 0]], "18-29": [[881, 71], [881, 82], [893, 82], [893, 71]]}, "center": {"79-85": [821, 4], "18-29": [887, 77]}},
{"id": "xgz5zq", "name": "Hello Kitty", "description": "Hello Kitty is a fictional cat character and a mainstay in Japanese culture. The Hello Kitty franchise is one of the largest media franchises of all time.", "links": {"website": ["https://en.wikipedia.org/wiki/Hello_Kitty"]}, "path": {"75-85": [[834, 16], [832, 18], [832, 29], [836, 34], [845, 34], [849, 29], [849, 18], [847, 16], [843, 16], [842, 15], [841, 15], [840, 16]], "92-102": [[1325, 428], [1323, 430], [1323, 435], [1326, 438], [1333, 438], [1336, 435], [1336, 430], [1334, 428]]}, "center": {"75-85": [841, 25], "92-102": [1330, 433]}},
-{"id": "xgz1bv", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"79-85": [[867, 1], [867, 7], [880, 7], [880, 1]], "5-21": [[811, 85], [811, 91], [847, 91], [847, 85]], "22-23": [[799, 85], [799, 91], [847, 91], [847, 85]], "24-29": [[799, 85], [799, 91], [841, 91], [841, 85]]}, "center": {"79-85": [874, 4], "5-21": [829, 88], "22-23": [823, 88], "24-29": [820, 88]}},
+{"id": "xgz1bv", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"79-85": [[867, 1], [867, 7], [880, 7], [880, 1]], "5-21": [[811, 85], [811, 91], [847, 91], [847, 85]], "22-23": [[799, 85], [799, 91], [847, 91], [847, 85]], "24-29": [[799, 85], [799, 91], [841, 91], [841, 85]], "64-65": [[1074, 886], [1074, 892], [1076, 892], [1076, 891], [1078, 891], [1078, 886]]}, "center": {"79-85": [874, 4], "5-21": [829, 88], "22-23": [823, 88], "24-29": [820, 88], "64-65": [1076, 889]}},
{"id": "xh0x6q", "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": {"27-29": [[840, 79], [840, 84], [849, 84], [849, 79]], "21-23": [[995, 88], [995, 93], [1000, 93], [1000, 88]], "133-155": [[1671, 515], [1671, 520], [1678, 520], [1682, 516], [1682, 515]], "94-125": [[1662, 515], [1662, 520], [1679, 520], [1679, 515]], "83-86": [[1684, 515], [1684, 520], [1690, 520], [1690, 515]], "T:0-1": [[1672, 515], [1672, 520], [1678, 520], [1678, 515]]}, "center": {"27-29": [845, 82], "21-23": [998, 91], "133-155": [1677, 518], "94-125": [1671, 518], "83-86": [1687, 518], "T:0-1": [1675, 518]}},
{"id": "xh0n3u", "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise. This is the sprite for Small Mario from the original Super Mario Bros. game.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"], "subreddit": ["Mario"]}, "path": {"3-13": [[859, 64], [857, 66], [857, 69], [856, 70], [856, 73], [855, 73], [855, 78], [858, 78], [858, 76], [859, 76], [859, 75], [863, 75], [866, 73], [866, 71], [867, 70], [867, 65], [864, 65], [864, 64]], "77-94": [[419, 235], [417, 237], [416, 239], [416, 240], [419, 243], [424, 243], [427, 241], [428, 239], [427, 238], [427, 236], [424, 236], [423, 235]], "25-46": [[524, 235], [522, 237], [521, 239], [521, 250], [520, 251], [520, 252], [533, 252], [533, 240], [531, 236], [527, 235]]}, "center": {"3-13": [862, 70], "77-94": [422, 239], "25-46": [527, 241]}},
{"id": "xh0lec", "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)"], "subreddit": ["Kirby"]}, "path": {"13-29": [[848, 69], [848, 77], [888, 77], [888, 69]], "5-12": [[872, 69], [872, 77], [880, 77], [880, 69]], "77-106": [[1437, 367], [1437, 376], [1436, 376], [1436, 379], [1438, 381], [1448, 381], [1448, 375], [1447, 375], [1447, 367]]}, "center": {"13-29": [868, 73], "5-12": [876, 73], "77-106": [1442, 374]}},
@@ -8037,7 +8009,7 @@
{"id": "xlkhg2", "name": "Flag of Chile", "description": "Chile is a country on the west coast of South America.", "links": {"website": ["https://en.wikipedia.org/wiki/Chile", "https://en.wikipedia.org/wiki/Flag_of_Chile"], "subreddit": ["chile"]}, "path": {"15": [[379, 264], [376, 267], [379, 270], [382, 267]], "120-132": [[1290, 2], [1290, 12], [1324, 12], [1324, 2]], "83-88": [[1901, 263], [1901, 269], [1911, 269], [1911, 263]], "57-60": [[1868, 491], [1868, 496], [1871, 499], [1872, 498], [1874, 498], [1877, 494], [1877, 491]], "115-119": [[1120, 647], [1120, 650], [1125, 650], [1125, 647]]}, "center": {"15": [379, 267], "120-132": [1307, 7], "83-88": [1906, 266], "57-60": [1872, 495], "115-119": [1123, 649]}},
{"id": "xlka82", "name": "😂", "description": "An emoji known as \"Face with Tears of Joy\". It is commonly used to indicate laughter.", "links": {"website": ["https://en.wikipedia.org/wiki/Face_with_Tears_of_Joy_emoji"]}, "path": {"74-88": [[1347, 0], [1344, 1], [1341, 5], [1341, 10], [1343, 13], [1346, 13], [1347, 14], [1349, 14], [1350, 13], [1354, 13], [1356, 11], [1356, 5], [1355, 1], [1350, 0]]}, "center": {"74-88": [1349, 6]}},
{"id": "xlk2z2", "name": "Waddle Dee", "description": "Waddle Dees are common enemies and non-player characters in the Kirby video games.", "links": {"website": ["https://kirby.fandom.com/wiki/Waddle_Dee"], "subreddit": ["Kirby"]}, "path": {"79-96": [[1354, 66], [1354, 68], [1353, 68], [1353, 71], [1354, 71], [1354, 73], [1360, 73], [1360, 71], [1361, 71], [1361, 68], [1360, 68], [1360, 66]]}, "center": {"79-96": [1357, 70]}},
-{"id": "xljvg4", "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": {"95-100": [[1331, 68], [1329, 70], [1329, 71], [1332, 74], [1335, 71], [1335, 70], [1333, 68]], "29-33": [[446, 251], [444, 253], [444, 254], [447, 257], [444, 260], [444, 261], [446, 263], [450, 263], [452, 261], [452, 260], [449, 257], [452, 254], [452, 253], [450, 251]], "27-28": [[436, 256], [432, 260], [432, 261], [434, 263], [450, 263], [452, 261], [452, 260], [448, 256], [444, 260], [444, 261], [446, 263], [438, 263], [440, 261], [440, 260]], "21-26": [[448, 256], [444, 260], [444, 261], [446, 263], [450, 263], [452, 261], [452, 260]], "19-20": [[434, 251], [432, 253], [432, 254], [436, 258], [440, 254], [440, 253], [438, 251]]}, "center": {"95-100": [1332, 71], "29-33": [448, 254], "27-28": [436, 260], "21-26": [448, 260], "19-20": [436, 254]}},
+{"id": "xljvg4", "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": {"95-100": [[1331, 68], [1329, 70], [1329, 71], [1332, 74], [1335, 71], [1335, 70], [1333, 68]], "29-33": [[446, 251], [444, 253], [444, 254], [447, 257], [444, 260], [444, 261], [446, 263], [450, 263], [452, 261], [452, 260], [449, 257], [452, 254], [452, 253], [450, 251]], "27-28": [[436, 256], [432, 260], [432, 261], [434, 263], [450, 263], [452, 261], [452, 260], [448, 256], [444, 260], [444, 261], [446, 263], [438, 263], [440, 261], [440, 260]], "21-26": [[448, 256], [444, 260], [444, 261], [446, 263], [450, 263], [452, 261], [452, 260]], "19-20": [[434, 251], [432, 253], [432, 254], [436, 258], [440, 254], [440, 253], [438, 251]], "75-87": [[1324, 871], [1322, 873], [1322, 874], [1326, 878], [1330, 874], [1330, 873], [1328, 871]], "61-64": [[1390, 871], [1388, 873], [1388, 874], [1392, 878], [1396, 874], [1396, 873], [1394, 871]]}, "center": {"95-100": [1332, 71], "29-33": [448, 254], "27-28": [436, 260], "21-26": [448, 260], "19-20": [436, 254], "75-87": [1326, 874], "61-64": [1392, 874]}},
{"id": "xm3rvt", "name": "New York Rangers-Colorado Avalanche heart", "description": "This heart is a symbol of collaboration between the communities of the New York Rangers and the Colorado Avalanche, both teams in the National Hockey League (NHL).", "links": {"website": ["https://en.wikipedia.org/wiki/New_York_Rangers", "https://en.wikipedia.org/wiki/Colorado_Avalanche"], "subreddit": ["rangers", "ColoradoAvalanche"]}, "path": {"112-167, T:0-1": [[1434, 37], [1432, 39], [1432, 40], [1436, 44], [1440, 40], [1440, 39], [1438, 37]]}, "center": {"112-167, T:0-1": [1436, 40]}},
{"id": "xm3lce", "name": "Henrik Lundqvist", "description": "Henrik \"Hank\" Lundqvist is a Swedish goaltender who played for the New York Rangers throughout his entire 15-year National Hockey League (NHL) career. His iconic player number, 30, was retired on January 28, 2022 upon his retirement from the NHL.", "links": {"website": ["https://en.wikipedia.org/wiki/Henrik_Lundqvist"], "subreddit": ["rangers"]}, "path": {"56-66": [[1551, 314], [1551, 331], [1572, 331], [1572, 314]], "106-167, T:0-1": [[1411, 35], [1411, 48], [1415, 48], [1415, 41], [1425, 41], [1425, 48], [1430, 48], [1430, 41], [1431, 41], [1431, 35]]}, "center": {"56-66": [1562, 323], "106-167, T:0-1": [1427, 38]}},
{"id": "xm3du1", "name": "New York Rangers logo", "description": "A shield used as the logo for the New York Rangers.", "links": {"website": ["https://en.wikipedia.org/wiki/New_York_Rangers"], "subreddit": ["rangers"]}, "path": {"106-166, T:0-1": [[1414, 40], [1414, 42], [1415, 42], [1415, 47], [1417, 49], [1423, 49], [1425, 47], [1425, 42], [1426, 42], [1426, 40]]}, "center": {"106-166, T:0-1": [1420, 45]}},
@@ -8123,7 +8095,7 @@
{"id": "xozbfe", "name": "Nyatle", "description": "A cat turtle, or the Pokémon Squirtle. Also the profile picture of an artist. Was made by 3-6 people.", "links": {"website": ["https://weibo.com/suisao"]}, "path": {"85-157": [[1698, 101], [1697, 102], [1694, 102], [1692, 104], [1692, 107], [1696, 113], [1705, 113], [1707, 111], [1707, 104], [1704, 101]]}, "center": {"85-157": [1700, 107]}},
{"id": "xoz9dy", "name": "Pepegasus", "description": "A combination of Pepe the Frog and a Pegasus. Trademark from a group of online friends who wanted to perpetuate themselves.", "links": {"website": ["https://en.wikipedia.org/wiki/Pepe_the_Frog", "https://en.wikipedia.org/wiki/Pegasus"]}, "path": {"144-167, T:0-1": [[1771, 100], [1769, 102], [1765, 102], [1765, 107], [1764, 107], [1764, 109], [1769, 109], [1772, 107], [1772, 106], [1773, 106], [1773, 100]]}, "center": {"144-167, T:0-1": [1768, 105]}},
{"id": "xp1lnh", "name": "World Elephant", "description": "The World Elephants are a group of four elephants in the Discworld books. They hold up the planet of Discworld on their backs while standing on a giant turtle.", "links": {"website": ["https://discworld.fandom.com/wiki/World_Elephant"], "subreddit": ["discworld"]}, "path": {"71-95": [[1717, 4], [1717, 6], [1715, 6], [1712, 9], [1712, 10], [1714, 10], [1714, 11], [1721, 11], [1721, 9], [1723, 9], [1725, 7], [1724, 6], [1722, 6], [1722, 4]], "56-70": [[1717, 1], [1717, 3], [1715, 3], [1712, 6], [1712, 7], [1714, 7], [1714, 8], [1721, 8], [1721, 6], [1723, 6], [1725, 4], [1724, 3], [1722, 3], [1722, 1]], "98-167, T:0-1": [[1876, 873], [1876, 874], [1875, 874], [1872, 877], [1872, 878], [1874, 878], [1874, 880], [1881, 880], [1881, 878], [1884, 878], [1886, 876], [1885, 875], [1883, 875], [1883, 873]]}, "center": {"71-95": [1718, 8], "56-70": [1718, 5], "98-167, T:0-1": [1878, 877]}},
-{"id": "xp1i4x", "name": "Discworld", "description": "Discworld is the titular planet of the Discworld books. The planet is a flat disc held up by four elephants standing on the back of a giant turtle.", "links": {"website": ["https://en.wikipedia.org/wiki/Discworld_(world)"], "subreddit": ["discworld"]}, "path": {"70-95": [[1711, 3], [1711, 5], [1726, 5], [1726, 3]], "56-69": [[1711, 0], [1711, 2], [1726, 2], [1726, 0]], "99-166, T:0-1": [[1871, 872], [1871, 874], [1887, 874], [1887, 872], [1880, 872], [1880, 869], [1878, 869], [1878, 871], [1877, 872]]}, "center": {"70-95": [1719, 4], "56-69": [1719, 1], "99-166, T:0-1": [1879, 872]}},
+{"id": "xp1i4x", "name": "Discworld", "description": "Discworld is the titular planet of the Discworld books. The planet is a flat disc held up by four elephants standing on the back of a giant turtle.", "links": {"website": ["https://en.wikipedia.org/wiki/Discworld_(world)"], "subreddit": ["discworld"]}, "path": {"70-95": [[1711, 3], [1711, 5], [1726, 5], [1726, 3]], "56-69": [[1711, 0], [1711, 2], [1726, 2], [1726, 0]], "99-166, T:0-1": [[1871, 869], [1871, 874], [1887, 874], [1887, 869], [1884, 869], [1884, 872], [1880, 872], [1880, 869], [1879, 869], [1877, 872], [1874, 872], [1874, 869]]}, "center": {"70-95": [1719, 4], "56-69": [1719, 1], "99-166, T:0-1": [1873, 872]}},
{"id": "xp1fxi", "name": "Great A'Tuin", "description": "Great A'Tuin, also known as the World Turtle, is a giant turtle in the Discworld books. The turtle holds up the four elephants who carry the planet Discworld.", "links": {"website": ["https://discworld.fandom.com/wiki/Great_A%27Tuin"], "subreddit": ["discworld"]}, "path": {"71-95": [[1713, 10], [1710, 13], [1711, 14], [1711, 17], [1713, 17], [1714, 16], [1721, 16], [1724, 13], [1726, 13], [1726, 10]], "56-70": [[1722, 6], [1722, 7], [1714, 7], [1712, 9], [1712, 14], [1714, 14], [1715, 13], [1720, 13], [1723, 10], [1726, 10], [1726, 6]], "99-166, T:0-1": [[1873, 879], [1870, 882], [1870, 886], [1873, 886], [1875, 884], [1875, 883], [1879, 883], [1879, 885], [1881, 885], [1887, 881], [1887, 879]]}, "center": {"71-95": [1718, 13], "56-70": [1716, 10], "99-166, T:0-1": [1881, 882]}},
{"id": "xp04fs", "name": "Craig Tucker", "description": "A character in South Park.", "links": {"website": ["https://en.wikipedia.org/wiki/Craig_Tucker"], "subreddit": ["southpark"]}, "path": {"62-66": [[1767, 99], [1767, 106], [1772, 106], [1772, 99]]}, "center": {"62-66": [1770, 103]}},
{"id": "xp02d7", "name": "Tolkien Black", "description": "A character in South Park.", "links": {"website": ["https://en.wikipedia.org/wiki/Tolkien_Black"], "subreddit": ["southpark"]}, "path": {"61-63": [[1740, 99], [1740, 106], [1744, 106], [1744, 99]], "112-166, T:0-1": [[495, 1692], [495, 1696], [494, 1697], [496, 1699], [498, 1699], [500, 1697], [499, 1696], [499, 1692]]}, "center": {"61-63": [1742, 103], "112-166, T:0-1": [497, 1695]}},
@@ -8161,16 +8133,16 @@
{"id": "xpyvkd", "name": "Land of Hope and Glory", "description": "A QR code to the website for Land of Hope and Glory, a documentary about animal rights abuses in commercial land animal farming in the United Kingdom.", "links": {"website": ["https://www.landofhopeandglory.org/"]}, "path": {"143-147": [[1847, 62], [1847, 94], [1879, 94], [1879, 62]]}, "center": {"143-147": [1863, 78]}},
{"id": "xpysog", "name": "The Most Logical Arguments AGAINST Veganism (In 10 Minutes)", "description": "A QR code to a video listing frequently used arguments against veganism, along with counterarguments against these points.", "links": {"website": ["https://www.youtube.com/watch?v=rS0F4WeG0eo"], "subreddit": ["vegan", "vegan_place"]}, "path": {"161-165, T:0-1": [[1849, 64], [1849, 94], [1879, 94], [1879, 64]]}, "center": {"161-165, T:0-1": [1864, 79]}},
{"id": "xq14vx", "name": "Cats", "description": "A cat is a passive mob in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Cat"], "subreddit": ["Minecraft"]}, "path": {"115-122": [[1887, 61], [1887, 73], [1893, 73], [1893, 61]], "109-114": [[1887, 67], [1887, 73], [1893, 73], [1893, 67]], "93-105": [[1922, 67], [1922, 73], [1928, 73], [1928, 67]]}, "center": {"115-122": [1890, 67], "109-114": [1890, 70], "93-105": [1925, 70]}},
-{"id": "xq0zwv", "name": "Chicken", "description": "A chicken is a passive mob in the 2010 sandbox game Minecraft, developed by Mojang Studios in Sweden.", "links": {"website": ["https://minecraft.fandom.com/wiki/Chicken"], "subreddit": ["Minecraft"]}, "path": {"107-132": [[1872, 65], [1872, 70], [1877, 70], [1877, 65]]}, "center": {"107-132": [1875, 68]}},
-{"id": "xq1fgv", "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"], "subreddit": ["pansexual"]}, "path": {"105-117": [[1841, 27], [1839, 29], [1839, 30], [1842, 33], [1845, 30], [1845, 29], [1843, 27]], "118-124": [[1843, 27], [1841, 29], [1841, 30], [1844, 33], [1847, 30], [1847, 29], [1845, 27]]}, "center": {"105-117": [1842, 30], "118-124": [1844, 30]}},
+{"id": "xq0zwv", "name": "Chicken", "description": "A chicken is a passive mob in the 2010 sandbox game Minecraft, developed by Mojang Studios in Sweden.", "links": {"website": ["https://minecraft.fandom.com/wiki/Chicken"], "subreddit": ["Minecraft"]}, "path": {"107-132": [[1872, 65], [1872, 70], [1877, 70], [1877, 65]], "156-165, T:0-1": [[1101, 855], [1101, 862], [1108, 862], [1108, 855]]}, "center": {"107-132": [1875, 68], "156-165, T:0-1": [1105, 859]}},
+{"id": "xq1fgv", "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"], "subreddit": ["pansexual"]}, "path": {"105-117": [[1841, 27], [1839, 29], [1839, 30], [1842, 33], [1845, 30], [1845, 29], [1843, 27]], "118-124": [[1843, 27], [1841, 29], [1841, 30], [1844, 33], [1847, 30], [1847, 29], [1845, 27]], "62-71": [[1887, 873], [1883, 877], [1883, 878], [1885, 880], [1889, 880], [1891, 878], [1891, 877]]}, "center": {"105-117": [1842, 30], "118-124": [1844, 30], "62-71": [1887, 877]}},
{"id": "xq1d6d", "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"], "subreddit": ["bisexual"]}, "path": {"112-125": [[1862, 54], [1860, 56], [1860, 57], [1863, 60], [1866, 57], [1866, 56], [1864, 54]], "78-91": [[380, 218], [378, 220], [378, 222], [383, 227], [388, 222], [388, 220], [386, 218]], "16-20": [[716, 251], [714, 253], [714, 254], [718, 258], [722, 254], [722, 253], [720, 251]]}, "center": {"112-125": [1863, 57], "78-91": [383, 222], "16-20": [718, 254]}},
-{"id": "xq1byp", "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"], "subreddit": ["pansexual"]}, "path": {"108-122": [[1884, 53], [1882, 55], [1882, 56], [1885, 59], [1888, 56], [1888, 55], [1886, 53]], "23-25": [[650, 251], [648, 253], [648, 254], [651, 257], [655, 255], [656, 254], [656, 253], [654, 251]]}, "center": {"108-122": [1885, 56], "23-25": [652, 254]}},
+{"id": "xq1byp", "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"], "subreddit": ["pansexual"]}, "path": {"108-122": [[1884, 53], [1882, 55], [1882, 56], [1885, 59], [1888, 56], [1888, 55], [1886, 53]], "23-25": [[650, 251], [648, 253], [648, 254], [651, 257], [655, 255], [656, 254], [656, 253], [654, 251]], "76-87": [[1318, 871], [1316, 873], [1316, 874], [1320, 878], [1324, 874], [1324, 873], [1322, 871]], "64-72": [[1456, 871], [1454, 873], [1454, 874], [1458, 878], [1462, 874], [1462, 873], [1460, 871]]}, "center": {"108-122": [1885, 56], "23-25": [652, 254], "76-87": [1320, 874], "64-72": [1458, 874]}},
{"id": "xqs24h", "name": "Chicken Hat", "description": "A Chicken Hat is a wearable accessory in Brick Hill.", "links": {"website": ["https://brickhill.fandom.com/wiki/Chicken_Hat_(series)"], "subreddit": ["BrickHill"]}, "path": {"73-74": [[1958, 73], [1958, 75], [1956, 77], [1956, 81], [1959, 84], [1960, 84], [1963, 81], [1963, 77], [1961, 75], [1961, 73]], "75-165, T:0-1": [[1923, 87], [1923, 89], [1921, 91], [1921, 95], [1924, 98], [1925, 98], [1928, 95], [1928, 91], [1926, 89], [1926, 87]]}, "center": {"73-74": [1960, 79], "75-165, T:0-1": [1925, 93]}},
{"id": "xqrzsg", "name": "Brick Hill logo", "description": "The logo of the sandbox game Brick Hill.", "links": {"website": ["https://www.brick-hill.com/"], "subreddit": ["BrickHill"]}, "path": {"58-165, T:0-1": [[1923, 74], [1921, 76], [1921, 81], [1928, 81], [1928, 76], [1926, 74]]}, "center": {"58-165, T:0-1": [1925, 78]}},
{"id": "xqrvt2", "name": "Informatique", "description": "\"Informatique\" means \"computer science\" in French. This art represents the computer science branch of the University of Nantes, who also drew their university's logo nearby.", "links": {}, "path": {"143-165, T:0-1": [[1940, 55], [1940, 72], [1945, 72], [1945, 55]]}, "center": {"143-165, T:0-1": [1943, 64]}},
{"id": "xqudrf", "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"]}, "path": {"88-101": [[1988, 26], [1988, 33], [1998, 33], [1998, 26]]}, "center": {"88-101": [1993, 30]}},
{"id": "xqucvi", "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": ["Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"91-101": [[1990, 21], [1990, 27], [1996, 27], [1996, 21]], "88-90": [[1988, 21], [1988, 27], [1998, 27], [1998, 21]], "5-19": [[61, 254], [58, 257], [61, 260], [64, 257]]}, "center": {"91-101": [1993, 24], "88-90": [1993, 24], "5-19": [61, 257]}},
-{"id": "xqubrs", "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"]}, "path": {"88-101": [[1988, 15], [1988, 22], [1998, 22], [1998, 15]], "140-146, 149-150": [[1767, 568], [1767, 578], [1770, 578], [1770, 577], [1774, 577], [1774, 568]]}, "center": {"88-101": [1993, 19], "140-146, 149-150": [1771, 573]}},
+{"id": "xqubrs", "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"]}, "path": {"88-101": [[1988, 15], [1988, 22], [1998, 22], [1998, 15]], "153-159": [[1161, 890], [1161, 899], [1165, 899], [1165, 898], [1172, 898], [1172, 891], [1163, 891], [1163, 890]], "140-146, 149-150": [[1767, 568], [1767, 578], [1770, 578], [1770, 577], [1774, 577], [1774, 568]]}, "center": {"88-101": [1993, 19], "153-159": [1167, 895], "140-146, 149-150": [1771, 573]}},
{"id": "xqub0b", "name": "Twitch FR", "description": "The French-speaking community on the livestreaming platform Twitch. This art also displays flags of three countries where French is commonly used: France, Switzerland, and Belgium.", "links": {"website": ["https://www.twitch.tv/p/fr-fr/about/"]}, "path": {"87-101": [[1946, 16], [1946, 34], [1998, 34], [1998, 15], [1956, 15], [1956, 16]]}, "center": {"87-101": [1972, 25]}},
{"id": "xqu7ie", "name": "Steve", "description": "One of the default player characters in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Player"], "subreddit": ["Minecraft"]}, "path": {"127-129": [[1983, 22], [1983, 28], [1990, 28], [1990, 22]], "24-44": [[670, 690], [670, 699], [679, 699], [679, 690]], "45-51": [[670, 692], [670, 701], [679, 701], [679, 692]], "59-79, 82-83": [[1846, 539], [1846, 548], [1855, 548], [1855, 539]]}, "center": {"127-129": [1987, 25], "24-44": [675, 695], "45-51": [675, 697], "59-79, 82-83": [1851, 544]}},
{"id": "xqu3jt", "name": "LSD", "description": "Lysergic acid diethylamide (LSD) is a psychedelic drug.", "links": {"website": ["https://en.wikipedia.org/wiki/Lysergic_acid_diethylamide"]}, "path": {"142-145": [[1884, 58], [1884, 64], [1895, 64], [1895, 58]]}, "center": {"142-145": [1890, 61]}},
@@ -8298,7 +8270,7 @@
{"id": "xz27dz", "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": ["straya", "Australia", "aus_place", "placeaustralia"]}, "path": {"87-97": [[295, 144], [295, 158], [316, 158], [316, 144]]}, "center": {"87-97": [306, 151]}},
{"id": "xz21zp", "name": "Norway-MrMouton heart", "description": "A heart depicting the flag of Norway and the background of MrMouton's logo.", "links": {"website": ["https://en.wikipedia.org/wiki/Norway", "https://www.twitch.tv/mrmouton"], "subreddit": ["place_nordicunion", "Norge", "MrMouton"]}, "path": {"97-100": [[204, 100], [201, 103], [201, 105], [207, 111], [213, 105], [213, 103], [210, 100]]}, "center": {"97-100": [207, 105]}},
{"id": "xz1ihb", "name": "Taiwan heart", "description": "A heart depicting the flag of Taiwan, a country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Taiwan", "https://en.wikipedia.org/wiki/Flag_of_the_Republic_of_China"], "subreddit": ["ChunghwaMinkuo", "RepublicOfChina", "taiwan"]}, "path": {"55": [[293, 154], [291, 156], [291, 157], [295, 161], [299, 157], [299, 156], [297, 154]], "155": [[1431, 248], [1428, 251], [1428, 252], [1433, 257], [1438, 252], [1438, 251], [1435, 248]], "65-66": [[1192, 277], [1189, 280], [1189, 282], [1194, 287], [1199, 282], [1199, 280], [1196, 277]]}, "center": {"55": [295, 157], "155": [1433, 252], "65-66": [1194, 281]}},
-{"id": "xz1gvu", "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": {"46": [[773, 161], [771, 163], [771, 166], [776, 171], [781, 166], [781, 163], [779, 161]], "17-19": [[267, 165], [267, 166], [272, 171], [277, 166], [277, 165]]}, "center": {"46": [776, 165], "17-19": [272, 167]}},
+{"id": "xz1gvu", "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": {"46": [[773, 161], [771, 163], [771, 166], [776, 171], [781, 166], [781, 163], [779, 161]], "17-19": [[267, 165], [267, 166], [272, 171], [277, 166], [277, 165]], "68-71": [[1468, 871], [1466, 873], [1466, 874], [1470, 878], [1474, 874], [1474, 873], [1472, 871]]}, "center": {"46": [776, 165], "17-19": [272, 167], "68-71": [1470, 874]}},
{"id": "xz4qjl", "name": "TobiasBot", "description": "A Discord bot.", "links": {}, "path": {"22-43": [[263, 108], [259, 111], [256, 116], [256, 119], [261, 124], [265, 125], [269, 124], [273, 119], [273, 114], [270, 110], [267, 108]]}, "center": {"22-43": [265, 117]}},
{"id": "xzvwyn", "name": "Flag of Brazil", "description": "Brazil 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": {"1-4": [[221, 143], [221, 165], [251, 165], [251, 143]], "8-12": [[49, 254], [46, 257], [49, 260], [52, 257]], "13-18": [[49, 254], [46, 257], [50, 261], [55, 261], [55, 260]]}, "center": {"1-4": [236, 154], "8-12": [49, 257], "13-18": [50, 258]}},
{"id": "y0v8m9", "name": "Greece heart", "description": "A heart depicting the flag of Greece, a country in Southeast Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Greece", "https://en.wikipedia.org/wiki/Flag_of_Greece"], "subreddit": ["greece", "GreecePlace"]}, "path": {"13-32": [[341, 161], [339, 163], [339, 166], [344, 171], [349, 166], [349, 163], [347, 161]]}, "center": {"13-32": [344, 165]}},
@@ -8329,7 +8301,7 @@
{"id": "y1pqv3", "name": "Slovakia heart", "description": "A heart depicting the flag of Slovakia, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Slovakia", "https://en.wikipedia.org/wiki/Flag_of_Slovakia"], "subreddit": ["Slovakia"]}, "path": {"19-27": [[461, 161], [459, 163], [459, 166], [464, 171], [469, 166], [469, 163], [467, 161]], "36-42, 45-46": [[533, 161], [531, 163], [531, 166], [536, 171], [541, 166], [541, 163], [539, 161]]}, "center": {"19-27": [464, 165], "36-42, 45-46": [536, 165]}},
{"id": "y1ppvk", "name": "Hungary heart", "description": "A heart depicting the flag of Hungary, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"]}, "path": {"21-32": [[445, 161], [443, 163], [443, 166], [448, 171], [453, 166], [453, 163], [451, 161]], "77-80": [[1234, 248], [1231, 251], [1231, 252], [1236, 257], [1241, 252], [1241, 251], [1238, 248], [1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]], "81-82": [[1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]]}, "center": {"21-32": [448, 165], "77-80": [1260, 252], "81-82": [1260, 252]}},
{"id": "y1sqlp", "name": "Ukraine-Denmark heart", "description": "A heart depicting the flags of Ukraine and Denmark.", "links": {"subreddit": ["placeukraine", "ukraine", "place_nordicunion", "Denmark"], "discord": ["fMf7RJBMw6"]}, "path": {"119-124": [[411, 166], [406, 171], [411, 176], [413, 176], [415, 174], [415, 168], [413, 166]]}, "center": {"119-124": [411, 171]}},
-{"id": "y1tj4e", "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"], "subreddit": ["pokemon"]}, "path": {"135-145": [[1737, 331], [1735, 333], [1735, 335], [1737, 337], [1739, 337], [1741, 335], [1741, 333], [1739, 331]], "71-86": [[1875, 670], [1871, 675], [1871, 677], [1875, 682], [1879, 682], [1882, 679], [1882, 673], [1879, 670]], "162-166": [[562, 151], [560, 153], [560, 155], [562, 157], [564, 157], [566, 156], [566, 153], [564, 151]]}, "center": {"135-145": [1738, 334], "71-86": [1877, 676], "162-166": [563, 154]}},
+{"id": "y1tj4e", "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"], "subreddit": ["pokemon"]}, "path": {"135-145": [[1737, 331], [1735, 333], [1735, 335], [1737, 337], [1739, 337], [1741, 335], [1741, 333], [1739, 331]], "71-86": [[1875, 670], [1871, 675], [1871, 677], [1875, 682], [1879, 682], [1882, 679], [1882, 673], [1879, 670]], "105-108": [[1632, 824], [1632, 830], [1640, 830], [1640, 824]], "162-166": [[562, 151], [560, 153], [560, 155], [562, 157], [564, 157], [566, 156], [566, 153], [564, 151]]}, "center": {"135-145": [1738, 334], "71-86": [1877, 676], "105-108": [1636, 827], "162-166": [563, 154]}},
{"id": "y1t6xm", "name": "Suomi", "description": "\"Suomi\" means \"Finland\" in the Finnish language.", "links": {"subreddit": ["place_nordicunion", "Suomi"]}, "path": {"101-166, T:0-1": [[593, 122], [593, 128], [613, 128], [613, 122]]}, "center": {"101-166, T:0-1": [603, 125]}},
{"id": "y1urv7", "name": "The Blues", "description": "The Blues are birds in the game Angry Birds. They have the ability to split into three.", "links": {"website": ["https://angrybirds.fandom.com/wiki/The_Blues"], "subreddit": ["AngryBirds", "place_nordicunion", "Suomi"]}, "path": {"108-133": [[545, 149], [539, 155], [539, 156], [541, 158], [542, 158], [542, 161], [544, 163], [547, 163], [549, 161], [549, 158], [551, 156], [551, 155], [552, 154], [551, 153], [551, 152], [549, 150], [548, 150], [547, 149]]}, "center": {"108-133": [546, 155]}},
{"id": "y1uob0", "name": "Perkele", "description": "Perkele is Finnish for \"evil spirit\". The word is commonly used as profanity.", "links": {"website": ["https://en.wikipedia.org/wiki/Perkele"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"133-139": [[563, 164], [563, 170], [631, 170], [631, 164]]}, "center": {"133-139": [597, 167]}},
@@ -8355,7 +8327,7 @@
{"id": "y2mw9u", "name": "Poland-Finland heart", "description": "A heart depicting the flags of Poland and Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Finland"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"100": [[631, 165], [628, 168], [628, 170], [634, 176], [640, 170], [640, 167], [638, 165]], "147-157": [[631, 161], [628, 164], [628, 165], [634, 171], [640, 165], [640, 164], [637, 161]]}, "center": {"100": [634, 169], "147-157": [634, 165]}},
{"id": "y2mvcl", "name": "Romania-Finland heart", "description": "A heart depicting the flags of Romania and Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Romania", "https://en.wikipedia.org/wiki/Finland"], "subreddit": ["Romania", "place_nordicunion", "Suomi"]}, "path": {"26-97": [[631, 138], [628, 141], [628, 143], [634, 149], [640, 143], [640, 141], [637, 138]], "103-146, T:0-1": [[631, 161], [628, 164], [628, 165], [634, 171], [640, 165], [640, 164], [637, 161]]}, "center": {"26-97": [634, 143], "103-146, T:0-1": [634, 165]}},
{"id": "y2mrdv", "name": "r/Romania", "description": "Subreddit used by Romanian Redditors to coordinate artwork for Romania on r/place.", "links": {"subreddit": ["Romania"]}, "path": {"56-97": [[638, 192], [638, 198], [682, 198], [682, 192]], "108-148, T:0-1": [[638, 191], [638, 197], [680, 197], [680, 191]]}, "center": {"56-97": [660, 195], "108-148, T:0-1": [659, 194]}},
-{"id": "y2n7sz", "name": "Finland heart", "description": "A heart depicting the flag of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"126-158, 71-84": [[621, 116], [618, 119], [618, 121], [624, 127], [630, 121], [630, 119], [627, 116]]}, "center": {"126-158, 71-84": [624, 121]}},
+{"id": "y2n7sz", "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": ["place_nordicunion", "Suomi"]}, "path": {"126-158, 71-84": [[621, 116], [618, 119], [618, 121], [624, 127], [630, 121], [630, 119], [627, 116]]}, "center": {"126-158, 71-84": [624, 121]}},
{"id": "y2n6pb", "name": "Sweden heart", "description": "A heart depicting the flag of Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["place_nordicunion", "sweden"]}, "path": {"116-123, 133-157, 98-102": [[621, 107], [618, 110], [618, 112], [624, 118], [630, 112], [630, 110], [627, 107]]}, "center": {"116-123, 133-157, 98-102": [624, 112]}},
{"id": "y2n4wm", "name": "Flag of Skåne", "description": "Skåne (Scania) is Sweden's southernmost province. The province had (and still jokingly has) a long history of being fought over by both Sweden and Denmark. It is the only officially recognized province flag in Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Scania", "https://en.wikipedia.org/wiki/Flag_of_Scania"], "subreddit": ["place_nordicunion", "Skane", "sweden"]}, "path": {"150-155": [[632, 125], [632, 131], [640, 131], [640, 125]]}, "center": {"150-155": [636, 128]}},
{"id": "y2n3mo", "name": "Flag of Iceland", "description": "Iceland is an island country in the North Atlantic Ocean.", "links": {"website": ["https://en.wikipedia.org/wiki/Iceland", "https://en.wikipedia.org/wiki/Flag_of_Iceland"], "subreddit": ["place_nordicunion", "Iceland"]}, "path": {"151-159": [[632, 131], [632, 137], [640, 137], [640, 131]]}, "center": {"151-159": [636, 134]}},
@@ -8405,7 +8377,7 @@
{"id": "y3hcue", "name": "Half-Life 3", "description": "Half-Life is a first-person shooter series developed by Valve. Half-Life 2: Episode two was released alongside Team Fortress 2 as part of the Orange Box Collection, and also runs on the Source engine.\n\nFans of the series have been waiting for a third installment to the main series since 2007, and jokes about the wait time and nonexistent release date of \"Half-Life 3\" have become one of the most iconic memes within the gaming community.", "links": {"website": ["https://half-life.fandom.com/wiki/Development_of_the_next_Half-Life_game", "https://knowyourmeme.com/memes/half-life-3-confirmed"], "subreddit": ["HalfLife"]}, "path": {"T:0-1": [[767, 185], [767, 200], [783, 200], [783, 185]], "27-52": [[737, 184], [737, 200], [753, 200], [753, 185]], "108-148, 53-98": [[766, 185], [766, 200], [782, 200], [782, 185]]}, "center": {"T:0-1": [775, 193], "27-52": [745, 192], "108-148, 53-98": [774, 193]}},
{"id": "y3h3sh", "name": "Flame Princess", "description": "A character in the cartoon Adventure Time.", "links": {"website": ["https://adventuretime.fandom.com/wiki/Flame_Princess"], "subreddit": ["adventuretime"]}, "path": {"110-146": [[770, 164], [766, 168], [766, 173], [768, 175], [768, 177], [770, 177], [770, 185], [772, 185], [772, 179], [773, 179], [773, 175], [775, 173], [775, 169]], "72-97": [[772, 165], [771, 166], [769, 166], [767, 168], [766, 170], [766, 173], [768, 173], [770, 175], [771, 175], [773, 173], [775, 173], [775, 169], [773, 167], [773, 165]], "T:0-1": [[771, 164], [767, 168], [767, 172], [769, 174], [769, 176], [771, 176], [771, 185], [773, 185], [773, 179], [774, 179], [774, 174], [776, 172], [776, 168], [773, 165], [772, 165]]}, "center": {"110-146": [770, 171], "72-97": [771, 170], "T:0-1": [771, 170]}},
{"id": "y3gxo5", "name": "Slime Princess", "description": "A character in the cartoon Adventure Time.", "links": {"website": ["https://adventuretime.fandom.com/wiki/Slime_Princess"], "subreddit": ["adventuretime"]}, "path": {"116-147": [[799, 165], [799, 167], [797, 169], [797, 171], [796, 172], [796, 173], [804, 173], [804, 172], [803, 171], [803, 169], [801, 167], [801, 165]], "T:0-1": [[801, 163], [801, 165], [799, 167], [799, 169], [798, 169], [798, 171], [806, 171], [806, 169], [805, 169], [805, 167], [803, 165], [803, 163]]}, "center": {"116-147": [800, 170], "T:0-1": [802, 168]}},
-{"id": "y3jmms", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"64": [[1271, 277], [1268, 280], [1268, 282], [1273, 287], [1278, 282], [1278, 280], [1275, 277]], "36-37": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]], "65-83": [[1240, 277], [1237, 280], [1237, 282], [1242, 287], [1247, 282], [1247, 280], [1244, 277]], "94-96": [[1352, 277], [1349, 280], [1349, 282], [1354, 287], [1359, 282], [1359, 280], [1356, 277]], "128-131": [[1124, 725], [1122, 727], [1122, 728], [1125, 731], [1128, 728], [1128, 727], [1126, 725]]}, "center": {"64": [1273, 281], "36-37": [792, 165], "65-83": [1242, 281], "94-96": [1354, 281], "128-131": [1125, 728]}},
+{"id": "y3jmms", "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": ["argentina", "Republica_Argentina"]}, "path": {"64": [[1271, 277], [1268, 280], [1268, 282], [1273, 287], [1278, 282], [1278, 280], [1275, 277]], "36-37": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]], "65-83": [[1240, 277], [1237, 280], [1237, 282], [1242, 287], [1247, 282], [1247, 280], [1244, 277]], "94-96": [[1352, 277], [1349, 280], [1349, 282], [1354, 287], [1359, 282], [1359, 280], [1356, 277]], "128-131": [[1124, 725], [1122, 727], [1122, 728], [1125, 731], [1128, 728], [1128, 727], [1126, 725]]}, "center": {"64": [1273, 281], "36-37": [792, 165], "65-83": [1242, 281], "94-96": [1354, 281], "128-131": [1125, 728]}},
{"id": "y3jl59", "name": "Honduras heart", "description": "A heart depicting the flag of Honduras, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Honduras", "https://en.wikipedia.org/wiki/Flag_of_Honduras"], "subreddit": ["honduras"]}, "path": {"116-142": [[1282, 248], [1279, 251], [1279, 252], [1284, 257], [1289, 252], [1289, 251], [1286, 248]], "101-102, 65-96": [[1271, 277], [1268, 280], [1268, 282], [1273, 287], [1278, 282], [1278, 280], [1275, 277]], "33-35, 38-44": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]]}, "center": {"116-142": [1284, 252], "101-102, 65-96": [1273, 281], "33-35, 38-44": [792, 165]}},
{"id": "y3japp", "name": "Turkey heart", "description": "A heart depicting the flag of Turkey, a country in Southwestern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"], "subreddit": ["Turkey"]}, "path": {"43-46": [[781, 161], [779, 163], [779, 166], [784, 171], [789, 166], [789, 163], [787, 161]], "140-143": [[950, 248], [947, 251], [947, 252], [952, 257], [957, 252], [957, 251], [954, 248]], "136-137": [[942, 248], [939, 251], [939, 252], [944, 257], [949, 252], [949, 251], [946, 248]], "99-110": [[1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248]], "91-93": [[1112, 248], [1109, 251], [1109, 252], [1114, 257], [1119, 252], [1119, 251], [1116, 248]]}, "center": {"43-46": [784, 165], "140-143": [952, 252], "136-137": [944, 252], "99-110": [1180, 252], "91-93": [1114, 252]}},
{"id": "y3j94p", "name": "Israel heart", "description": "A heart depicting the flag of Israel, a country in the Middle East.", "links": {"website": ["https://en.wikipedia.org/wiki/Israel", "https://en.wikipedia.org/wiki/Flag_of_Israel"], "subreddit": ["Israel", "ani_bm"], "discord": ["israel"]}, "path": {"45-47": [[789, 161], [787, 163], [787, 166], [792, 171], [797, 166], [797, 163], [795, 161]], "155-158": [[1072, 248], [1069, 251], [1069, 252], [1074, 257], [1079, 252], [1079, 251], [1076, 248]], "118-130, 134-136, 144-146": [[1112, 248], [1109, 251], [1109, 252], [1114, 257], [1119, 252], [1119, 251], [1116, 248]]}, "center": {"45-47": [792, 165], "155-158": [1074, 252], "118-130, 134-136, 144-146": [1114, 252]}},
@@ -8415,7 +8387,7 @@
{"id": "y3isbj", "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": ["Romania"]}, "path": {"138-139": [[739, 195], [736, 198], [736, 200], [741, 205], [746, 200], [746, 198], [743, 195]], "65-69": [[1062, 277], [1059, 280], [1059, 282], [1064, 287], [1069, 282], [1069, 280], [1066, 277]], "103-104": [[1194, 248], [1191, 251], [1191, 252], [1196, 257], [1201, 252], [1201, 251], [1198, 248]], "152-153": [[1448, 267], [1445, 270], [1445, 271], [1450, 276], [1455, 271], [1455, 270], [1452, 267]], "158-162": [[266, 625], [264, 627], [264, 628], [267, 631], [270, 628], [270, 627], [268, 625]]}, "center": {"138-139": [741, 199], "65-69": [1064, 281], "103-104": [1196, 252], "152-153": [1450, 271], "158-162": [267, 628]}},
{"id": "y40gvl", "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.\n\nr/spacexplace drew the SpaceX logo near the beginning of r/place. It was quickly vandalized to say \"Sexy sex!\" and then \"Sex sex\" before r/spacexplace corrected it.", "links": {"website": ["https://www.spacex.com/", "https://en.wikipedia.org/wiki/SpaceX"], "subreddit": ["spacexplace"]}, "path": {"1-3": [[755, 194], [755, 205], [798, 205], [798, 196], [800, 194], [800, 191], [799, 191], [796, 194]], "4-30": [[756, 581], [756, 596], [863, 596], [863, 581]], "31-52": [[756, 581], [756, 596], [850, 596], [850, 581]], "129-166, 53-126, T:0-1": [[800, 582], [800, 588], [843, 588], [844, 582]]}, "center": {"1-3": [777, 200], "4-30": [810, 589], "31-52": [803, 589], "129-166, 53-126, T:0-1": [822, 585]}},
{"id": "y3zv71", "name": "Super Mushroom", "description": "A Super Mushroom is a recurring item in the Mario games. If consumed by Mario, he can transform from Small Mario to Super Mario, which increases his size, lets him break brick blocks, and allows him to take a hit from enemies. The pictured Super Mushroom sprite comes from the game Super Mario World.", "links": {"website": ["https://www.mariowiki.com/Super_Mushroom"], "subreddit": ["Mario"]}, "path": {"34-47": [[787, 167], [784, 170], [784, 173], [785, 174], [785, 176], [791, 176], [791, 174], [792, 173], [792, 170], [789, 167]]}, "center": {"34-47": [788, 172]}},
-{"id": "y3ztb7", "name": "Hyouka", "description": "Hyouka is a Japanese mystery novel authored by Honobu Yonezawa. The book later received manga and anime adaptations.", "links": {"website": ["https://en.wikipedia.org/wiki/Hyouka"]}, "path": {"30-47": [[736, 170], [736, 178], [768, 178], [768, 170]], "91-104": [[1290, 664], [1290, 673], [1333, 673], [1333, 664]]}, "center": {"30-47": [752, 174], "91-104": [1312, 669]}},
+{"id": "y3ztb7", "name": "Hyouka", "description": "Hyouka is a Japanese mystery novel authored by Honobu Yonezawa. The book later received manga and anime adaptations.", "links": {"website": ["https://en.wikipedia.org/wiki/Hyouka"]}, "path": {"30-47": [[736, 170], [736, 178], [768, 178], [768, 170]], "91-104": [[1290, 664], [1290, 673], [1333, 673], [1333, 664]], "79-86": [[1606, 862], [1606, 869], [1640, 869], [1640, 862]]}, "center": {"30-47": [752, 174], "91-104": [1312, 669], "79-86": [1623, 866]}},
{"id": "y3zpuu", "name": "Aperture Science", "description": "Aperture Science is an experimental physics corporation that serves as the main antagonist in the games Portal and Portal 2.", "links": {"website": ["https://half-life.fandom.com/wiki/Aperture_Science"], "subreddit": ["HalfLife"]}, "path": {"36-45": [[721, 176], [716, 179], [711, 186], [711, 192], [715, 198], [721, 202], [727, 202], [733, 198], [737, 192], [737, 186], [733, 180], [727, 176]]}, "center": {"36-45": [724, 189]}},
{"id": "y3zmc3", "name": "Marle", "description": "Marle is one of the playable characters in the game Chrono Trigger. She is the princess of Guardia, the kingdom where most of the game is set.\n\nMarle is depicted kissing Crono, the main character of the game and her love interest.", "links": {"website": ["https://chrono.fandom.com/wiki/Marle"], "subreddit": ["chronotrigger"]}, "path": {"30-49": [[766, 191], [762, 193], [762, 204], [761, 205], [761, 206], [772, 206], [772, 203], [775, 201], [775, 196], [777, 196], [777, 193], [775, 191]], "50-94": [[782, 202], [780, 204], [780, 207], [781, 208], [781, 212], [783, 214], [784, 214], [784, 218], [791, 218], [791, 214], [793, 214], [793, 211], [794, 210], [794, 206], [790, 202]], "124-151": [[582, 1817], [584, 1817], [585, 1816], [587, 1816], [590, 1819], [590, 1821], [588, 1821], [588, 1827], [582, 1833]]}, "center": {"30-49": [768, 198], "50-94": [787, 208], "124-151": [585, 1825]}},
{"id": "y3zg6i", "name": "Crono", "description": "Crono is the main character from the 1995 SNES game Chrono Trigger, a Japanese role-playing game (JRPG) developed and published by Square.\n\nCrono used to overlap with Okabe from Steins;Gate. This was very fitting as both Chrono Trigger and Steins;Gate heavily feature time travel. However, a few hours before the end, both Crono and Okabe were moved when the Netherlands placed their ship painting, De Zeven Provinciën, on the canvas. Crono used to be accompanied by a sprite of a kissing Marle, another playable character in the game. However, during the transfer, Marle's sprite was unfortunately lost.", "links": {"website": ["https://chrono.fandom.com/wiki/Crono", "https://en.wikipedia.org/wiki/Chrono_Trigger"], "subreddit": ["chronotrigger"]}, "path": {"109-151": [[591, 1814], [591, 1816], [589, 1816], [586, 1821], [586, 1822], [588, 1823], [587, 1838], [584, 1841], [584, 1843], [586, 1845], [593, 1845], [601, 1841], [601, 1833], [603, 1826], [601, 1824], [601, 1820], [599, 1816], [596, 1816], [594, 1814]]}, "center": {"109-151": [595, 1828]}},
@@ -8443,12 +8415,12 @@
{"id": "y4w4o2", "name": "Scotland heart", "description": "Scotland is a country in the United Kingdom.", "links": {"website": ["https://en.wikipedia.org/wiki/Scotland", "https://en.wikipedia.org/wiki/Flag_of_Scotland"], "subreddit": ["Scotland"]}, "path": {"65": [[1168, 277], [1165, 280], [1165, 282], [1170, 287], [1175, 282], [1175, 280], [1172, 277]], "37-51": [[821, 161], [819, 163], [819, 166], [824, 171], [829, 166], [829, 163], [827, 161]], "13-25": [[821, 161], [819, 163], [819, 166], [824, 171], [832, 171], [837, 166], [837, 163], [835, 161]], "112-126, 133-146": [[1410, 248], [1407, 251], [1407, 252], [1412, 257], [1417, 252], [1417, 251], [1414, 248]]}, "center": {"65": [1170, 281], "37-51": [824, 165], "13-25": [828, 166], "112-126, 133-146": [1412, 252]}},
{"id": "y4wmlg", "name": "pepeSmoke", "description": "A BetterTTV (Better Twitch.tv) emote of the meme character Pepe the Frog smoking a cigarette.", "links": {"website": ["https://betterttv.com/emotes/5b15162147c7bf3bfc0b9c76"]}, "path": {"27-29": [[886, 177], [882, 182], [882, 186], [889, 186], [891, 183], [895, 183], [895, 180], [896, 179], [896, 174], [894, 174], [894, 178]], "56-73": [[1820, 707], [1820, 715], [1833, 715], [1833, 707]]}, "center": {"27-29": [887, 181], "56-73": [1827, 711]}},
{"id": "y4wkae", "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": {"28-38": [[485, 161], [483, 163], [483, 166], [488, 171], [493, 166], [493, 163], [491, 161]], "69-98": [[1232, 277], [1229, 280], [1229, 282], [1234, 287], [1239, 282], [1239, 280], [1236, 277]]}, "center": {"28-38": [488, 165], "69-98": [1234, 281]}},
-{"id": "y4wgfm", "name": "Russia heart", "description": "A heart depicting the flag of Russia, a country spanning Eastern Europe and Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/Flag_of_Russia"]}, "path": {"43-51": [[844, 166], [840, 170], [840, 172], [846, 178], [847, 178], [847, 169]], "149-152": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1157, 248], [1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248]], "126-131": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1156, 248]], "122-125": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1156, 248], [1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248], [1194, 248], [1191, 251], [1191, 252], [1196, 257], [1204, 257], [1209, 252], [1209, 251], [1206, 248], [1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]], "116-120": [[1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1183, 248]], "141, 163-166": [[1080, 248], [1077, 251], [1077, 252], [1082, 257], [1087, 252], [1087, 251], [1084, 248]]}, "center": {"43-51": [844, 171], "149-152": [1180, 252], "126-131": [1154, 252], "122-125": [1199, 253], "116-120": [1180, 252], "141, 163-166": [1082, 252]}},
-{"id": "y4weud", "name": "Chespin", "description": "Chespin is a Grass-type starter Pokémon from Generation VI (Pokémon X/Y).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Chespin"], "subreddit": ["pokemon"]}, "path": {"43-52": [[820, 169], [820, 171], [819, 172], [819, 174], [821, 178], [821, 181], [826, 181], [832, 176], [832, 169]]}, "center": {"43-52": [825, 174]}},
+{"id": "y4wgfm", "name": "Russia heart", "description": "A heart depicting the flag of Russia, a country spanning Eastern Europe and Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/Flag_of_Russia"]}, "path": {"43-51": [[844, 166], [840, 170], [840, 172], [846, 178], [847, 178], [847, 169]], "149-152": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1157, 248], [1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248]], "126-131": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1156, 248]], "122-125": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1156, 248], [1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248], [1194, 248], [1191, 251], [1191, 252], [1196, 257], [1204, 257], [1209, 252], [1209, 251], [1206, 248], [1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]], "116-120": [[1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1183, 248]], "74-78": [[1170, 871], [1168, 873], [1168, 874], [1172, 878], [1176, 874], [1176, 873], [1174, 871]], "141, 163-166": [[1080, 248], [1077, 251], [1077, 252], [1082, 257], [1087, 252], [1087, 251], [1084, 248]]}, "center": {"43-51": [844, 171], "149-152": [1180, 252], "126-131": [1154, 252], "122-125": [1199, 253], "116-120": [1180, 252], "74-78": [1172, 874], "141, 163-166": [1082, 252]}},
+{"id": "y4weud", "name": "Chespin", "description": "Chespin is a Grass-type starter Pokémon from the Generation VI Pokémon games (Pokémon X/Y).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Chespin"], "subreddit": ["pokemon"]}, "path": {"43-52": [[820, 169], [820, 171], [819, 172], [819, 174], [821, 178], [821, 181], [826, 181], [832, 176], [832, 169]], "78-85": [[1529, 846], [1521, 853], [1519, 858], [1519, 860], [1521, 860], [1521, 865], [1523, 867], [1526, 867], [1528, 869], [1530, 869], [1533, 866], [1537, 863], [1537, 861], [1534, 861], [1534, 854], [1538, 852], [1538, 850], [1532, 850], [1532, 846]]}, "center": {"43-52": [825, 174], "78-85": [1527, 857]}},
{"id": "y4wc78", "name": "Chicken", "description": "A chicken is a passive mob in the 2010 sandbox game Minecraft, developed by Mojang Studios in Sweden.", "links": {"website": ["https://minecraft.fandom.com/wiki/Chicken"], "subreddit": ["Minecraft"]}, "path": {"42-48": [[829, 186], [829, 193], [834, 193], [834, 186]], "158-166": [[568, 254], [568, 256], [566, 256], [566, 257], [570, 261], [573, 258], [571, 256], [571, 254]]}, "center": {"42-48": [832, 190], "158-166": [570, 258]}},
{"id": "y4wbcm", "name": "r/place", "description": "The logo of r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/R/place"], "subreddit": ["place"]}, "path": {"37-42": [[846, 179], [846, 185], [852, 185], [852, 179]], "1-12": [[832, 148], [832, 154], [838, 154], [838, 148]], "74-76": [[1, 262], [1, 268], [19, 268], [19, 262], [13, 262], [13, 268], [7, 268], [7, 262]], "93-99": [[1017, 443], [1017, 449], [1023, 449], [1023, 443]]}, "center": {"37-42": [849, 182], "1-12": [835, 151], "74-76": [16, 265], "93-99": [1020, 446]}},
{"id": "y4wadc", "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": {"39-48": [[834, 186], [834, 195], [843, 195], [843, 186]], "55-70": [[949, 170], [949, 179], [957, 179], [957, 170]], "100-130": [[557, 469], [557, 472], [558, 472], [558, 476], [563, 476], [563, 472], [564, 472], [564, 469]]}, "center": {"39-48": [839, 191], "55-70": [953, 175], "100-130": [561, 472]}},
-{"id": "y4wx0t", "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-33": [[804, 171], [804, 176], [810, 176], [810, 171]], "87-89": [[56, 315], [56, 320], [60, 320], [60, 315]], "71-74": [[1373, 335], [1373, 340], [1381, 340], [1381, 335]], "58-63": [[1689, 352], [1689, 357], [1703, 357], [1703, 352]], "6-16": [[729, 658], [729, 663], [737, 663], [737, 658]]}, "center": {"28-33": [807, 174], "87-89": [58, 318], "71-74": [1377, 338], "58-63": [1696, 355], "6-16": [733, 661]}},
+{"id": "y4wx0t", "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-33": [[804, 171], [804, 176], [810, 176], [810, 171]], "87-89": [[56, 315], [56, 320], [60, 320], [60, 315]], "71-74": [[1373, 335], [1373, 340], [1381, 340], [1381, 335]], "58-63": [[1689, 352], [1689, 357], [1703, 357], [1703, 352]], "6-16": [[729, 658], [729, 663], [737, 663], [737, 658]], "93-104": [[1125, 869], [1125, 880], [1130, 880], [1130, 869]]}, "center": {"28-33": [807, 174], "87-89": [58, 318], "71-74": [1377, 338], "58-63": [1696, 355], "6-16": [733, 661], "93-104": [1128, 875]}},
{"id": "y4wv1w", "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe. Due to the Russian invasion of Ukraine, many Redditors drew flags of Ukraine to show support for Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"14-17": [[825, 138], [825, 162], [847, 162], [847, 138]], "56-65": [[1988, 204], [1988, 217], [2000, 217], [2000, 204]], "1-5": [[269, 398], [269, 405], [278, 405], [278, 398]], "99-101": [[1812, 669], [1812, 672], [1818, 672], [1818, 669]], "94-97": [[1813, 669], [1813, 672], [1816, 672], [1816, 669]], "115-120": [[117, 765], [117, 770], [125, 770], [125, 765]]}, "center": {"14-17": [836, 150], "56-65": [1994, 211], "1-5": [274, 402], "99-101": [1815, 671], "94-97": [1815, 671], "115-120": [121, 768]}},
{"id": "y4wtht", "name": "Fuck Putin!", "description": "In the earlier hours of r/place, Redditors expressed their disdain for Russian president Vladimir Putin for ordering the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Vladimir_Putin"]}, "path": {"1-6": [[844, 147], [844, 159], [848, 159], [848, 155], [867, 155], [867, 154], [931, 154], [931, 147]], "24-32": [[0, 212], [454, 212], [454, 221], [441, 221], [441, 251], [0, 251]], "33-42": [[0, 212], [136, 212], [136, 250], [0, 250]], "43-51": [[0, 212], [256, 212], [256, 250], [0, 250]], "52-54": [[0, 212], [186, 212], [186, 232], [224, 232], [224, 212], [426, 212], [427, 251], [175, 250], [173, 247], [166, 247], [158, 218], [149, 215], [144, 216], [132, 227], [128, 240], [128, 250], [0, 250]]}, "center": {"1-6": [864, 151], "24-32": [227, 232], "33-42": [68, 231], "43-51": [128, 231], "52-54": [351, 231]}},
{"id": "y4xapm", "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": {"29-31": [[810, 171], [810, 177], [814, 177], [814, 171]], "56-61": [[1216, 573], [1216, 581], [1221, 581], [1221, 573]]}, "center": {"29-31": [812, 174], "56-61": [1219, 577]}},
@@ -8491,7 +8463,7 @@
{"id": "y6rag1", "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": {"78-92": [[1060, 180], [1060, 182], [1061, 183], [1061, 187], [1058, 193], [1058, 194], [1065, 194], [1065, 180]], "67-77": [[1059, 180], [1061, 185], [1061, 188], [1065, 188], [1065, 180]], "23-39": [[143, 252], [143, 260], [175, 260], [175, 252]], "140-142": [[1830, 222], [1830, 224], [1837, 224], [1837, 222]], "3-15": [[933, 534], [933, 539], [940, 539], [940, 534]]}, "center": {"78-92": [1062, 191], "67-77": [1063, 182], "23-39": [159, 256], "140-142": [1834, 223], "3-15": [937, 537]}},
{"id": "y6r924", "name": "Flag of Costa Rica", "description": "Costa Rica is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "costa_rica"]}, "path": {"91-92": [[1046, 174], [1046, 180], [1051, 180], [1051, 174]], "6-14": [[268, 264], [265, 267], [268, 270], [271, 267]]}, "center": {"91-92": [1049, 177], "6-14": [268, 267]}},
{"id": "y6qmse", "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": {"89-92": [[1037, 180], [1037, 184], [1043, 184], [1044, 182], [1044, 180]], "74-79": [[1058, 194], [1060, 189], [1061, 188], [1065, 188], [1065, 194]], "57-72": [[1058, 194], [1060, 189], [1061, 188], [1072, 188], [1072, 194]], "17-24": [[169, 254], [166, 257], [169, 260], [172, 257]], "28-30": [[314, 253], [314, 257], [321, 257], [321, 253]], "8-9": [[241, 676], [241, 680], [246, 680], [248, 677], [248, 676]], "110-120": [[1904, 760], [1904, 769], [1908, 769], [1908, 760]], "123-126, 129-140": [[876, 588], [876, 591], [880, 591], [880, 588]]}, "center": {"89-92": [1041, 182], "74-79": [1062, 191], "57-72": [1065, 191], "17-24": [169, 257], "28-30": [318, 255], "8-9": [245, 678], "110-120": [1906, 765], "123-126, 129-140": [878, 590]}},
-{"id": "y6qli9", "name": "Flag of Russia", "description": "Russia is a country spanning Eastern Europe and Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/Flag_of_Russia"]}, "path": {"7-8": [[145, 254], [142, 257], [145, 260], [148, 257]], "17-19": [[379, 264], [376, 267], [379, 270], [382, 267]], "29-31": [[689, 318], [689, 325], [699, 325], [699, 318]], "129-134": [[964, 367], [964, 371], [979, 371], [979, 367]], "58-61": [[1520, 529], [1520, 536], [1530, 536], [1530, 529]], "111-120": [[1931, 696], [1931, 700], [1970, 700], [1970, 696]], "70, 88-92": [[1037, 184], [1037, 188], [1043, 188], [1043, 184]], "162-166": [[1982, 539], [1982, 540], [1985, 543], [1988, 543], [1990, 541], [1990, 539]]}, "center": {"7-8": [145, 257], "17-19": [379, 267], "29-31": [694, 322], "129-134": [972, 369], "58-61": [1525, 533], "111-120": [1951, 698], "70, 88-92": [1040, 186], "162-166": [1986, 541]}},
+{"id": "y6qli9", "name": "Flag of Russia", "description": "Russia is a country spanning Eastern Europe and Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Russia", "https://en.wikipedia.org/wiki/Flag_of_Russia"]}, "path": {"7-8": [[145, 254], [142, 257], [145, 260], [148, 257]], "17-19": [[379, 264], [376, 267], [379, 270], [382, 267]], "29-31": [[689, 318], [689, 325], [699, 325], [699, 318]], "129-134": [[964, 367], [964, 371], [979, 371], [979, 367]], "58-61": [[1520, 529], [1520, 536], [1530, 536], [1530, 529]], "111-120": [[1931, 696], [1931, 700], [1970, 700], [1970, 696]], "144-148": [[1717, 869], [1717, 876], [1732, 876], [1732, 869]], "70, 88-92": [[1037, 184], [1037, 188], [1043, 188], [1043, 184]], "162-166": [[1982, 539], [1982, 540], [1985, 543], [1988, 543], [1990, 541], [1990, 539]]}, "center": {"7-8": [145, 257], "17-19": [379, 267], "29-31": [694, 322], "129-134": [972, 369], "58-61": [1525, 533], "111-120": [1951, 698], "144-148": [1725, 873], "70, 88-92": [1040, 186], "162-166": [1986, 541]}},
{"id": "y6qid5", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"60-92": [[1027, 190], [1027, 194], [1037, 194], [1037, 190]], "15-36": [[445, 254], [442, 257], [445, 260], [448, 257]], "9-14": [[445, 254], [442, 257], [445, 260], [448, 257], [445, 254], [475, 254], [472, 257], [475, 260], [478, 257], [475, 254]]}, "center": {"60-92": [1032, 192], "15-36": [445, 257], "9-14": [475, 257]}},
{"id": "y6qgae", "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": {"90-94": [[1080, 142], [1080, 152], [1091, 152], [1091, 142]], "3-9": [[232, 380], [232, 421], [241, 421], [241, 415], [246, 410], [249, 410], [249, 380]], "108-127": [[1326, 475], [1326, 484], [1335, 484], [1335, 475]], "60-66": [[1782, 578], [1782, 581], [1783, 581], [1783, 585], [1788, 585], [1788, 581], [1789, 581], [1789, 578]], "27-39": [[678, 690], [678, 699], [687, 699], [687, 690]]}, "center": {"90-94": [1086, 147], "3-9": [241, 401], "108-127": [1331, 480], "60-66": [1786, 581], "27-39": [683, 695]}},
{"id": "y6s4xk", "name": "Hooley Gang", "description": "Hooley Gang is a German band.", "links": {"website": ["https://www.hooleygang.de/"]}, "path": {"45-69": [[902, 187], [902, 195], [944, 195], [944, 187]]}, "center": {"45-69": [923, 191]}},
@@ -8500,7 +8472,7 @@
{"id": "y6rskn", "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": {"69": [[1047, 170], [1047, 173], [1050, 173], [1050, 176], [1053, 176], [1053, 170]], "22-24": [[36, 166], [32, 170], [32, 171], [40, 171], [40, 170]], "130-131": [[154, 275], [154, 281], [175, 281], [175, 275]], "33-44": [[493, 289], [493, 295], [496, 295], [499, 298], [502, 298], [505, 295], [517, 295], [517, 289], [505, 289], [505, 295], [502, 298], [499, 298], [496, 295], [496, 289]], "56-64": [[1602, 220], [1602, 231], [1614, 231], [1614, 220]], "4-8": [[729, 329], [729, 348], [732, 350], [735, 348], [735, 329]], "111-127": [[1083, 498], [1083, 507], [1089, 507], [1089, 498]], "78-82": [[1403, 418], [1403, 427], [1409, 427], [1409, 418]]}, "center": {"69": [1051, 172], "22-24": [36, 169], "130-131": [165, 278], "33-44": [508, 292], "56-64": [1608, 226], "4-8": [732, 339], "111-127": [1086, 503], "78-82": [1406, 423]}},
{"id": "y6rrm3", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"57-73": [[1047, 165], [1047, 171], [1053, 171], [1053, 165]], "13-15": [[13, 254], [10, 257], [13, 260], [16, 257]], "25-31": [[469, 254], [466, 257], [469, 260], [472, 257]]}, "center": {"57-73": [1050, 168], "13-15": [13, 257], "25-31": [469, 257]}},
{"id": "y6rqw0", "name": "Genderfluid flag", "description": "A pride flag representing the genderfluid community. Genderfluid 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://lgbta.miraheze.org/wiki/Genderfluid"]}, "path": {"60-76": [[1041, 165], [1041, 171], [1047, 171], [1047, 165]], "13-16": [[208, 264], [205, 267], [208, 270], [211, 267]], "23-31": [[911, 692], [911, 698], [921, 698], [921, 692]], "84-87": [[1994, 722], [1994, 725], [1992, 727], [1992, 728], [1999, 728], [1999, 722]]}, "center": {"60-76": [1044, 168], "13-16": [208, 267], "23-31": [916, 695], "84-87": [1996, 726]}},
-{"id": "y6rpvp", "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-69": [[1037, 183], [1037, 188], [1043, 188], [1043, 183]], "49-56": [[74, 252], [74, 257], [82, 257], [82, 252]], "10-14": [[349, 264], [346, 267], [349, 270], [352, 267]], "87-107": [[1483, 337], [1483, 346], [1492, 346], [1492, 337]], "43-44": [[914, 679], [914, 684], [920, 684], [920, 679]]}, "center": {"66-69": [1040, 186], "49-56": [78, 255], "10-14": [349, 267], "87-107": [1488, 342], "43-44": [917, 682]}},
+{"id": "y6rpvp", "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-69": [[1037, 183], [1037, 188], [1043, 188], [1043, 183]], "49-56": [[74, 252], [74, 257], [82, 257], [82, 252]], "10-14": [[349, 264], [346, 267], [349, 270], [352, 267]], "87-107": [[1483, 337], [1483, 346], [1492, 346], [1492, 337]], "43-44": [[914, 679], [914, 684], [920, 684], [920, 679]], "71-83": [[1161, 891], [1161, 896], [1168, 896], [1168, 891]]}, "center": {"66-69": [1040, 186], "49-56": [78, 255], "10-14": [349, 267], "87-107": [1488, 342], "43-44": [917, 682], "71-83": [1165, 894]}},
{"id": "y6rn7r", "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": {"74-85": [[1027, 184], [1027, 190], [1036, 190], [1036, 184]], "15-19": [[679, 254], [676, 257], [679, 260], [682, 257]], "60-66": [[1043, 200], [1043, 206], [1048, 206], [1048, 200]], "131-143": [[1503, 483], [1509, 483], [1509, 485], [1503, 485]]}, "center": {"74-85": [1032, 187], "15-19": [679, 257], "60-66": [1046, 203], "131-143": [1506, 484]}},
{"id": "y6rn7s", "name": "Bigender flag", "description": "Bigender is a gender identity under the multigender, nonbinary, and transgender umbrella terms. Bigender people have two different specific gender identities, either at the same time, or at different times. The latter is a form of genderfluid identity, and may involve only two distinct genders, or it may involve shades of gray between the two. The two genders of a bigender person can be the two binary genders, female and male.", "links": {"website": ["https://nonbinary.miraheze.org/wiki/Bigender"], "subreddit": ["bigender"]}, "path": {"63-92": [[1037, 188], [1037, 194], [1045, 194], [1043, 188]]}, "center": {"63-92": [1040, 191]}},
{"id": "y6rn7t", "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": {"92-95": [[1077, 169], [1077, 174], [1093, 174], [1093, 169]], "56-71": [[1980, 150], [1980, 163], [2000, 163], [2000, 150]], "7-14": [[7, 254], [4, 257], [7, 260], [10, 257]]}, "center": {"92-95": [1085, 172], "56-71": [1990, 157], "7-14": [7, 257]}},
@@ -8541,7 +8513,7 @@
{"id": "y8d9n4", "name": "r/ireland", "description": "Subreddit for topics related to the country of Ireland.", "links": {"subreddit": ["ireland", "PlaceIreland"]}, "path": {"147-166, T:0-1": [[1278, 105], [1278, 113], [1318, 113], [1319, 112], [1319, 105]]}, "center": {"147-166, T:0-1": [1299, 109]}},
{"id": "y8h4ib", "name": "Austria heart", "description": "A heart depicting the flag of Austria.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria"], "subreddit": ["Austria"]}, "path": {"141": [[1294, 158], [1292, 160], [1292, 162], [1296, 166], [1300, 162], [1300, 160], [1298, 158]], "14-16": [[311, 261], [309, 263], [309, 264], [313, 268], [317, 264], [317, 263], [315, 261]], "156-159": [[1096, 248], [1093, 251], [1093, 252], [1098, 257], [1103, 252], [1103, 251], [1100, 248]], "106-107": [[1072, 248], [1069, 251], [1069, 252], [1074, 257], [1079, 252], [1079, 251], [1076, 248]]}, "center": {"141": [1296, 161], "14-16": [313, 264], "156-159": [1098, 252], "106-107": [1074, 252]}},
{"id": "y8fvgp", "name": "Guinness", "description": "Guinness is an Irish stout beer with a black color and a white, creamy froth. It is one of the most popular beers both in Ireland and worldwide.", "links": {"website": ["https://www.guinness.com/", "https://en.wikipedia.org/wiki/Guinness"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"141-166, T:0-1": [[1255, 142], [1253, 144], [1253, 150], [1258, 150], [1258, 145]]}, "center": {"141-166, T:0-1": [1256, 146]}},
-{"id": "y8i5fl", "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": {"10-20": [[17, 117], [15, 119], [15, 124], [8, 124], [8, 126], [10, 128], [13, 130], [17, 130], [17, 134], [23, 134], [21, 143], [21, 157], [27, 157], [27, 142], [31, 138], [31, 136], [27, 126], [24, 123], [22, 117]], "21-25": [[21, 143], [21, 157], [27, 157], [27, 143]], "63-66": [[1893, 313], [1891, 315], [1891, 321], [1893, 323], [1899, 323], [1901, 321], [1901, 315], [1899, 313]]}, "center": {"10-20": [22, 129], "21-25": [24, 150], "63-66": [1896, 318]}},
+{"id": "y8i5fl", "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": {"10-20": [[17, 117], [15, 119], [15, 124], [8, 124], [8, 126], [10, 128], [13, 130], [17, 130], [17, 134], [23, 134], [21, 143], [21, 157], [27, 157], [27, 142], [31, 138], [31, 136], [27, 126], [24, 123], [22, 117]], "21-25": [[21, 143], [21, 157], [27, 157], [27, 143]], "63-66": [[1893, 313], [1891, 315], [1891, 321], [1893, 323], [1899, 323], [1901, 321], [1901, 315], [1899, 313]], "75-87": [[1742, 848], [1739, 851], [1739, 855], [1731, 855], [1731, 857], [1736, 861], [1739, 861], [1739, 869], [1749, 869], [1749, 860], [1750, 860], [1756, 855], [1756, 852], [1753, 852], [1751, 854], [1750, 854], [1750, 851], [1747, 848]]}, "center": {"10-20": [22, 129], "21-25": [24, 150], "63-66": [1896, 318], "75-87": [1744, 856]}},
{"id": "y8i2yb", "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": {"74-87": [[1306, 146], [1303, 149], [1303, 153], [1294, 153], [1292, 155], [1294, 157], [1299, 157], [1301, 159], [1303, 159], [1305, 161], [1307, 161], [1310, 179], [1313, 179], [1313, 163], [1314, 162], [1314, 157], [1311, 154], [1311, 148], [1309, 146]], "16-22": [[647, 263], [647, 270], [654, 270], [654, 263]], "102-138": [[1740, 317], [1738, 319], [1738, 328], [1733, 332], [1733, 334], [1734, 334], [1737, 331], [1739, 331], [1739, 334], [1746, 334], [1746, 317]], "27-37": [[709, 828], [707, 830], [707, 834], [705, 834], [705, 835], [707, 838], [709, 838], [711, 840], [711, 848], [710, 849], [711, 850], [713, 850], [713, 849], [716, 849], [716, 834], [715, 834], [715, 831], [713, 828]]}, "center": {"74-87": [1307, 156], "16-22": [651, 267], "102-138": [1742, 326], "27-37": [711, 835]}},
{"id": "y8hytl", "name": "Wine", "description": "A glass of wine representing the importance of wine in Irish and Czech cultures.", "links": {"website": ["https://en.wikipedia.org/wiki/Czech_wine", "https://en.wikipedia.org/wiki/Irish_wine"], "subreddit": ["PlaceIreland", "ireland", "czech"]}, "path": {"77-93": [[1266, 159], [1266, 164], [1270, 168], [1270, 170], [1268, 172], [1268, 173], [1274, 173], [1274, 172], [1272, 170], [1272, 168], [1276, 164], [1276, 159]]}, "center": {"77-93": [1271, 163]}},
{"id": "y8hwim", "name": "Mario", "description": "Mario is an Italian plumber and the titular character in Nintendo's Mario franchise. This is the sprite for Small Mario from the original Super Mario Bros. game, though with his modern color palette.", "links": {"website": ["https://en.wikipedia.org/wiki/Mario", "https://www.mariowiki.com/Mario"], "subreddit": ["Mario"]}, "path": {"74-81": [[1280, 141], [1277, 144], [1277, 150], [1276, 150], [1276, 158], [1289, 158], [1289, 150], [1288, 150], [1288, 143], [1285, 141]], "116-143": [[1363, 369], [1359, 373], [1359, 382], [1370, 382], [1370, 376], [1371, 375], [1370, 374], [1370, 373], [1366, 369]], "61-64": [[1555, 471], [1552, 475], [1552, 478], [1554, 478], [1554, 481], [1556, 483], [1559, 484], [1562, 481], [1562, 479], [1565, 477], [1565, 474], [1562, 471]], "28-37": [[711, 848], [711, 851], [710, 852], [710, 858], [709, 858], [709, 862], [710, 862], [710, 864], [721, 864], [721, 862], [722, 862], [722, 858], [720, 856], [720, 855], [722, 853], [721, 852], [721, 849], [718, 849], [717, 848]]}, "center": {"74-81": [1283, 152], "116-143": [1365, 376], "61-64": [1558, 476], "28-37": [715, 858]}},
@@ -8552,7 +8524,7 @@
{"id": "y93s77", "name": "Make Place", "description": "In the game Baba Is You, the main gameplay mechanic is pushing blocks with words on them to change the rules of the game. This art features blocks for \"Make\" and \"Place\" drawn in the style of blocks in Baba is You, as the objective on the canvas is to make r/place.", "links": {"website": ["https://hempuli.com/baba/", "https://en.wikipedia.org/wiki/Baba_Is_You"], "subreddit": ["BabaIsYou"]}, "path": {"69-125": [[1357, 105], [1355, 110], [1355, 117], [1375, 117], [1377, 115], [1377, 107], [1375, 105]]}, "center": {"69-125": [1366, 111]}},
{"id": "y8xxau", "name": "Mojira", "description": "The logo for Mojira, the Minecraft bug tracker.", "links": {"website": ["https://bugs.mojang.com\\"], "subreddit": ["mojira"], "discord": ["rpCyfKV"]}, "path": {"119-120": [[549, 1251], [567, 1251], [567, 1265], [550, 1267]]}, "center": {"119-120": [557, 1259]}},
{"id": "twhv70", "name": "Fancade", "description": "Fancade is a cross-platform game builder made by Martin Magni. Players can use Fancade's built-in game engine and editor tools either create or play custom games. The emoji in the middle is called :sweatsmile:, made by user Mathias Elgaard in the Fancade Discord server.", "links": {"website": ["https://www.fancade.com/"], "subreddit": ["Fancade"]}, "path": {"93-159": [[1349, 140], [1349, 161], [1413, 161], [1413, 158], [1411, 156], [1415, 152], [1415, 151], [1409, 151], [1409, 138], [1370, 138], [1368, 140], [1364, 140], [1362, 138], [1361, 138], [1359, 140], [1355, 140], [1353, 138], [1352, 138], [1350, 140]]}, "center": {"93-159": [1382, 150]}},
-{"id": "y9erl4", "name": "Sweden heart", "description": "A heart depicting the flag of Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Sweden", "https://en.wikipedia.org/wiki/Flag_of_Sweden"], "subreddit": ["sweden"]}, "path": {"145-146": [[1306, 158], [1304, 160], [1304, 162], [1308, 166], [1312, 162], [1312, 160], [1310, 158]], "13-18": [[107, 261], [105, 263], [105, 264], [109, 268], [113, 264], [113, 263], [111, 261]]}, "center": {"145-146": [1308, 161], "13-18": [109, 264]}},
+{"id": "y9erl4", "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"]}, "path": {"145-146": [[1306, 158], [1304, 160], [1304, 162], [1308, 166], [1312, 162], [1312, 160], [1310, 158]], "13-18": [[107, 261], [105, 263], [105, 264], [109, 268], [113, 264], [113, 263], [111, 261]], "61-66": [[1827, 873], [1823, 877], [1823, 879], [1831, 879], [1831, 877]]}, "center": {"145-146": [1308, 161], "13-18": [109, 264], "61-66": [1827, 877]}},
{"id": "y9eque", "name": "Hungary heart", "description": "A heart depicting the flag of Hungary.", "links": {"website": ["https://en.wikipedia.org/wiki/Hungary", "https://en.wikipedia.org/wiki/Flag_of_Hungary"], "subreddit": ["hungary"]}, "path": {"110-115": [[1330, 158], [1328, 160], [1328, 162], [1332, 166], [1336, 162], [1336, 160], [1334, 158]], "89-91": [[1134, 277], [1131, 280], [1131, 282], [1136, 287], [1141, 282], [1141, 280], [1138, 277]], "103-104, 141-147": [[1312, 158], [1310, 160], [1310, 162], [1314, 166], [1318, 162], [1318, 160], [1316, 158]], "156-166, T:0-1": [[1239, 252], [1236, 255], [1236, 256], [1240, 260], [1244, 256], [1244, 255], [1241, 252]]}, "center": {"110-115": [1332, 161], "89-91": [1136, 281], "103-104, 141-147": [1314, 161], "156-166, T:0-1": [1240, 256]}},
{"id": "y9eof5", "name": "r/Slovakia", "description": "Subreddit for topics related to the country of Slovakia.", "links": {"subreddit": ["Slovakia"]}, "path": {"95-165, T:0-1": [[1392, 171], [1392, 177], [1429, 177], [1429, 171]]}, "center": {"95-165, T:0-1": [1411, 174]}},
{"id": "y9ejox", "name": "Slovak folk motif", "description": "A traditional motif (pattern) found on many textiles in Slovakia.", "links": {"subreddit": ["Slovakia"]}, "path": {"100-166, T:0-1": [[1325, 188], [1325, 199], [1329, 199], [1331, 201], [1331, 204], [1325, 210], [1325, 220], [1355, 220], [1349, 213], [1347, 203], [1347, 183], [1383, 183], [1383, 203], [1382, 204], [1382, 209], [1381, 210], [1381, 213], [1376, 219], [1376, 220], [1390, 220], [1390, 217], [1398, 217], [1397, 215], [1397, 212], [1394, 212], [1391, 210], [1391, 208], [1395, 204], [1395, 202], [1398, 200], [1396, 196], [1396, 187], [1399, 181], [1403, 178], [1409, 178], [1413, 179], [1420, 188], [1454, 188], [1454, 220], [1437, 220], [1437, 217], [1425, 217], [1420, 210], [1420, 208], [1422, 206], [1422, 203], [1424, 203], [1424, 200], [1425, 200], [1425, 195], [1423, 193], [1422, 193], [1420, 190], [1420, 187], [1412, 179], [1403, 178], [1397, 184], [1396, 188], [1383, 188], [1383, 183], [1347, 183], [1347, 188]]}, "center": {"100-166, T:0-1": [1440, 203]}},
@@ -8678,7 +8650,7 @@
{"id": "ydm5t7", "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": {"123-134": [[1711, 113], [1706, 118], [1706, 119], [1707, 119], [1707, 122], [1709, 122], [1709, 126], [1717, 126], [1717, 124], [1718, 124], [1718, 119], [1717, 119], [1717, 115], [1715, 113]], "77-122": [[1711, 100], [1706, 105], [1706, 106], [1707, 106], [1707, 109], [1709, 109], [1709, 113], [1717, 113], [1717, 108], [1718, 108], [1718, 106], [1717, 106], [1717, 102], [1715, 100]]}, "center": {"123-134": [1712, 118], "77-122": [1712, 105]}},
{"id": "ydm3em", "name": "Shadow the Hedgehog", "description": "Shadow the Hedgehog is a character in the Sonic the Hedgehog franchise. He is the rival of the titular Sonic the Hedgehog.", "links": {"website": ["https://sonic.fandom.com/wiki/Shadow_the_Hedgehog", "https://en.wikipedia.org/wiki/Shadow_the_Hedgehog"], "subreddit": ["SonicTheHedgehog"]}, "path": {"134-157": [[1707, 114], [1707, 122], [1710, 122], [1710, 124], [1709, 124], [1709, 126], [1717, 126], [1717, 124], [1716, 124], [1716, 121], [1718, 121], [1718, 119], [1717, 119], [1717, 115], [1715, 113], [1712, 113], [1711, 114]], "84-88": [[1848, 549], [1848, 551], [1847, 551], [1847, 555], [1849, 557], [1852, 557], [1854, 555], [1854, 553], [1855, 553], [1855, 551], [1853, 549]]}, "center": {"134-157": [1712, 118], "84-88": [1851, 553]}},
{"id": "yefs7e", "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": ["PetankingArtOnline"]}, "path": {"154-155": [[1835, 137], [1835, 143], [1837, 143], [1837, 137]], "102-151": [[1826, 136], [1826, 142], [1828, 142], [1828, 136]], "156-166, 63-101, T:0-1": [[1827, 136], [1827, 142], [1829, 142], [1829, 136]]}, "center": {"154-155": [1836, 140], "102-151": [1827, 139], "156-166, 63-101, T:0-1": [1828, 139]}},
-{"id": "yefpvn", "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": ["PetankingArtOnline"]}, "path": {"154-155": [[1836, 137], [1836, 143], [1838, 143], [1838, 137]], "136-152": [[1816, 136], [1816, 142], [1818, 142], [1818, 136]], "57-58": [[1843, 216], [1843, 220], [1847, 220], [1847, 216]], "156-166, T:0-1": [[1817, 136], [1817, 142], [1819, 142], [1819, 136]]}, "center": {"154-155": [1837, 140], "136-152": [1817, 139], "57-58": [1845, 218], "156-166, T:0-1": [1818, 139]}},
+{"id": "yefpvn", "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": ["PetankingArtOnline"]}, "path": {"154-155": [[1836, 137], [1836, 143], [1838, 143], [1838, 137]], "136-152": [[1816, 136], [1816, 142], [1818, 142], [1818, 136]], "57-58": [[1843, 216], [1843, 220], [1847, 220], [1847, 216]], "78-85": [[1123, 808], [1123, 812], [1129, 812], [1129, 808]], "156-166, T:0-1": [[1817, 136], [1817, 142], [1819, 142], [1819, 136]]}, "center": {"154-155": [1837, 140], "136-152": [1817, 139], "57-58": [1845, 218], "78-85": [1126, 810], "156-166, T:0-1": [1818, 139]}},
{"id": "yef52y", "name": "r/yttd", "description": "Abbreviation of r/yourturntodie, a subreddit focused on the game Your Turn To Die (YTTD).", "links": {"subreddit": ["yourturntodie"]}, "path": {"71-139": [[1852, 119], [1852, 123], [1875, 123], [1875, 119]], "140-166, T:0-1": [[1853, 119], [1853, 123], [1875, 123], [1875, 119]]}, "center": {"71-139": [1864, 121], "140-166, T:0-1": [1864, 121]}},
{"id": "yef3ii", "name": "Joe Tazuna", "description": "Joe Tazuna is the best friend of protagonist Sara Chidouin in YTTD. In the game's story, the two are forced into a death game.", "links": {"website": ["https://yourturntodie.fandom.com/wiki/Joe_Tazuna"], "subreddit": ["yourturntodie"], "discord": ["yttd"]}, "path": {"81-166, T:0-1": [[1869, 148], [1868, 149], [1866, 149], [1866, 151], [1865, 152], [1863, 152], [1863, 153], [1864, 154], [1864, 157], [1876, 157], [1876, 152], [1874, 150], [1874, 149], [1871, 147], [1870, 148]]}, "center": {"81-166, T:0-1": [1870, 153]}},
{"id": "yef0iz", "name": "Flag of Bosnia and Herzegovina", "description": "Bosnia and Herzegovina (BiH) is a country in Southern Europe.\n\nThis flag represents an alliance between r/bih and r/yourturntodie.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/Flag_of_Bosnia_and_Herzegovina"], "subreddit": ["bih", "bosnia"]}, "path": {"56-62": [[1841, 138], [1841, 166], [1879, 166], [1880, 138]], "92-166, T:0-1": [[1845, 119], [1845, 124], [1852, 124], [1852, 119]]}, "center": {"56-62": [1861, 152], "92-166, T:0-1": [1849, 122]}},
@@ -8690,10 +8662,10 @@
{"id": "yewtul", "name": "Germany-Atrioc heart", "description": "A heart with the colors of the flag of Germany and the Atrioc artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://twitch.tv/atrioc"], "subreddit": ["placeDE", "de", "germany", "atrioc"], "discord": ["placeDE"]}, "path": {"113-119": [[1838, 196], [1835, 199], [1835, 200], [1840, 205], [1845, 200], [1845, 199], [1842, 196]]}, "center": {"113-119": [1840, 200]}},
{"id": "yewt4v", "name": "Poland-Atrioc heart", "description": "A heart with the colors of the flag of Poland and the Atrioc artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://twitch.tv/atrioc"], "subreddit": ["atrioc"]}, "path": {"120-153": [[1838, 196], [1835, 199], [1835, 200], [1840, 205], [1845, 200], [1845, 199], [1842, 196]]}, "center": {"120-153": [1840, 200]}},
{"id": "yewrr1", "name": "Mehmed the Conqueror-Atrioc heart", "description": "A heart with the colors of the Mehmed the Conqueror and Atrioc artworks.", "links": {"website": ["https://en.wikipedia.org/wiki/Mehmed_the_Conqueror", "https://twitch.tv/atrioc"], "subreddit": ["Turkey", "atrioc"]}, "path": {"154-167, T:0-1": [[1838, 196], [1835, 199], [1835, 200], [1840, 205], [1845, 200], [1845, 199], [1842, 196]]}, "center": {"154-167, T:0-1": [1840, 200]}},
-{"id": "yf8it5", "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"]}, "path": {"149": [[1311, 369], [1311, 377], [1315, 377], [1315, 369]], "106-117": [[1886, 106], [1886, 113], [1904, 113], [1904, 106]], "95-105": [[1893, 109], [1893, 113], [1899, 113], [1899, 109]], "78-81": [[1895, 112], [1895, 116], [1901, 116], [1901, 112]], "16-17": [[67, 254], [64, 257], [67, 260], [73, 260], [76, 257], [73, 254]], "10-15": [[73, 254], [70, 257], [73, 260], [76, 257]], "5-6": [[7, 254], [4, 257], [7, 260], [10, 257]], "60-66": [[1604, 235], [1604, 239], [1612, 239], [1612, 235]], "56-58": [[1375, 716], [1375, 722], [1383, 722], [1383, 716]]}, "center": {"149": [1313, 373], "106-117": [1895, 110], "95-105": [1896, 111], "78-81": [1898, 114], "16-17": [70, 257], "10-15": [73, 257], "5-6": [7, 257], "60-66": [1608, 237], "56-58": [1379, 719]}},
+{"id": "yf8it5", "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"]}, "path": {"149": [[1311, 369], [1311, 377], [1315, 377], [1315, 369]], "106-117": [[1886, 106], [1886, 113], [1904, 113], [1904, 106]], "95-105": [[1893, 109], [1893, 113], [1899, 113], [1899, 109]], "78-81": [[1895, 112], [1895, 116], [1901, 116], [1901, 112]], "16-17": [[67, 254], [64, 257], [67, 260], [73, 260], [76, 257], [73, 254]], "10-15": [[73, 254], [70, 257], [73, 260], [76, 257]], "5-6": [[7, 254], [4, 257], [7, 260], [10, 257]], "60-66": [[1604, 235], [1604, 239], [1612, 239], [1612, 235]], "56-58": [[1375, 716], [1375, 722], [1383, 722], [1383, 716]], "70-76": [[1711, 889], [1711, 899], [1717, 899], [1717, 889]]}, "center": {"149": [1313, 373], "106-117": [1895, 110], "95-105": [1896, 111], "78-81": [1898, 114], "16-17": [70, 257], "10-15": [73, 257], "5-6": [7, 257], "60-66": [1608, 237], "56-58": [1379, 719], "70-76": [1714, 894]}},
{"id": "yf8gmd", "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": ["vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"119-126": [[1893, 103], [1893, 107], [1918, 107], [1918, 103]], "110-116": [[457, 610], [457, 614], [476, 614], [476, 610]], "101-109": [[465, 610], [465, 614], [476, 614], [476, 610]], "77-100": [[468, 610], [468, 614], [476, 614], [476, 610]], "4-19": [[693, 609], [693, 637], [722, 637], [722, 609]], "20-22": [[680, 609], [680, 637], [722, 637], [722, 609]]}, "center": {"119-126": [1906, 105], "110-116": [467, 612], "101-109": [471, 612], "77-100": [472, 612], "4-19": [708, 623], "20-22": [701, 623]}},
{"id": "yf8dhk", "name": "Flag of Spain", "description": "Spain 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": {"136-142": [[1877, 135], [1877, 142], [1900, 142], [1900, 135]], "5-9": [[421, 254], [418, 257], [421, 260], [424, 257]], "94-106": [[36, 344], [36, 351], [44, 351], [44, 345], [41, 345], [41, 344]], "151-156": [[1303, 567], [1303, 573], [1310, 573], [1310, 567]], "146-150": [[1305, 568], [1305, 572], [1309, 572], [1309, 568]], "157-166, T:0-1": [[1290, 566], [1290, 580], [1299, 580], [1299, 576], [1290, 576], [1290, 573], [1300, 573], [1300, 572], [1309, 572], [1309, 566]]}, "center": {"136-142": [1889, 139], "5-9": [421, 257], "94-106": [39, 348], "151-156": [1307, 570], "146-150": [1307, 570], "157-166, T:0-1": [1294, 570]}},
-{"id": "yf8c9q", "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": {"154-155": [[1885, 109], [1885, 115], [1891, 115], [1891, 109]], "109-111": [[1892, 115], [1892, 121], [1898, 121], [1898, 115]], "69-72": [[1932, 176], [1932, 184], [1944, 184], [1944, 183], [1951, 183], [1951, 176]], "17-21": [[37, 254], [34, 257], [37, 260], [40, 257]], "13-14": [[25, 254], [22, 257], [25, 260], [31, 260], [34, 257], [31, 254]], "7-12": [[31, 254], [28, 257], [31, 260], [34, 257]], "138-145": [[1288, 377], [1288, 384], [1298, 384], [1298, 377]]}, "center": {"154-155": [1888, 112], "109-111": [1895, 118], "69-72": [1936, 180], "17-21": [37, 257], "13-14": [28, 257], "7-12": [31, 257], "138-145": [1293, 381]}},
+{"id": "yf8c9q", "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": {"154-155": [[1885, 109], [1885, 115], [1891, 115], [1891, 109]], "109-111": [[1892, 115], [1892, 121], [1898, 121], [1898, 115]], "69-72": [[1932, 176], [1932, 184], [1944, 184], [1944, 183], [1951, 183], [1951, 176]], "17-21": [[37, 254], [34, 257], [37, 260], [40, 257]], "13-14": [[25, 254], [22, 257], [25, 260], [31, 260], [34, 257], [31, 254]], "7-12": [[31, 254], [28, 257], [31, 260], [34, 257]], "138-145": [[1288, 377], [1288, 384], [1298, 384], [1298, 377]], "92-94": [[1750, 896], [1750, 900], [1760, 900], [1760, 896]], "89-91": [[1764, 890], [1762, 892], [1762, 897], [1770, 897], [1770, 890]]}, "center": {"154-155": [1888, 112], "109-111": [1895, 118], "69-72": [1936, 180], "17-21": [37, 257], "13-14": [28, 257], "7-12": [31, 257], "138-145": [1293, 381], "92-94": [1755, 898], "89-91": [1766, 894]}},
{"id": "yf8901", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"114": [[476, 618], [476, 624], [486, 624], [486, 618]], "145-159": [[1877, 124], [1877, 166], [1887, 166], [1887, 124]], "139-141": [[1883, 113], [1883, 125], [1880, 129], [1880, 135], [1884, 135], [1884, 130], [1887, 127], [1887, 113]], "142-144": [[1883, 113], [1883, 124], [1877, 124], [1877, 166], [1887, 166], [1887, 113]], "5-6": [[529, 254], [526, 257], [529, 260], [532, 257]], "118-122": [[1337, 477], [1337, 482], [1344, 482], [1344, 477]]}, "center": {"114": [481, 621], "145-159": [1882, 145], "139-141": [1885, 123], "142-144": [1882, 140], "5-6": [529, 257], "118-122": [1341, 480]}},
{"id": "yf85w3", "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": {"147-148": [[1895, 114], [1895, 121], [1902, 121], [1902, 120], [1896, 114]], "52-61": [[448, 632], [448, 646], [500, 646], [500, 639], [469, 639], [469, 632]], "45-51": [[448, 646], [465, 646], [465, 639], [456, 639], [465, 630], [465, 628], [451, 614], [465, 600], [465, 598], [456, 589], [456, 578], [463, 571], [463, 567], [459, 563], [457, 563], [457, 564], [462, 568], [462, 569], [454, 577], [454, 591], [462, 599], [448, 613], [448, 615], [462, 629], [448, 643]]}, "center": {"147-148": [1897, 119], "52-61": [455, 639], "45-51": [454, 642]}},
{"id": "yf85w4", "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": {"4-19": [[97, 254], [94, 257], [97, 260], [100, 257]]}, "center": {"4-19": [97, 257]}},
@@ -8706,7 +8678,7 @@
{"id": "yf6dr3", "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"]}, "path": {"87-131": [[1857, 175], [1853, 176], [1849, 183], [1848, 191], [1848, 200], [1853, 218], [1863, 222], [1866, 228], [1873, 228], [1874, 230], [1880, 230], [1883, 237], [1903, 235], [1908, 238], [1912, 238], [1921, 223], [1921, 191], [1919, 179], [1910, 172], [1904, 174], [1892, 174], [1891, 175]]}, "center": {"87-131": [1892, 204]}},
{"id": "yfaf72", "name": "JXG", "description": "JXG is the community of the streamer janix.", "links": {"website": ["https://twitch.tv/janix"], "subreddit": ["JXG"]}, "path": {"66-94": [[1878, 156], [1878, 162], [1891, 162], [1891, 156]]}, "center": {"66-94": [1885, 159]}},
{"id": "yfab2t", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"71-72": [[1851, 167], [1851, 171], [1858, 171], [1858, 167]], "16-26": [[253, 254], [250, 257], [253, 260], [256, 257]], "36-44": [[485, 289], [485, 293], [493, 293], [493, 289]], "61-64": [[1093, 224], [1093, 233], [1097, 233], [1097, 224]], "2-13": [[1, 653], [1, 657], [27, 657], [27, 653]], "84-90": [[1933, 696], [1933, 697], [1938, 700], [1949, 700], [1953, 697], [1953, 696], [1971, 696], [1971, 698], [1973, 700], [1999, 700], [1999, 696]], "102-114": [[1123, 733], [1123, 737], [1129, 737], [1129, 733]], "115-122": [[1124, 733], [1124, 737], [1128, 737], [1128, 733]]}, "center": {"71-72": [1855, 169], "16-26": [253, 257], "36-44": [489, 291], "61-64": [1095, 229], "2-13": [14, 655], "84-90": [1975, 698], "102-114": [1126, 735], "115-122": [1126, 735]}},
-{"id": "yfaacm", "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": {"100": [[927, 751], [927, 756], [929, 756], [929, 751]], "70-72": [[1850, 163], [1850, 168], [1858, 168], [1858, 163]], "49-56": [[81, 252], [81, 257], [88, 257], [88, 252]], "7-23": [[214, 264], [211, 267], [214, 270], [217, 267]], "111-118": [[1288, 377], [1288, 382], [1294, 382], [1294, 377]], "103-110": [[1288, 377], [1288, 382], [1298, 382], [1298, 377]], "97-99": [[926, 756], [926, 761], [930, 761], [930, 756]]}, "center": {"100": [928, 754], "70-72": [1854, 166], "49-56": [85, 255], "7-23": [214, 267], "111-118": [1291, 380], "103-110": [1293, 380], "97-99": [928, 759]}},
+{"id": "yfaacm", "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": {"100": [[927, 751], [927, 756], [929, 756], [929, 751]], "70-72": [[1850, 163], [1850, 168], [1858, 168], [1858, 163]], "49-56": [[81, 252], [81, 257], [88, 257], [88, 252]], "7-23": [[214, 264], [211, 267], [214, 270], [217, 267]], "111-118": [[1288, 377], [1288, 382], [1294, 382], [1294, 377]], "103-110": [[1288, 377], [1288, 382], [1298, 382], [1298, 377]], "97-99": [[926, 756], [926, 761], [930, 761], [930, 756]], "61-63": [[1059, 892], [1059, 897], [1062, 897], [1062, 892]]}, "center": {"100": [928, 754], "70-72": [1854, 166], "49-56": [85, 255], "7-23": [214, 267], "111-118": [1291, 380], "103-110": [1293, 380], "97-99": [928, 759], "61-63": [1061, 895]}},
{"id": "yfa8ip", "name": "1851", "description": "The year when Florida State University was founded.", "links": {"subreddit": ["fsu"]}, "path": {"58-61": [[1846, 109], [1846, 115], [1857, 115], [1857, 109]]}, "center": {"58-61": [1852, 112]}},
{"id": "yfa4a7", "name": "Traffic light", "description": "A traffic light is a device used to control the flow of traffic. The most common traffic lights use red, yellow, and green lights to signal whether vehicles should stop or proceed.", "links": {"website": ["https://en.wikipedia.org/wiki/Traffic_light"]}, "path": {"56-61": [[1831, 148], [1831, 162], [1837, 162], [1837, 148]]}, "center": {"56-61": [1834, 155]}},
{"id": "yfa00m", "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": ["SGaP"]}, "path": {"56-61": [[1801, 186], [1801, 197], [1797, 204], [1797, 207], [1836, 207], [1836, 198], [1838, 195], [1841, 195], [1841, 186]]}, "center": {"56-61": [1819, 197]}},
@@ -8721,7 +8693,7 @@
{"id": "yf8y4i", "name": "Flag of Belgium", "description": "Belgium is a country in Northwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Belgium", "https://en.wikipedia.org/wiki/Flag_of_Belgium"], "subreddit": ["belgium", "Belgium2", "BELGICA", "placeBE"]}, "path": {"73": [[1161, 783], [1161, 785], [1165, 785], [1165, 783]], "98-99": [[1890, 107], [1890, 111], [1894, 111], [1894, 107]], "8-9": [[55, 254], [52, 257], [55, 260], [73, 260], [76, 257], [73, 254], [70, 257], [73, 260], [55, 260], [58, 257]], "10-21": [[55, 254], [52, 257], [55, 260], [58, 257]], "4-7": [[73, 254], [70, 257], [73, 260], [76, 257]]}, "center": {"73": [1163, 784], "98-99": [1892, 109], "8-9": [73, 257], "10-21": [55, 257], "4-7": [73, 257]}},
{"id": "yf8wql", "name": "Flag of Skåne", "description": "Skåne (Scania) is Sweden's southernmost province. The province had (and still jokingly has) a long history of being fought over by both Sweden and Denmark. It is the only officially recognized province flag in Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/Scania", "https://en.wikipedia.org/wiki/Flag_of_Scania"], "subreddit": ["Skane", "sweden"]}, "path": {"9": [[151, 254], [148, 257], [151, 260], [154, 257], [151, 254], [181, 254], [178, 257], [181, 260], [184, 257], [181, 254]], "10": [[181, 254], [178, 257], [181, 260], [184, 257]], "100-104": [[1888, 109], [1888, 113], [1894, 113], [1894, 109]], "11-12": [[559, 254], [556, 257], [559, 260], [562, 257]]}, "center": {"9": [181, 257], "10": [181, 257], "100-104": [1891, 111], "11-12": [559, 257]}},
{"id": "yf8ute", "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": ["Romania"]}, "path": {"100-106": [[1889, 107], [1889, 110], [1892, 110], [1892, 113], [1899, 113], [1899, 106], [1892, 106], [1892, 107]], "12-15": [[286, 264], [283, 267], [286, 270], [298, 270], [301, 267], [298, 264]], "6-9": [[298, 264], [295, 267], [298, 270], [301, 267]], "1-5": [[12, 572], [12, 580], [16, 580], [16, 572]], "86-93": [[661, 557], [661, 564], [688, 564], [688, 557]], "50-53": [[929, 527], [929, 531], [934, 531], [934, 527]], "147-151": [[1117, 579], [1117, 583], [1127, 583], [1127, 579]], "108-116, 136-138": [[476, 618], [476, 624], [486, 624], [486, 618]], "10-11, 16-17": [[292, 264], [289, 267], [292, 270], [298, 270], [301, 267], [298, 264]]}, "center": {"100-106": [1895, 109], "12-15": [292, 267], "6-9": [298, 267], "1-5": [14, 576], "86-93": [675, 561], "50-53": [932, 529], "147-151": [1122, 581], "108-116, 136-138": [481, 621], "10-11, 16-17": [295, 267]}},
-{"id": "yf8tbx", "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"]}, "path": {"96-108": [[1898, 109], [1898, 113], [1904, 113], [1904, 109]], "4-13": [[193, 254], [190, 257], [193, 260], [196, 257]], "19-20": [[553, 254], [550, 257], [553, 260], [556, 257]]}, "center": {"96-108": [1901, 111], "4-13": [193, 257], "19-20": [553, 257]}},
+{"id": "yf8tbx", "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"]}, "path": {"96-108": [[1898, 109], [1898, 113], [1904, 113], [1904, 109]], "4-13": [[193, 254], [190, 257], [193, 260], [196, 257]], "19-20": [[553, 254], [550, 257], [553, 260], [556, 257]], "78-81": [[1337, 845], [1337, 851], [1346, 851], [1346, 845]]}, "center": {"96-108": [1901, 111], "4-13": [193, 257], "19-20": [553, 257], "78-81": [1342, 848]}},
{"id": "yf8sl3", "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": {"13": [[181, 254], [178, 257], [181, 260], [184, 257]], "44": [[944, 692], [944, 696], [949, 696], [949, 692]], "96-108": [[1898, 106], [1898, 110], [1904, 110], [1904, 106]], "6-12": [[199, 254], [196, 257], [199, 260], [202, 257]], "23-25": [[691, 254], [688, 257], [691, 260], [694, 257]], "15-20": [[745, 476], [745, 482], [753, 482], [753, 476]], "110-120": [[1612, 421], [1612, 427], [1621, 427], [1621, 421]], "133-137": [[1558, 536], [1558, 542], [1566, 542], [1566, 536]]}, "center": {"13": [181, 257], "44": [947, 694], "96-108": [1901, 108], "6-12": [199, 257], "23-25": [691, 257], "15-20": [749, 479], "110-120": [1617, 424], "133-137": [1562, 539]}},
{"id": "yfalev", "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": {"64-66": [[1823, 160], [1823, 168], [1826, 168], [1826, 160]], "9-13": [[205, 254], [202, 257], [205, 260], [208, 257]], "60-62": [[1728, 199], [1726, 201], [1726, 203], [1728, 205], [1730, 205], [1732, 203], [1732, 201], [1730, 199]], "140-142": [[1830, 221], [1830, 223], [1836, 223], [1836, 221]], "88-126": [[1266, 312], [1266, 313], [1270, 318], [1279, 318], [1279, 312]], "72-87": [[1271, 312], [1271, 318], [1278, 318], [1278, 312]], "40-44": [[580, 181], [580, 187], [585, 187], [585, 181]], "154-165, T:0-1": [[1947, 385], [1947, 397], [1951, 397], [1951, 385]]}, "center": {"64-66": [1825, 164], "9-13": [205, 257], "60-62": [1729, 202], "140-142": [1833, 222], "88-126": [1273, 315], "72-87": [1275, 315], "40-44": [583, 184], "154-165, T:0-1": [1949, 391]}},
{"id": "yfayr8", "name": "Nao Egokoro", "description": "Nao Egokoro is a character in the visual novel Your Turn to Die (YTTD).", "links": {"website": ["https://yourturntodie.fandom.com/wiki/Nao_Egokoro"], "subreddit": ["yourturntodie"], "discord": ["yttd"]}, "path": {"161-166, T:0-1": [[1877, 143], [1877, 147], [1876, 147], [1876, 153], [1878, 153], [1879, 154], [1883, 150], [1884, 150], [1887, 147], [1887, 145], [1883, 142]]}, "center": {"161-166, T:0-1": [1881, 146]}},
@@ -8765,7 +8737,7 @@
{"id": "yhmlsa", "name": "Inscryption-France heart", "description": "A heart with the colors of the game Inscryption and the flag of France.", "links": {"website": ["https://en.wikipedia.org/wiki/Inscryption", "https://en.wikipedia.org/wiki/France"], "subreddit": ["inscryption", "placefrance", "franceplace", "placeFR", "france"]}, "path": {"140-165, T:0-1": [[149, 289], [147, 291], [147, 294], [151, 298], [152, 298], [156, 294], [156, 291], [154, 289]]}, "center": {"140-165, T:0-1": [152, 293]}},
{"id": "yhm8eq", "name": "Iran heart", "description": "A heart depicting the flag of Iran. This heart indicates the peace agreement between Iran and r/inscryption.", "links": {"website": ["https://en.wikipedia.org/wiki/Iran", "https://en.wikipedia.org/wiki/Flag_of_Iran"], "subreddit": ["inscryption"]}, "path": {"119-165, T:0-1": [[110, 299], [108, 301], [108, 302], [111, 305], [114, 302], [114, 301], [112, 299]]}, "center": {"119-165, T:0-1": [111, 302]}},
{"id": "yhlmsq", "name": "Toast", "description": "A smiling piece of toast.\n\nAfter the expansion of the Deep Rock Galactic art, the toast's design was incorporated into the drawings of the Deep Rock Galactic classes.", "links": {"website": ["https://en.wikipedia.org/wiki/Toast_(food)"]}, "path": {"18-28": [[224, 264], [222, 266], [222, 269], [223, 269], [223, 275], [232, 275], [232, 269], [233, 269], [233, 266], [231, 264]]}, "center": {"18-28": [228, 269]}},
-{"id": "yhmvne", "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": {"96-118": [[1849, 88], [1846, 91], [1846, 92], [1850, 96], [1851, 96], [1855, 92], [1855, 91], [1852, 88]], "13-17": [[233, 261], [231, 263], [231, 264], [235, 268], [239, 264], [239, 263], [237, 261]], "20-25": [[620, 251], [618, 253], [618, 254], [622, 258], [626, 254], [626, 253], [624, 251]], "155-158": [[1720, 603], [1718, 605], [1718, 606], [1721, 609], [1724, 606], [1724, 605], [1722, 603]]}, "center": {"96-118": [1851, 92], "13-17": [235, 264], "20-25": [622, 254], "155-158": [1721, 606]}},
+{"id": "yhmvne", "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": {"96-118": [[1849, 88], [1846, 91], [1846, 92], [1850, 96], [1851, 96], [1855, 92], [1855, 91], [1852, 88]], "13-17": [[233, 261], [231, 263], [231, 264], [235, 268], [239, 264], [239, 263], [237, 261]], "20-25": [[620, 251], [618, 253], [618, 254], [622, 258], [626, 254], [626, 253], [624, 251]], "155-158": [[1720, 603], [1718, 605], [1718, 606], [1721, 609], [1724, 606], [1724, 605], [1722, 603]], "70-74": [[1726, 871], [1724, 873], [1724, 874], [1728, 878], [1732, 874], [1732, 873], [1730, 871]]}, "center": {"96-118": [1851, 92], "13-17": [235, 264], "20-25": [622, 254], "155-158": [1721, 606], "70-74": [1728, 874]}},
{"id": "yhmu4b", "name": "Fox", "description": "This fox was drawn shortly after the canvas's first expansion. After r/yourturntodie started drawing their game's protagonist, Sara Chidouin, they relocated the fox nearby and maintained it during its time on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Fox"]}, "path": {"62-112": [[1877, 128], [1877, 133], [1882, 138], [1887, 133], [1887, 128]], "57-61": [[1861, 128], [1861, 133], [1865, 137], [1867, 137], [1871, 133], [1871, 128]]}, "center": {"62-112": [1882, 132], "57-61": [1866, 132]}},
{"id": "tx1yij", "name": "Flag of China", "description": "China is a country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/China", "https://en.wikipedia.org/wiki/Flag_of_China"], "subreddit": ["Sino"]}, "path": {"57-62": [[172, 196], [172, 201], [180, 201], [180, 196]]}, "center": {"57-62": [176, 199]}},
{"id": "yhovfr", "name": "Flag of the Philippines", "description": "The Philippines, officially the Republic of the Philippines, is an island country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines", "https://en.wikipedia.org/wiki/Flag_of_the_Philippines"], "subreddit": ["Philippines"]}, "path": {"10-27": [[109, 254], [106, 257], [109, 260], [112, 257]]}, "center": {"10-27": [109, 257]}},
@@ -8801,7 +8773,7 @@
{"id": "yjolrf", "name": "California Golden Bears", "description": "The California Golden Bears, often known as Cal, are the athletic teams at the University of California, Berkeley.", "links": {"website": ["http://www.calbears.com/", "https://en.wikipedia.org/wiki/California_Golden_Bears"], "subreddit": ["berkeley"]}, "path": {"30-73": [[367, 273], [362, 278], [359, 284], [359, 290], [360, 291], [360, 296], [379, 296], [380, 295], [384, 295], [384, 293], [383, 292], [383, 278], [380, 275], [374, 275], [372, 273]], "9-27": [[373, 277], [367, 282], [367, 291], [380, 291], [383, 288], [383, 280], [381, 278], [376, 278], [375, 277]], "74-165, T:0-1": [[364, 274], [361, 277], [359, 281], [359, 288], [357, 290], [357, 291], [361, 291], [362, 290], [376, 290], [380, 287], [380, 274]]}, "center": {"30-73": [371, 285], "9-27": [376, 285], "74-165, T:0-1": [371, 282]}},
{"id": "yjroys", "name": "Flag of Brazil", "description": "Brazil 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": {"14-19": [[361, 264], [358, 267], [361, 270], [364, 267]]}, "center": {"14-19": [361, 267]}},
{"id": "yjrnum", "name": "Japan heart", "description": "A heart depicting the flag of Japan, an island country in East Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Japan", "https://en.wikipedia.org/wiki/Flag_of_Japan"]}, "path": {"17-19": [[374, 261], [372, 263], [372, 264], [376, 268], [380, 264], [380, 263], [378, 261]]}, "center": {"17-19": [376, 264]}},
-{"id": "yjrmqz", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"6-20": [[373, 264], [370, 267], [373, 270], [376, 267]], "64-71": [[1742, 602], [1740, 604], [1740, 606], [1736, 609], [1736, 612], [1734, 612], [1734, 621], [1743, 621], [1743, 602]], "80-90": [[1930, 707], [1930, 712], [1999, 712], [1999, 707]]}, "center": {"6-20": [373, 267], "64-71": [1739, 616], "80-90": [1965, 710]}},
+{"id": "yjrmqz", "name": "Aromantic flag", "description": "A pride flag representing the aromatic community. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"6-20": [[373, 264], [370, 267], [373, 270], [376, 267]], "64-71": [[1742, 602], [1740, 604], [1740, 606], [1736, 609], [1736, 612], [1734, 612], [1734, 621], [1743, 621], [1743, 602]], "80-90": [[1930, 707], [1930, 712], [1999, 712], [1999, 707]], "125-134": [[1129, 869], [1129, 880], [1141, 880], [1141, 869]]}, "center": {"6-20": [373, 267], "64-71": [1739, 616], "80-90": [1965, 710], "125-134": [1135, 875]}},
{"id": "yjrlmt", "name": "Flag of Pakistan", "description": "Pakistan is a country in South Asia. The Pakistani flag represents many things with the use of its colours and shapes. The green in the flag is usually a symbol associated with Islam which represents the majority of the Muslim population of Pakistan. The white stripe represents the minorities of Pakistan of different religious backgrounds. The moon and the star, another commonly used symbol in Islam, represents light and progress. Overall, the intentions of the founders as they created this flag was to represent Islam as well as respect the rights of other religious minorities.", "links": {"website": ["https://en.wikipedia.org/wiki/Pakistan", "https://en.wikipedia.org/wiki/Flag_of_Pakistan"], "subreddit": ["pakistan"]}, "path": {"17-23": [[367, 254], [364, 257], [367, 260], [370, 257]], "11-13": [[361, 254], [358, 257], [361, 260], [364, 257]]}, "center": {"17-23": [367, 257], "11-13": [361, 257]}},
{"id": "yjric0", "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"]}, "path": {"16-18": [[388, 266], [384, 270], [384, 271], [386, 273], [390, 273], [392, 271], [392, 270]], "101-107": [[1176, 277], [1173, 280], [1173, 282], [1178, 287], [1183, 282], [1183, 280], [1180, 277]], "63-68": [[1200, 277], [1197, 280], [1197, 282], [1202, 287], [1207, 282], [1207, 280], [1204, 277]]}, "center": {"16-18": [388, 270], "101-107": [1178, 281], "63-68": [1202, 281]}},
{"id": "yjrdnu", "name": "India heart", "description": "A heart depicting the flag of India, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/India"], "subreddit": ["IndiaPlace", "IndianPlace", "india"]}, "path": {"18-20": [[337, 266], [333, 270], [333, 271], [335, 273], [339, 273], [341, 271], [341, 270]], "97-99": [[1226, 248], [1223, 251], [1223, 252], [1228, 257], [1236, 257], [1241, 252], [1241, 251], [1238, 248]], "120-122, 128-132, 137-141, 146-160": [[1186, 248], [1183, 251], [1183, 252], [1188, 257], [1193, 252], [1193, 251], [1190, 248]], "100-117, 74-96": [[1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]]}, "center": {"18-20": [337, 270], "97-99": [1232, 253], "120-122, 128-132, 137-141, 146-160": [1188, 252], "100-117, 74-96": [1228, 252]}},
@@ -8840,7 +8812,7 @@
{"id": "yjruw0", "name": "Flag of Brazil", "description": "Brazil 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": {"17-31": [[499, 254], [496, 257], [499, 260], [517, 260], [520, 257], [517, 254]], "4-16": [[517, 254], [514, 257], [517, 260], [520, 257]], "62-115": [[1118, 649], [1118, 653], [1124, 653], [1124, 649]], "116-119": [[1117, 649], [1117, 653], [1123, 653], [1123, 649]], "148-160": [[1118, 650], [1118, 654], [1124, 654], [1124, 650]]}, "center": {"17-31": [508, 257], "4-16": [517, 257], "62-115": [1121, 651], "116-119": [1120, 651], "148-160": [1121, 652]}},
{"id": "yjruw1", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"25-28": [[482, 251], [480, 253], [480, 254], [484, 258], [488, 254], [488, 253], [486, 251]], "161-162": [[1202, 248], [1199, 251], [1199, 252], [1204, 257], [1212, 257], [1217, 252], [1217, 251], [1214, 248]], "153-154": [[1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]], "139-144, 158-160": [[1202, 248], [1199, 251], [1199, 252], [1204, 257], [1212, 257], [1217, 252], [1217, 251], [1214, 248], [1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]], "145-148, 155-157": [[1202, 248], [1199, 251], [1199, 252], [1204, 257], [1209, 252], [1209, 251], [1206, 248], [1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]], "109-111, 119-129, 132, 73-75, 84-95": [[1210, 248], [1207, 251], [1207, 252], [1212, 257], [1217, 252], [1217, 251], [1214, 248]]}, "center": {"25-28": [484, 254], "161-162": [1208, 253], "153-154": [1228, 252], "139-144, 158-160": [1211, 252], "145-148, 155-157": [1228, 252], "109-111, 119-129, 132, 73-75, 84-95": [1212, 252]}},
{"id": "yjruw2", "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", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"25-28": [[488, 251], [486, 253], [486, 254], [490, 258], [494, 254], [494, 253], [492, 251]], "87-95": [[1384, 277], [1381, 280], [1381, 281], [1386, 286], [1391, 281], [1391, 280], [1388, 277]], "61-62": [[1302, 385], [1300, 387], [1300, 388], [1304, 392], [1308, 388], [1308, 387], [1306, 385]], "154-161, T:0-1": [[1080, 248], [1077, 251], [1077, 252], [1082, 257], [1087, 252], [1087, 251], [1084, 248], [1152, 248], [1149, 251], [1149, 252], [1153, 256], [1155, 256], [1159, 252], [1159, 251], [1156, 248]], "162-166": [[1152, 248], [1149, 251], [1149, 252], [1154, 257], [1159, 252], [1159, 251], [1156, 248]]}, "center": {"25-28": [490, 254], "87-95": [1386, 281], "61-62": [1304, 388], "154-161, T:0-1": [1082, 252], "162-166": [1154, 252]}},
-{"id": "yjruw3", "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": {"19": [[488, 251], [486, 253], [486, 254], [490, 258], [496, 258], [500, 254], [500, 253], [498, 251]], "16-18": [[494, 251], [492, 253], [492, 254], [496, 258], [500, 254], [500, 253], [498, 251]], "92-93": [[850, 229], [848, 231], [848, 233], [851, 236], [852, 236], [852, 231]], "101-105": [[1202, 248], [1199, 251], [1199, 252], [1204, 257], [1209, 252], [1209, 251], [1206, 248]], "149-152": [[266, 604], [264, 606], [264, 607], [267, 610], [270, 607], [270, 606], [268, 604]]}, "center": {"19": [493, 255], "16-18": [496, 254], "92-93": [850, 233], "101-105": [1204, 252], "149-152": [267, 607]}},
+{"id": "yjruw3", "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": {"19": [[488, 251], [486, 253], [486, 254], [490, 258], [496, 258], [500, 254], [500, 253], [498, 251]], "16-18": [[494, 251], [492, 253], [492, 254], [496, 258], [500, 254], [500, 253], [498, 251]], "92-93": [[850, 229], [848, 231], [848, 233], [851, 236], [852, 236], [852, 231]], "101-105": [[1202, 248], [1199, 251], [1199, 252], [1204, 257], [1209, 252], [1209, 251], [1206, 248]], "149-152": [[266, 604], [264, 606], [264, 607], [267, 610], [270, 607], [270, 606], [268, 604]], "157-159": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]], "76-77": [[1074, 871], [1072, 873], [1072, 874], [1076, 878], [1080, 874], [1080, 873], [1078, 871]], "64-73": [[1044, 871], [1042, 873], [1042, 874], [1046, 878], [1050, 874], [1050, 873], [1048, 871]]}, "center": {"19": [493, 255], "16-18": [496, 254], "92-93": [850, 233], "101-105": [1204, 252], "149-152": [267, 607], "157-159": [1010, 874], "76-77": [1076, 874], "64-73": [1046, 874]}},
{"id": "yjruw4", "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", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"34-36": [[490, 394], [490, 399], [501, 399], [501, 394]], "136-137": [[1288, 377], [1288, 383], [1298, 383], [1298, 377]], "10, 13, 17-21, 6-7": [[469, 254], [466, 257], [469, 260], [472, 257]]}, "center": {"34-36": [496, 397], "136-137": [1293, 380], "10, 13, 17-21, 6-7": [469, 257]}},
{"id": "yllkuo", "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", "thenetherlands"]}, "path": {"4-13": [[493, 254], [490, 257], [493, 260], [496, 257]]}, "center": {"4-13": [493, 257]}},
{"id": "yllf70", "name": "Flag of Brazil", "description": "Brazil 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": {"13-18": [[427, 254], [424, 257], [427, 260], [430, 257]], "77-83": [[1149, 509], [1149, 540], [1191, 540], [1191, 509]]}, "center": {"13-18": [427, 257], "77-83": [1170, 525]}},
@@ -8856,13 +8828,13 @@
{"id": "yn0kiw", "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": ["place_nordicunion", "Suomi"]}, "path": {"96": [[544, 246], [544, 250], [551, 250], [551, 246]], "159-160": [[588, 237], [588, 241], [594, 241], [594, 237]], "161-166": [[588, 241], [588, 249], [582, 249], [582, 253], [594, 253], [594, 241]]}, "center": {"96": [548, 248], "159-160": [591, 239], "161-166": [591, 250]}},
{"id": "yn0i7r", "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", "ukraine", "monkeytype", "MechanicalKeyboards"], "discord": ["fMf7RJBMw6"]}, "path": {"70-93": [[561, 274], [561, 277], [564, 280], [567, 277], [567, 274]], "61-66": [[1071, 277], [1068, 280], [1068, 282], [1073, 287], [1078, 282], [1078, 280], [1075, 277]]}, "center": {"70-93": [564, 276], "61-66": [1073, 281]}},
{"id": "yn0h4x", "name": "Denmark heart", "description": "A heart depicting the flag of Denmark.", "links": {"website": ["https://en.wikipedia.org/wiki/Denmark", "https://en.wikipedia.org/wiki/Flag_of_Denmark"], "subreddit": ["place_nordicunion", "Denmark", "monkeytype", "MechanicalKeyboards"]}, "path": {"68-93": [[562, 262], [562, 265], [565, 268], [568, 265], [568, 262]]}, "center": {"68-93": [565, 264]}},
-{"id": "yn0gd4", "name": "Finland heart", "description": "A heart depicting the flag of Finland.", "links": {"website": ["https://en.wikipedia.org/wiki/Finland", "https://en.wikipedia.org/wiki/Flag_of_Finland"], "subreddit": ["place_nordicunion", "Suomi", "monkeytype", "MechanicalKeyboards"]}, "path": {"67-93": [[556, 262], [556, 265], [559, 268], [562, 265], [562, 262]]}, "center": {"67-93": [559, 264]}},
+{"id": "yn0gd4", "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": ["place_nordicunion", "Suomi", "monkeytype", "MechanicalKeyboards"]}, "path": {"67-93": [[556, 262], [556, 265], [559, 268], [562, 265], [562, 262]]}, "center": {"67-93": [559, 264]}},
{"id": "yn0d2z", "name": "r/MechanicalKeyboards", "description": "r/MechanicalKeyboards (r/MK) is a subreddit focused on making custom mechanical keyboards.", "links": {"subreddit": ["MechanicalKeyboards"]}, "path": {"120-160": [[633, 1340], [633, 1344], [650, 1344], [650, 1340]], "68-92": [[538, 281], [538, 285], [569, 285], [569, 281]], "161-166, T:0-1": [[633, 1338], [633, 1342], [650, 1342], [650, 1338]]}, "center": {"120-160": [642, 1342], "68-92": [554, 283], "161-166, T:0-1": [642, 1340]}},
{"id": "yn09kq", "name": "monkeytype logo", "description": "The logo of monkeytype, featuring an 'm' and 't' inside a keyboard.", "links": {"website": ["https://monkeytype.com"], "subreddit": ["monkeytype", "MechanicalKeyboards"]}, "path": {"51-95": [[541, 235], [538, 238], [538, 252], [541, 255], [566, 255], [569, 252], [569, 238], [566, 235]], "109-166, T:0-1": [[601, 1301], [597, 1305], [597, 1326], [601, 1330], [639, 1330], [643, 1326], [643, 1305], [639, 1301]]}, "center": {"51-95": [554, 245], "109-166, T:0-1": [620, 1316]}},
{"id": "ymztii", "name": "r/doctorwho", "description": "Subreddit focused on the TV series Doctor Who.", "links": {"subreddit": ["doctorwho"]}, "path": {"79-101": [[570, 234], [570, 285], [575, 285], [575, 234]]}, "center": {"79-101": [573, 260]}},
{"id": "ymynue", "name": "Nokia 3310", "description": "The Nokia 3310 is a mobile phone released in 2000 by Nokia, a Finnish telecommunications and electronics corporation.", "links": {"website": ["https://en.wikipedia.org/wiki/Nokia_3310"], "subreddit": ["place_nordicunion", "Suomi"]}, "path": {"105-118": [[587, 246], [585, 248], [585, 252], [579, 252], [577, 254], [576, 257], [576, 280], [579, 285], [589, 285], [592, 280], [592, 249], [593, 248], [591, 246]]}, "center": {"105-118": [584, 261]}},
{"id": "yn3j5b", "name": "Flag of Nigeria", "description": "Nigeria is a country in Western Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Flag_of_Nigeria"], "subreddit": ["Nigeria"]}, "path": {"13-16": [[595, 254], [592, 257], [595, 260], [598, 257]], "75-88": [[1322, 773], [1322, 793], [1332, 793], [1332, 773]]}, "center": {"13-16": [595, 257], "75-88": [1327, 783]}},
-{"id": "yn3epq", "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", "Republica_Argentina", "dankargentina"]}, "path": {"4-16": [[511, 254], [508, 257], [511, 260], [514, 257]], "121-128": [[569, 476], [569, 541], [575, 541], [575, 551], [701, 551], [701, 511], [753, 511], [753, 482], [701, 482], [701, 476]], "74-78": [[861, 668], [861, 672], [871, 672], [871, 668]], "102-109": [[1123, 666], [1123, 670], [1129, 670], [1129, 666]], "163-166, T:0-1": [[1990, 640], [1990, 644], [2000, 644], [2000, 640]]}, "center": {"4-16": [511, 257], "121-128": [661, 514], "74-78": [866, 670], "102-109": [1126, 668], "163-166, T:0-1": [1995, 642]}},
+{"id": "yn3epq", "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", "Republica_Argentina"]}, "path": {"4-16": [[511, 254], [508, 257], [511, 260], [514, 257]], "121-128": [[569, 476], [569, 541], [575, 541], [575, 551], [701, 551], [701, 511], [753, 511], [753, 482], [701, 482], [701, 476]], "74-78": [[861, 668], [861, 672], [871, 672], [871, 668]], "102-109": [[1123, 666], [1123, 670], [1129, 670], [1129, 666]], "163-166, T:0-1": [[1990, 640], [1990, 644], [2000, 644], [2000, 640]]}, "center": {"4-16": [511, 257], "121-128": [661, 514], "74-78": [866, 670], "102-109": [1126, 668], "163-166, T:0-1": [1995, 642]}},
{"id": "yn3cuq", "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"], "subreddit": ["portugal", "PORTUGALCARALHO"]}, "path": {"4-16": [[577, 254], [574, 257], [577, 260], [580, 257]], "55-61": [[1809, 375], [1809, 448], [1948, 448], [1948, 375]]}, "center": {"4-16": [577, 257], "55-61": [1879, 412]}},
{"id": "yn3b5n", "name": "Lithuania heart", "description": "A heart depicting the flag of Lithuania, 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"]}, "path": {"12-21": [[566, 251], [564, 253], [564, 254], [568, 258], [572, 254], [572, 253], [570, 251]], "97-98": [[950, 248], [947, 251], [947, 252], [952, 257], [960, 257], [965, 252], [965, 251], [962, 248]], "94-96": [[958, 248], [955, 251], [955, 252], [960, 257], [965, 252], [965, 251], [962, 248]], "60-64, 72": [[1160, 277], [1157, 280], [1157, 282], [1162, 287], [1167, 282], [1167, 280], [1164, 277]]}, "center": {"12-21": [568, 254], "97-98": [956, 253], "94-96": [960, 252], "60-64, 72": [1162, 281]}},
{"id": "yn36y8", "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": {"6-27": [[547, 254], [544, 257], [547, 260], [550, 257]]}, "center": {"6-27": [547, 257]}},
@@ -8899,12 +8871,12 @@
{"id": "yo3f3o", "name": "Sunny Starscout", "description": "Sunny Starscout is one of the main ponies (Mane 5) from Generation 5 of the TV series My Little Pony.", "links": {"website": ["https://mlp.fandom.com/wiki/Sunny_Starscout"], "subreddit": ["mylittlepony"], "discord": ["manechat"]}, "path": {"30-57": [[648, 233], [648, 255], [640, 255], [640, 257], [643, 260], [645, 260], [648, 257], [648, 254], [650, 254], [651, 255], [657, 255], [660, 251], [660, 243], [656, 238], [653, 238], [653, 235], [651, 233]]}, "center": {"30-57": [654, 247]}},
{"id": "yo5xug", "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": {"15-22": [[643, 254], [640, 257], [643, 260], [646, 257]], "58-60": [[1048, 199], [1048, 207], [1052, 207], [1052, 199]]}, "center": {"15-22": [643, 257], "58-60": [1050, 203]}},
{"id": "yo5vkk", "name": "Russian anti-war flag", "description": "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"]}, "path": {"12-24": [[685, 254], [682, 257], [685, 260], [688, 257]], "59-77": [[1676, 729], [1676, 748], [1689, 748], [1689, 738], [1692, 729]]}, "center": {"12-24": [685, 257], "59-77": [1683, 736]}},
-{"id": "yo5hov", "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"], "subreddit": ["NonBinary"]}, "path": {"25-38": [[674, 251], [672, 253], [672, 254], [676, 258], [680, 254], [680, 253], [678, 251]], "71-92": [[1242, 248], [1239, 251], [1239, 252], [1244, 257], [1249, 252], [1249, 251], [1246, 248]]}, "center": {"25-38": [676, 254], "71-92": [1244, 252]}},
+{"id": "yo5hov", "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"], "subreddit": ["NonBinary"]}, "path": {"25-38": [[674, 251], [672, 253], [672, 254], [676, 258], [680, 254], [680, 253], [678, 251]], "71-92": [[1242, 248], [1239, 251], [1239, 252], [1244, 257], [1249, 252], [1249, 251], [1246, 248]], "68-69": [[1744, 871], [1742, 873], [1742, 874], [1739, 877], [1739, 879], [1747, 879], [1747, 877], [1750, 874], [1750, 873], [1748, 871]], "63-67": [[1743, 873], [1739, 877], [1739, 878], [1741, 880], [1745, 880], [1747, 878], [1747, 877]]}, "center": {"25-38": [676, 254], "71-92": [1244, 252], "68-69": [1745, 874], "63-67": [1743, 877]}},
{"id": "yo5dev", "name": "Staryu", "description": "Staryu is a Water-type starfish Pokémon from the Generation I Pokémon games (Pokémon Red/Blue).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Staryu"], "subreddit": ["pokemon"]}, "path": {"26-37": [[680, 222], [673, 225], [673, 229], [675, 231], [675, 238], [689, 238], [689, 232], [692, 229], [692, 226], [686, 226], [686, 223]]}, "center": {"26-37": [682, 231]}},
{"id": "yo5blo", "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": {"55-80": [[745, 269], [745, 273], [781, 273], [781, 269]], "42-54": [[694, 269], [694, 273], [781, 273], [781, 269]], "143-147": [[1888, 234], [1888, 238], [1918, 238], [1918, 234]]}, "center": {"55-80": [763, 271], "42-54": [738, 271], "143-147": [1903, 236]}},
{"id": "yo696z", "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"131-139": [[1686, 329], [1686, 333], [1690, 333], [1690, 329]], "122-127": [[518, 610], [518, 617], [527, 617], [527, 610]], "13-24, 8-10": [[667, 254], [664, 257], [667, 260], [670, 257]], "158-164, T:0-1": [[1362, 757], [1362, 765], [1366, 765], [1366, 757]]}, "center": {"131-139": [1688, 331], "122-127": [523, 614], "13-24, 8-10": [667, 257], "158-164, T:0-1": [1364, 761]}},
{"id": "yo67cp", "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", "PORTUGALCARALHO"]}, "path": {"17-21": [[602, 251], [600, 253], [600, 254], [603, 257], [605, 257], [608, 254], [608, 253], [606, 251]], "101-129": [[942, 248], [939, 251], [939, 252], [944, 257], [949, 252], [949, 251], [946, 248]], "88-94": [[934, 248], [931, 251], [931, 252], [936, 257], [941, 252], [941, 251], [938, 248]], "152-154": [[1471, 248], [1468, 251], [1468, 252], [1473, 257], [1478, 252], [1478, 251], [1475, 248]]}, "center": {"17-21": [604, 254], "101-129": [944, 252], "88-94": [936, 252], "152-154": [1473, 252]}},
-{"id": "yo63zg", "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"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"]}, "path": {"19-22": [[640, 256], [636, 260], [636, 261], [638, 263], [642, 263], [644, 261], [644, 260]], "9-16": [[668, 251], [666, 253], [666, 254], [670, 258], [674, 254], [674, 253], [672, 251]], "141-165, T:0-1": [[705, 784], [705, 786], [707, 788], [709, 786], [709, 784]]}, "center": {"19-22": [640, 260], "9-16": [670, 254], "141-165, T:0-1": [707, 786]}},
+{"id": "yo63zg", "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"], "subreddit": ["asexuality", "Asexual", "aaaaaaacccccccce"]}, "path": {"19-22": [[640, 256], [636, 260], [636, 261], [638, 263], [642, 263], [644, 261], [644, 260]], "9-16": [[668, 251], [666, 253], [666, 254], [670, 258], [674, 254], [674, 253], [672, 251]], "80-87": [[1299, 873], [1295, 877], [1295, 878], [1297, 880], [1301, 880], [1303, 878], [1303, 877]], "141-165, T:0-1": [[705, 784], [705, 786], [707, 788], [709, 786], [709, 784]]}, "center": {"19-22": [640, 260], "9-16": [670, 254], "80-87": [1299, 877], "141-165, T:0-1": [707, 786]}},
{"id": "yo6uam", "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": {"10-11": [[685, 254], [682, 257], [685, 260], [688, 257]], "19-20": [[506, 414], [506, 418], [516, 418], [514, 414]]}, "center": {"10-11": [685, 257], "19-20": [511, 416]}},
{"id": "yo6p24", "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", "thenetherlands"]}, "path": {"64": [[302, 722], [302, 726], [306, 726], [306, 722]], "8-13": [[649, 254], [646, 257], [649, 260], [652, 257]], "14-16": [[607, 254], [604, 257], [607, 260], [610, 257], [607, 254], [649, 254], [646, 257], [649, 260], [652, 257], [649, 254]], "118-120": [[118, 769], [118, 773], [125, 773], [125, 769]], "101-104, 94-98": [[1549, 567], [1549, 571], [1557, 571], [1557, 567]]}, "center": {"64": [304, 724], "8-13": [649, 257], "14-16": [649, 257], "118-120": [122, 771], "101-104, 94-98": [1553, 569]}},
{"id": "yov514", "name": "Shark3ozero logo", "description": "Logo of the streamer Shark3ozero.", "links": {"website": ["https://www.sharky.cc"]}, "path": {"116-141": [[725, 244], [722, 247], [722, 248], [724, 250], [728, 250], [730, 248], [730, 247], [727, 244]], "142-154, 158-166, T:0-1": [[713, 238], [709, 244], [709, 248], [711, 250], [721, 250], [723, 248], [723, 244], [719, 238]]}, "center": {"116-141": [726, 247], "142-154, 158-166, T:0-1": [716, 244]}},
@@ -8963,7 +8935,7 @@
{"id": "yrr3mm", "name": "Phil Pi", "description": "Phil Pi (Spanish: Filemón Pi) is one of the main characters in the comic Mort & Phil. He is the bossy partner of Mort, shorter and pudgier.", "links": {"website": ["https://es.wikipedia.org/wiki/Mortadelo"], "subreddit": ["esPlace", "spain"]}, "path": {"46-166, T:0-1": [[951, 283], [949, 285], [945, 285], [943, 287], [943, 289], [945, 291], [946, 298], [944, 298], [941, 291], [940, 291], [935, 295], [935, 301], [938, 306], [941, 306], [941, 308], [947, 308], [949, 306], [959, 306], [962, 303], [962, 301], [965, 299], [965, 297], [960, 293], [960, 289], [955, 283]]}, "center": {"46-166, T:0-1": [954, 298]}},
{"id": "yrr143", "name": "Mort", "description": "Mort (Spanish: Mortadelo) is one of the main characters in the comic Mort & Phil. He is a tall, bald master of disguise named after mortadella sausage.", "links": {"website": ["https://es.wikipedia.org/wiki/Mortadelo"], "subreddit": ["esPlace", "spain"]}, "path": {"47-166, T:0-1": [[927, 279], [925, 284], [925, 286], [925, 291], [922, 294], [921, 297], [923, 299], [923, 301], [927, 304], [929, 308], [939, 308], [939, 306], [935, 302], [935, 297], [937, 294], [940, 292], [942, 292], [945, 289], [946, 280], [930, 280], [930, 279]]}, "center": {"47-166, T:0-1": [933, 288]}},
{"id": "yruwyn", "name": "Cambodia heart", "description": "A heart depicting the flag of Cambodia, a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Cambodia", "https://en.wikipedia.org/wiki/Flag_of_Cambodia"], "subreddit": ["cambodia"]}, "path": {"129-138": [[982, 248], [979, 251], [979, 252], [984, 257], [987, 254], [987, 248]], "77-104": [[974, 248], [971, 251], [971, 252], [976, 257], [981, 252], [981, 251], [978, 248]]}, "center": {"129-138": [984, 252], "77-104": [976, 252]}},
-{"id": "yrupzs", "name": "Austria heart", "description": "A heart depicting the flag of Austria, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["Austria"]}, "path": {"93": [[1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248]], "144": [[950, 248], [947, 251], [947, 252], [952, 257], [957, 252], [957, 251], [954, 248], [966, 248], [963, 251], [963, 252], [968, 257], [973, 252], [973, 251], [970, 248]], "145-154": [[950, 248], [947, 251], [947, 252], [952, 257], [957, 252], [957, 251], [954, 248]], "139-143": [[966, 248], [963, 251], [963, 252], [968, 257], [973, 252], [973, 251], [970, 248]], "75-76": [[942, 248], [939, 251], [939, 252], [944, 257], [949, 252], [949, 251], [946, 248], [958, 248], [955, 251], [955, 252], [960, 257], [965, 252], [965, 251], [962, 248], [974, 248], [971, 251], [971, 252], [976, 257], [981, 252], [981, 251], [978, 248]], "99-102": [[1112, 248], [1109, 251], [1109, 252], [1114, 257], [1119, 252], [1119, 251], [1116, 248]], "116-117": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]], "132-137": [[1350, 247], [1344, 253], [1348, 257], [1353, 252], [1353, 251]]}, "center": {"93": [1180, 252], "144": [968, 252], "145-154": [952, 252], "139-143": [968, 252], "75-76": [960, 252], "99-102": [1114, 252], "116-117": [1276, 252], "132-137": [1349, 252]}},
+{"id": "yrupzs", "name": "Austria heart", "description": "A heart depicting the flag of Austria, a country in Central Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Austria", "https://en.wikipedia.org/wiki/Flag_of_Austria"], "subreddit": ["Austria"]}, "path": {"93": [[1178, 248], [1175, 251], [1175, 252], [1180, 257], [1185, 252], [1185, 251], [1182, 248]], "144": [[950, 248], [947, 251], [947, 252], [952, 257], [957, 252], [957, 251], [954, 248], [966, 248], [963, 251], [963, 252], [968, 257], [973, 252], [973, 251], [970, 248]], "145-154": [[950, 248], [947, 251], [947, 252], [952, 257], [957, 252], [957, 251], [954, 248]], "139-143": [[966, 248], [963, 251], [963, 252], [968, 257], [973, 252], [973, 251], [970, 248]], "75-76": [[942, 248], [939, 251], [939, 252], [944, 257], [949, 252], [949, 251], [946, 248], [958, 248], [955, 251], [955, 252], [960, 257], [965, 252], [965, 251], [962, 248], [974, 248], [971, 251], [971, 252], [976, 257], [981, 252], [981, 251], [978, 248]], "99-102": [[1112, 248], [1109, 251], [1109, 252], [1114, 257], [1119, 252], [1119, 251], [1116, 248]], "116-117": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]], "132-137": [[1350, 247], [1344, 253], [1348, 257], [1353, 252], [1353, 251]], "85-86": [[1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871]]}, "center": {"93": [1180, 252], "144": [968, 252], "145-154": [952, 252], "139-143": [968, 252], "75-76": [960, 252], "99-102": [1114, 252], "116-117": [1276, 252], "132-137": [1349, 252], "85-86": [1070, 874]}},
{"id": "yruj0b", "name": "Spain heart", "description": "A heart depicting the flag of Spain, a country in Southwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Flag_of_Spain"], "subreddit": ["esPlace", "spain"]}, "path": {"145-153": [[966, 248], [963, 251], [963, 252], [968, 257], [973, 252], [973, 251], [970, 248]], "84-89": [[1104, 248], [1101, 251], [1101, 252], [1106, 257], [1111, 252], [1111, 251], [1108, 248], [1160, 248], [1157, 251], [1157, 252], [1162, 257], [1167, 252], [1167, 251], [1164, 248]], "137-140": [[1234, 248], [1231, 251], [1231, 252], [1236, 257], [1241, 252], [1241, 251], [1238, 248]], "90-92, 95-97": [[1160, 248], [1157, 251], [1157, 252], [1162, 257], [1167, 252], [1167, 251], [1164, 248]]}, "center": {"145-153": [968, 252], "84-89": [1162, 252], "137-140": [1236, 252], "90-92, 95-97": [1162, 252]}},
{"id": "yrucm1", "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": {"148-155": [[942, 248], [939, 251], [939, 252], [944, 257], [949, 252], [949, 251], [946, 248]], "136-145": [[1027, 277], [1024, 280], [1024, 282], [1029, 287], [1034, 282], [1034, 280], [1031, 277]], "65-77, 87-92": [[1143, 277], [1140, 280], [1140, 282], [1145, 287], [1150, 282], [1150, 280], [1147, 277]]}, "center": {"148-155": [944, 252], "136-145": [1029, 281], "65-77, 87-92": [1145, 281]}},
{"id": "yrt3uk", "name": "Philippines heart", "description": "A heart depicting the flag of the Philippines, a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines", "https://en.wikipedia.org/wiki/Flag_of_the_Philippines"], "subreddit": ["Philippines"]}, "path": {"105-161, 96-98": [[934, 248], [931, 251], [931, 252], [936, 257], [941, 252], [941, 251], [938, 248]]}, "center": {"105-161, 96-98": [936, 252]}},
@@ -8991,7 +8963,7 @@
{"id": "yssoqo", "name": "Rochester Institute of Technology", "description": "The Rochester Institute of Technology (RIT) is a technical university in the suburbs of Rochester, New York, United States. Go tigers!", "links": {"website": ["https://www.rit.edu/", "https://en.wikipedia.org/wiki/Rochester_Institute_of_Technology"]}, "path": {"62-135": [[1085, 209], [1085, 220], [1111, 220], [1111, 209]], "27-36": [[292, 568], [292, 574], [290, 574], [290, 582], [306, 582], [306, 574], [304, 574], [304, 568]]}, "center": {"62-135": [1098, 215], "27-36": [298, 575]}},
{"id": "ysqgo0", "name": "Rensselaer Polytechnic Institute", "description": "Rensselaer Polytechnic Institute (RPI) is a university in Troy, New York, United States. This art substitutes the \"PI\" in the acronym \"RPI\" for pi (π), a Greek letter and mathematical constant.", "links": {"website": ["https://en.wikipedia.org/wiki/Rensselaer_Polytechnic_Institute", "https://en.wikipedia.org/wiki/Rensselaer_Polytechnic_Institute"]}, "path": {"64-159, T:0-1": [[1038, 238], [1038, 248], [1055, 248], [1055, 238]]}, "center": {"64-159, T:0-1": [1047, 243]}},
{"id": "ytv6l3", "name": "Thailand heart", "description": "A heart depicting the flag of Thailand, a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Thailand", "https://en.wikipedia.org/wiki/Flag_of_Thailand"], "subreddit": ["Thailand", "thaithai"]}, "path": {"78-140": [[1080, 248], [1077, 251], [1077, 252], [1082, 257], [1087, 252], [1087, 251], [1084, 248]]}, "center": {"78-140": [1082, 252]}},
-{"id": "ytv50n", "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"152-155": [[1423, 248], [1420, 251], [1420, 252], [1425, 257], [1430, 252], [1430, 251], [1427, 248]], "139-141, 79-136": [[1096, 248], [1093, 251], [1093, 252], [1098, 257], [1103, 252], [1103, 251], [1100, 248]]}, "center": {"152-155": [1425, 252], "139-141, 79-136": [1098, 252]}},
+{"id": "ytv50n", "name": "Mexico heart", "description": "A heart depicting the flag of Mexico, a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"152-155": [[1423, 248], [1420, 251], [1420, 252], [1425, 257], [1430, 252], [1430, 251], [1427, 248]], "68-70": [[1858, 871], [1856, 873], [1856, 874], [1860, 878], [1864, 874], [1864, 873], [1862, 871]], "139-141, 79-136": [[1096, 248], [1093, 251], [1093, 252], [1098, 257], [1103, 252], [1103, 251], [1100, 248]]}, "center": {"152-155": [1425, 252], "68-70": [1860, 874], "139-141, 79-136": [1098, 252]}},
{"id": "yupp33", "name": "Valencian Community heart", "description": "A heart depicting the flag of the Valencian Community, an autonomous community of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Valencian_Community", "https://en.wikipedia.org/wiki/Flag_of_Valencian_Community"], "subreddit": ["esPlace", "spain"]}, "path": {"133-143": [[1062, 277], [1059, 280], [1059, 282], [1064, 287], [1069, 282], [1069, 280], [1066, 277]]}, "center": {"133-143": [1064, 281]}},
{"id": "yuowoo", "name": "Cantabria heart", "description": "A heart depicting the flag of Cantabria, an autonomous community of Spain.", "links": {"website": ["https://en.wikipedia.org/wiki/Cantabria", "https://en.wikipedia.org/wiki/Flag_of_Cantabria"], "subreddit": ["esPlace", "spain"]}, "path": {"138-145": [[1089, 277], [1086, 280], [1086, 282], [1091, 287], [1096, 282], [1096, 280], [1093, 277]], "146-147": [[1083, 277], [1080, 280], [1080, 282], [1085, 287], [1090, 282], [1090, 280], [1087, 277]], "92-95": [[1354, 248], [1351, 251], [1351, 252], [1356, 257], [1361, 252], [1361, 251], [1358, 248]], "74-75": [[1344, 277], [1341, 280], [1341, 281], [1346, 286], [1351, 281], [1351, 280], [1348, 277]]}, "center": {"138-145": [1091, 281], "146-147": [1085, 281], "92-95": [1356, 252], "74-75": [1346, 281]}},
{"id": "yumlqc", "name": "Pixel Place App 2", "description": "Pixel Place App is an app that recreates r/place.", "links": {"website": ["https://apps.apple.com/us/app/pixel-place/id1225691240"], "subreddit": ["PixelPlaceApp"]}, "path": {"58-68": [[1093, 206], [1093, 224], [1110, 224], [1110, 218], [1113, 218], [1113, 212], [1111, 212], [1111, 206]]}, "center": {"58-68": [1102, 215]}},
@@ -9003,7 +8975,7 @@
{"id": "yvkukl", "name": "Shiny 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\".\n\nThis Mudkip is drawn with its rare Shiny coloration, being purple instead of blue.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Mudkip_(Pok%C3%A9mon)", "https://knowyourmeme.com/memes/i-herd-u-liek-mudkips", "https://bulbapedia.bulbagarden.net/wiki/Shiny_Pok%C3%A9mon"], "subreddit": ["pokemon"]}, "path": {"123-145": [[999, 285], [996, 290], [996, 293], [1002, 293], [1004, 296], [1006, 293], [1009, 290], [1007, 288], [1006, 288], [1006, 287], [1004, 285]]}, "center": {"123-145": [1002, 289]}},
{"id": "yvkqge", "name": "Chikorita", "description": "Chikorita is the Grass-type starter Pokémon from the Generation II Pokémon games (Pokémon Gold/Silver).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Chikorita_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"113-152": [[1029, 298], [1025, 302], [1025, 308], [1031, 308], [1031, 302], [1033, 302], [1033, 301]]}, "center": {"113-152": [1028, 305]}},
{"id": "yvt2ko", "name": "The Blue Lattice", "description": "The Blue Lattice was the original design for the Blue Corners border. It was an 11 pixel wide border of alternating cyan and blue-gray pixels meant to define the territory of the blue corner, prevent invasion, and limit expansion. Unfortunately, the blue lattice would turn into the biggest enemy of the blue corner for most of the first day. The Blue Corner fought four wars against it's lattice as it constantly expanded into the territory of the Blue Corner. The blue corner eventually destroyed the lattice, long before the first expansion occurred, and never re-adopted it.", "links": {"subreddit": ["TheBlueCorner"]}, "path": {"6-36": [[899, 1000], [903, 999], [905, 924], [1000, 923], [999, 912], [900, 913]]}, "center": {"6-36": [966, 918]}},
-{"id": "yvt8sy", "name": "The Second Blue Corner", "description": "After the first expansion, the blue corner moved from it's original corner (1k1k) to the new bottom right corner of the canvas (2k1k). While the Blue Corner was at this canvas, it battled multiple streamers, primarily Tarik, who turned the corner red, and then purple; XQC, who destroyed the blue corner temporarily; and 5opka who turned blue corner cyan just before the second expansion. When the second expansion occurred, the Blue Corner immediately moved to its third and final corner, 2k2k.", "links": {"subreddit": ["TheBlueCorner"]}, "path": {"56-108": [[1998, 998], [1870, 998], [1869, 869], [1999, 870]]}, "center": {"56-108": [1934, 934]}},
+{"id": "yvt8sy", "name": "Blue Corner", "description": "The Blue Corner is, unsurprisingly, a corner colored completely blue. The origin of the blue corner emerged in the first hours of r/place 2017, where it covered nearly an eighth of the canvas with blue pixels.\n\nAfter the first expansion, the blue corner moved from its original corner (1000, 1000) to the new bottom right corner of the canvas (2000, 1000). While the Blue Corner was at this canvas, it battled multiple streamers, primarily Tarik, who turned the corner red and then purple; xQc, who destroyed the blue corner temporarily; and 5opka, who turned blue corner cyan just before the second expansion. When the second expansion occurred, the Blue Corner immediately moved to its third and final corner, (2000, 2000).", "links": {"subreddit": ["TheBlueCorner"]}, "path": {"97-108": [[1925, 929], [1925, 1000], [2000, 1000], [2000, 929]], "55-78, 82-96": [[1868, 879], [1868, 1000], [2000, 1000], [2000, 879]]}, "center": {"97-108": [1963, 965], "55-78, 82-96": [1934, 940]}},
{"id": "ywgivy", "name": "Kylling", "description": "Kylling is a chicken character from the Danish kids' TV show Bamse & Kylling.", "links": {"subreddit": ["Denmark", "place_nordicunion"]}, "path": {"10-31": [[532, 320], [528, 324], [528, 332], [527, 333], [527, 334], [530, 338], [539, 338], [539, 325], [535, 320]], "69-165, T:0-1": [[427, 139], [424, 142], [424, 148], [423, 149], [423, 151], [426, 156], [435, 156], [439, 152], [439, 150], [437, 150], [436, 148], [436, 143], [434, 141], [434, 139]]}, "center": {"10-31": [533, 330], "69-165, T:0-1": [430, 148]}},
{"id": "ywgh7q", "name": "Ælling", "description": "Ælling is a duckling character from the Danish kids' TV show Bamse & Kylling.", "links": {"subreddit": ["Denmark", "place_nordicunion"]}, "path": {"10-31": [[520, 321], [516, 325], [515, 327], [515, 330], [517, 332], [517, 333], [514, 336], [514, 338], [519, 338], [522, 341], [523, 341], [527, 338], [528, 338], [530, 336], [528, 334], [528, 331], [529, 330], [529, 326], [524, 321]], "70-165, T:0-1": [[416, 139], [412, 142], [411, 144], [411, 148], [413, 150], [413, 151], [410, 154], [410, 156], [426, 156], [424, 151], [424, 149], [425, 148], [425, 143], [420, 139]]}, "center": {"10-31": [522, 328], "70-165, T:0-1": [418, 146]}},
{"id": "ywgeft", "name": "Bamse", "description": "Bamse is a bear character from the Danish kids' TV show Bamse & Kylling.", "links": {"website": ["https://da.wikipedia.org/wiki/Bamse_(b%C3%B8rne-tv)"], "subreddit": ["Denmark", "place_nordicunion"]}, "path": {"11-31": [[508, 320], [501, 325], [501, 328], [502, 334], [498, 332], [497, 332], [495, 334], [495, 338], [514, 338], [518, 332], [516, 330], [516, 327], [518, 324], [515, 321], [513, 321], [512, 320]], "72-165, T:0-1": [[403, 138], [399, 140], [397, 145], [399, 149], [398, 150], [391, 150], [390, 154], [390, 156], [410, 156], [414, 151], [414, 150], [412, 148], [412, 144], [413, 143], [413, 142], [409, 138]]}, "center": {"11-31": [509, 330], "72-165, T:0-1": [405, 145]}},
@@ -9032,7 +9004,7 @@
{"id": "z233nx", "name": "Madagascar heart", "description": "A heart depicting the flag of Madagascar, an island country off the eastern coast of Africa.", "links": {"website": ["https://en.wikipedia.org/wiki/Madagascar", "https://en.wikipedia.org/wiki/Flag_of_Madagascar"]}, "path": {"159-163": [[260, 611], [258, 613], [258, 614], [261, 617], [264, 614], [264, 613], [262, 611]], "144-148, 151-155": [[1234, 248], [1231, 251], [1231, 252], [1236, 257], [1241, 252], [1241, 251], [1238, 248]]}, "center": {"159-163": [261, 614], "144-148, 151-155": [1236, 252]}},
{"id": "z5fp6l", "name": "Pakistan heart", "description": "A heart depicting the flag of Pakistan, a country in South Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Pakistan", "https://en.wikipedia.org/wiki/Flag_of_Pakistan"], "subreddit": ["pakistan"]}, "path": {"120-137": [[1226, 248], [1223, 251], [1223, 252], [1228, 257], [1233, 252], [1233, 251], [1230, 248]], "73-102": [[1250, 248], [1247, 251], [1247, 252], [1252, 257], [1257, 252], [1257, 251], [1254, 248]]}, "center": {"120-137": [1228, 252], "73-102": [1252, 252]}},
{"id": "z5fcld", "name": "Laos heart", "description": "A heart depicting the flag of Laos, a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Laos", "https://en.wikipedia.org/wiki/Flag_of_Laos"]}, "path": {"135-143": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]]}, "center": {"135-143": [1276, 252]}},
-{"id": "z6a2t0", "name": "Netherlands heart", "description": "A heart depicting the flag of the Netherlands, a country in Northwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"106-115": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]], "98-102": [[1362, 248], [1359, 251], [1359, 252], [1364, 257], [1369, 252], [1369, 251], [1366, 248]], "159-161": [[266, 618], [264, 620], [264, 621], [267, 624], [270, 621], [270, 620], [268, 618]]}, "center": {"106-115": [1276, 252], "98-102": [1364, 252], "159-161": [267, 621]}},
+{"id": "z6a2t0", "name": "Netherlands heart", "description": "A heart depicting the flag of the Netherlands, a country in Northwestern Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Netherlands", "https://en.wikipedia.org/wiki/Flag_of_the_Netherlands"], "subreddit": ["PlaceNL", "thenetherlands"]}, "path": {"106-115": [[1274, 248], [1271, 251], [1271, 252], [1276, 257], [1281, 252], [1281, 251], [1278, 248]], "98-102": [[1362, 248], [1359, 251], [1359, 252], [1364, 257], [1369, 252], [1369, 251], [1366, 248]], "159-161": [[266, 618], [264, 620], [264, 621], [267, 624], [270, 621], [270, 620], [268, 618]], "68-70": [[1170, 871], [1168, 873], [1168, 874], [1172, 878], [1176, 874], [1176, 873], [1174, 871]]}, "center": {"106-115": [1276, 252], "98-102": [1364, 252], "159-161": [267, 621], "68-70": [1172, 874]}},
{"id": "z69p5t", "name": "Philippines heart", "description": "A heart depicting the flag of the Philippines, a country in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Philippines", "https://en.wikipedia.org/wiki/Flag_of_the_Philippines"], "subreddit": ["Philippines"]}, "path": {"153-159": [[1358, 710], [1354, 714], [1359, 719], [1364, 714], [1360, 710]], "105-109, 119-121": [[1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]], "160-166, T:0-1": [[1357, 710], [1354, 713], [1354, 714], [1359, 719], [1364, 714], [1364, 713], [1361, 710]]}, "center": {"153-159": [1359, 714], "105-109, 119-121": [1260, 252], "160-166, T:0-1": [1359, 714]}},
{"id": "z6apnt", "name": "Rainbow heart", "description": "A heart depicting the rainbow pride flag, which represents the LGBT community as a whole.", "links": {"website": ["https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "https://en.wikipedia.org/wiki/LGBT"]}, "path": {"71-90": [[1218, 248], [1215, 251], [1215, 252], [1220, 257], [1225, 252], [1225, 251], [1222, 248]]}, "center": {"71-90": [1220, 252]}},
{"id": "z6b4o0", "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": {"83-86": [[1258, 248], [1255, 251], [1255, 252], [1260, 257], [1265, 252], [1265, 251], [1262, 248]], "138-148": [[1349, 248], [1344, 253], [1348, 257], [1353, 252], [1353, 250], [1350, 247]], "68-80": [[1328, 277], [1325, 280], [1325, 282], [1330, 287], [1335, 282], [1335, 280], [1332, 277]]}, "center": {"83-86": [1260, 252], "138-148": [1349, 252], "68-80": [1330, 281]}},
@@ -9070,7 +9042,7 @@
{"id": "zi9gk1", "name": "Bob", "description": "Bob is a friendly place but also a great empire known to a select few. The high council of Bob decided to praise him by putting his name on the battlefield of place.\nHowever everything changed when people decided to raid Bob's territory and replace him by the filthy Orb.\nThe link bellow will grant access to 5 of the bravest adventurer whom will dare to click it.", "links": {"discord": ["6ZTvB3KP"]}, "path": {"135-145": [[566, 1189], [581, 1189], [581, 1195], [566, 1195]]}, "center": {"135-145": [574, 1192]}},
{"id": "zg83y2", "name": "Pixel Fiphess", "description": "A Pixel art of YoSteggas/itsnotgood1337's Fursona, Fiphess.", "links": {}, "path": {"132-136": [[1494, 1971], [1494, 1962], [1498, 1962], [1498, 1971]]}, "center": {"132-136": [1496, 1967]}},
{"id": "zj774s", "name": "whipCozy", "description": "An emote from twitch streamer Whippy", "links": {"subreddit": ["whippy"]}, "path": {"135-144": [[1904, 1697], [1905, 1730], [1940, 1731], [1939, 1695], [1905, 1695]]}, "center": {"135-144": [1922, 1713]}},
-{"id": "zkobia", "name": "Lani", "description": "The player character of Celeste Classic 2: Lani's Trek, a PICO-8 game developed in three days by the creators of Celeste to celebrate the third-year anniversary of its release. The game is a sequel to the PICO-8 game jam game Celeste Classic, the predecessor to Celeste. In Celeste Classic 2, Lani traverses a modified version of Celeste's titular mountain using a grappling hook in addition to traditional 2D platforming mechanics. \n\nLani may also be a reference to Dandara, the player character of the Metroidvania and 2D platformer game Dandara. Dandara has a similar appearance to Lani and uses a grappling hook to move.", "links": {"website": ["https://celestegame.fandom.com/wiki/Celeste_Classic_2"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"101-165": [[1071, 885], [1072, 885], [1072, 881], [1071, 881], [1071, 880], [1072, 880], [1072, 879], [1073, 879], [1073, 878], [1076, 878], [1076, 879], [1077, 879], [1077, 880], [1078, 880], [1078, 881], [1077, 881], [1077, 882], [1076, 882], [1076, 885], [1076, 884], [1073, 884], [1073, 885]]}, "center": {"101-165": [1074, 881]}},
+{"id": "zkobia", "name": "Lani", "description": "Lani is the player character of Celeste Classic 2: Lani's Trek, a PICO-8 game developed in three days by the creators of Celeste to celebrate the third-year anniversary of its release. The game is a sequel to the PICO-8 game jam game Celeste Classic, the predecessor to Celeste. In Celeste Classic 2, Lani traverses a modified version of Celeste's titular mountain using a grappling hook in addition to traditional 2D platforming mechanics. \n\nLani may also be a reference to Dandara, the player character of the Metroidvania and 2D platformer game Dandara. Dandara has a similar appearance to Lani and uses a grappling hook to move.", "links": {"website": ["https://celestegame.fandom.com/wiki/Celeste_Classic_2"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"101-165, T:0-1": [[1073, 877], [1070, 880], [1070, 881], [1071, 884], [1070, 885], [1071, 886], [1077, 886], [1077, 883], [1079, 881], [1079, 880], [1076, 877]]}, "center": {"101-165, T:0-1": [1074, 881]}},
{"id": "zns9k6", "name": "Panama heart", "description": "A heart depicting the flag of Panama, a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Panama", "https://en.wikipedia.org/wiki/Flag_of_Panama"], "subreddit": ["Panama"]}, "path": {"79-96": [[1344, 277], [1341, 280], [1341, 282], [1346, 287], [1351, 282], [1351, 280], [1348, 277]]}, "center": {"79-96": [1346, 281]}},
{"id": "zns8ky", "name": "Azerbaijan heart", "description": "A heart depicting the flag of Azerbaijan, 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": {"97-102": [[1320, 277], [1317, 280], [1317, 282], [1322, 287], [1327, 282], [1327, 280], [1324, 277]], "65-72": [[1384, 277], [1381, 280], [1381, 281], [1386, 286], [1391, 281], [1391, 280], [1388, 277]]}, "center": {"97-102": [1322, 281], "65-72": [1386, 281]}},
{"id": "zok74d", "name": "Antuber", "description": "Antuber is a YouTuber with a small following. He does history and news content.", "links": {"website": ["https://www.youtube.com/@ANTUBER"], "discord": ["Bfd7fZbzsM"]}, "path": {"116-165, T:0-1": [[1290, 511], [1297, 511], [1297, 518], [1290, 518], [1290, 514]]}, "center": {"116-165, T:0-1": [1294, 515]}},
@@ -9119,7 +9091,7 @@
{"id": "zrvm9w", "name": "JJE", "description": "JJE is one of the Denimalz, mascots of DAY6.", "links": {"subreddit": ["day6"]}, "path": {"133-165, T:0-1": [[1625, 217], [1622, 220], [1622, 222], [1624, 224], [1626, 224], [1628, 222], [1628, 220]]}, "center": {"133-165, T:0-1": [1625, 221]}},
{"id": "zrvlpd", "name": "DON", "description": "DON is one of the Denimalz, mascots of DAY6.", "links": {"subreddit": ["day6"]}, "path": {"136-165, T:0-1": [[1620, 212], [1620, 216], [1622, 218], [1624, 218], [1626, 216], [1626, 212]]}, "center": {"136-165, T:0-1": [1623, 215]}},
{"id": "zrwgx9", "name": "Birb", "description": "Birbs is a meme involving pictures of small, cute birds.\n\nTwitch streamer Asmongold raided the My Little Pony artwork by drawing a birb on it.", "links": {"website": ["https://knowyourmeme.com/memes/birbs", "https://www.twitch.tv/asmongold"]}, "path": {"103-106": [[1637, 224], [1628, 233], [1625, 238], [1624, 279], [1683, 279], [1683, 247], [1679, 243], [1676, 236], [1657, 224], [1652, 223], [1644, 223], [1643, 224]]}, "center": {"103-106": [1651, 252]}},
-{"id": "zrw1ba", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark.\n\nThis art was created by streamer Asmongold and his community as a raid on the My Little Pony artwork. A Mokoko Seed was chosen for the raid art due to Asmongold's recent grinding sessions in Lost Ark to farm them.", "links": {"website": ["https://www.youtube.com/watch?v=nmradlt7I6M"]}, "path": {"68-73": [[1668, 226], [1636, 243], [1636, 248], [1651, 248], [1647, 252], [1647, 254], [1631, 259], [1626, 266], [1626, 273], [1635, 281], [1651, 281], [1665, 268], [1665, 245], [1684, 228], [1677, 226]]}, "center": {"68-73": [1646, 268]}},
+{"id": "zrw1ba", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark, which recently released in the West.\n\nThis art was created by streamer Asmongold and his community as a raid on the My Little Pony artwork. A Mokoko Seed was chosen for the raid art due to Asmongold's recent grinding sessions in Lost Ark to farm them.", "links": {"website": ["https://www.youtube.com/watch?v=nmradlt7I6M"]}, "path": {"68-73": [[1668, 226], [1636, 243], [1636, 248], [1651, 248], [1647, 252], [1647, 254], [1631, 259], [1626, 266], [1626, 273], [1635, 281], [1651, 281], [1665, 268], [1665, 245], [1684, 228], [1677, 226]]}, "center": {"68-73": [1646, 268]}},
{"id": "zs0yu8", "name": "r/Parahumans", "description": "The logo for the subreddit r/Parahumans, taking elements from the Parahumans web serials Worm and Ward, written by Wildbow. It combines the symbol for Gold Morning, an in-story event, with the insectile imagery connected with Worm's main character.", "links": {"subreddit": ["Parahumans"]}, "path": {"62-85": [[1675, 213], [1673, 215], [1673, 224], [1676, 227], [1682, 227], [1685, 224], [1685, 215], [1683, 213]], "59-61": [[1683, 213], [1681, 215], [1681, 225], [1684, 227], [1690, 227], [1693, 225], [1693, 215], [1691, 213]]}, "center": {"62-85": [1679, 220], "59-61": [1687, 220]}},
{"id": "zs0jen", "name": "Toki Pona symbol", "description": "A symbol representing Toki Pona, as well as a way to write \"toki pona\" in Toki Pona's alternative writing system \"sitelen pona\".\n\nPeople tend to assume that the Toki Pona symbol was taken from sitelen pona, but it is actually the other way around. The Toki Pona symbol predates the sitelen pona writing system by more than a decade.", "links": {"website": ["https://tokipona.org/", "https://en.wikipedia.org/wiki/Toki_Pona"], "subreddit": ["tokipona"]}, "path": {"64-85": [[1684, 212], [1684, 213], [1685, 214], [1685, 221], [1688, 224], [1691, 224], [1694, 221], [1694, 214], [1695, 213], [1695, 212]], "56-63": [[1718, 215], [1718, 216], [1719, 217], [1719, 222], [1721, 224], [1723, 224], [1725, 222], [1725, 217], [1726, 216], [1726, 215]]}, "center": {"64-85": [1690, 217], "56-63": [1722, 219]}},
{"id": "zs5wfm", "name": "Turtwig", "description": "Turtwig is the Grass-type starter Pokémon from the Generation 4 Pokémon games (Pokémon Diamond/Pearl).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Turtwig_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"86-96": [[1594, 283], [1592, 285], [1593, 286], [1593, 289], [1589, 293], [1589, 294], [1593, 299], [1600, 300], [1600, 283]]}, "center": {"86-96": [1595, 294]}},
@@ -9239,9 +9211,9 @@
{"id": "zxvcia", "name": "Poland-Turkey heart", "description": "A heart depicting the flags of Poland and Turkey.", "links": {"website": ["https://en.wikipedia.org/wiki/Poland", "https://en.wikipedia.org/wiki/Turkey"], "subreddit": ["Polska", "poland", "Turkey"]}, "path": {"99-107": [[477, 350], [475, 352], [475, 354], [480, 359], [485, 354], [485, 352], [483, 350]], "87-97": [[477, 348], [475, 350], [475, 352], [480, 357], [485, 352], [485, 350], [483, 348]], "60-75": [[476, 346], [473, 349], [473, 352], [480, 359], [487, 352], [487, 349], [484, 346]], "38-50": [[477, 354], [474, 357], [474, 358], [480, 364], [486, 358], [486, 357], [483, 354]], "11-19": [[429, 355], [426, 358], [426, 361], [432, 367], [438, 361], [438, 358], [435, 355]], "122-143": [[477, 348], [475, 350], [475, 353], [480, 358], [481, 358], [486, 353], [486, 350], [484, 348]]}, "center": {"99-107": [480, 354], "87-97": [480, 352], "60-75": [480, 351], "38-50": [480, 358], "11-19": [432, 360], "122-143": [480, 352]}},
{"id": "zybjpr", "name": "Pixel Dungeon", "description": "Pixel Dungeon is a roguelike dungeon crawler game for mobile.", "links": {"website": ["http://pixeldungeon.watabou.ru/"], "subreddit": ["PixelDungeon"]}, "path": {"63-166, T:0-1": [[689, 360], [689, 376], [707, 376], [707, 360]]}, "center": {"63-166, T:0-1": [691, 368]}},
{"id": "zyg82n", "name": "Peace sign", "description": "A symbol used to represent peace.", "links": {"website": ["https://en.wikipedia.org/wiki/Peace_symbols#Peace_symbol"]}, "path": {"7-12": [[649, 328], [646, 331], [646, 337], [649, 340], [655, 340], [658, 337], [658, 331], [655, 328]], "71-84": [[1473, 364], [1469, 368], [1469, 370], [1473, 374], [1475, 374], [1479, 370], [1479, 368], [1475, 364]], "56-67": [[1549, 446], [1545, 450], [1545, 454], [1549, 458], [1553, 458], [1557, 454], [1557, 450], [1553, 446]]}, "center": {"7-12": [652, 334], "71-84": [1474, 369], "56-67": [1551, 452]}},
-{"id": "zyfgtc", "name": "SCP-Madoka Magica-Bulgaria heart", "description": "A heart with the colors of the SCP Foundation, Puella Magi Madoka Magica, and Bulgaria artworks.", "links": {"website": ["https://en.wikipedia.org/wiki/SCP_Foundation", "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica", "https://en.wikipedia.org/wiki/Bulgaria"], "subreddit": ["bulgaria", "DankMemesFromSite19", "MadokaMagica", "PlaceSCP", "SCP"]}, "path": {"55-113": [[632, 388], [629, 391], [629, 392], [634, 397], [635, 397], [640, 392], [640, 391], [637, 388]]}, "center": {"55-113": [635, 392]}},
+{"id": "zyfgtc", "name": "SCP-Madoka Magica-Bulgaria heart", "description": "A heart with the colors of the SCP Foundation, Puella Magi Madoka Magica, and Bulgaria artworks.", "links": {"website": ["https://en.wikipedia.org/wiki/SCP_Foundation", "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica", "https://en.wikipedia.org/wiki/Bulgaria"], "subreddit": ["bulgaria", "DankMemesFromSite19", "MadokaMagica", "PlaceSCP", "SCP"], "discord": ["madoka"]}, "path": {"55-113": [[632, 388], [629, 391], [629, 392], [634, 397], [635, 397], [640, 392], [640, 391], [637, 388]]}, "center": {"55-113": [635, 392]}},
{"id": "zyf17o", "name": "Deltarune", "description": "Deltarune is a game made by Toby Fox, his second game after Undertale.", "links": {"website": ["https://deltarune.com/", "https://en.wikipedia.org/wiki/Deltarune"], "subreddit": ["Deltarune"]}, "path": {"46-166, T:0-1": [[670, 392], [670, 423], [668, 423], [668, 427], [670, 427], [670, 429], [677, 429], [680, 433], [683, 433], [685, 429], [698, 429], [698, 398], [706, 398], [706, 392]]}, "center": {"46-166, T:0-1": [684, 415]}},
-{"id": "zyexf5", "name": "Lesbian hearts", "description": "Hearts depicting the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"120-166, T:0-1": [[643, 392], [643, 394], [645, 396], [645, 415], [648, 418], [650, 416], [650, 414], [646, 414], [646, 416], [645, 415], [645, 396], [647, 394], [647, 392]]}, "center": {"120-166, T:0-1": [645, 394]}},
+{"id": "zyexf5", "name": "Lesbian hearts", "description": "Hearts depicting the lesbian pride flag. Lesbian people are women attracted to other women.", "links": {"website": ["https://en.wikipedia.org/wiki/Lesbian"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"120-166, T:0-1": [[643, 392], [643, 394], [645, 396], [645, 415], [648, 418], [650, 416], [650, 414], [646, 414], [646, 416], [645, 415], [645, 396], [647, 394], [647, 392]]}, "center": {"120-166, T:0-1": [645, 394]}},
{"id": "zylqz3", "name": "Globasa", "description": "Globasa is a constructed language. It is the product of a thought experiment: put 1000 random people on an island, and see how their language evolves after three generations.", "links": {"website": ["https://www.globasa.net/"], "subreddit": ["conlangs"]}, "path": {"123-134": [[781, 326], [781, 330], [786, 330], [786, 326]]}, "center": {"123-134": [784, 328]}},
{"id": "zylca9", "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"], "subreddit": ["trees"]}, "path": {"5-97": [[729, 407], [729, 414], [744, 414], [744, 407]], "98-164, T:0-1": [[728, 407], [728, 414], [743, 414], [743, 407]]}, "center": {"5-97": [737, 411], "98-164, T:0-1": [736, 411]}},
{"id": "zykwi3", "name": "Civ Battle Royale", "description": "Civ Battle Royale is a show set in the Civilization games. AI-controlled players (civilizations) compete in a battle royale to be the last one standing.\n\nThis logo was built by members of the :squirtyay:/:happysperm: project in conjunction with their emote.", "links": {"website": ["https://civilization.com/civilization-5/"], "subreddit": ["civbattleroyale", "CivHybridGames", "civAIgames", "civmoddingcentral"]}, "path": {"15": [[730, 360], [730, 366], [732, 368], [733, 367], [737, 367], [737, 364], [739, 362], [739, 360]], "17-165, T:0-1": [[707, 360], [707, 369], [714, 369], [714, 364], [716, 362], [716, 360]]}, "center": {"15": [734, 363], "17-165, T:0-1": [711, 365]}},
@@ -9320,7 +9292,7 @@
{"id": "101m422", "name": "Yuki", "description": "Yuki is the default name of the playable Main Character (MC) in the game Obey Me! One Master To Rule Them All. MC is represented with a sheep icon.", "links": {"website": ["https://obey-me.fandom.com/wiki/Main_Character"], "subreddit": ["obeyme"]}, "path": {"149-164, T:0-1": [[1336, 396], [1336, 406], [1339, 409], [1343, 409], [1346, 406], [1346, 396]]}, "center": {"149-164, T:0-1": [1341, 402]}},
{"id": "101lxi9", "name": "Demon Voucher", "description": "The Demon Voucher is an item in the game Obey Me! One Master To Rule Them All.\n\nObey Me! is a dating simulation game developed for Android and iOS. The main character is transported to Devildom by a summoning ritual to attend Devildom Academy as a exchange student for one year. They are greeted by seven gorgeous men that are avatars of the deadly sins from Christianity.", "links": {"website": ["https://shallwedate.jp/obeyme/en/"], "subreddit": ["obeyme"]}, "path": {"120-122": [[1345, 367], [1345, 390], [1383, 390], [1383, 383], [1380, 380], [1380, 377], [1383, 374], [1383, 367]], "123-165, T:0-1": [[1345, 381], [1345, 404], [1383, 404], [1383, 397], [1380, 394], [1380, 391], [1383, 388], [1383, 381]]}, "center": {"120-122": [1364, 379], "123-165, T:0-1": [1364, 393]}},
{"id": "101ow7a", "name": "Kiel University of Applied Sciences", "description": "Kiel University of Applied Sciences is a university in Kiel, Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Kiel_University_of_Applied_Sciences"]}, "path": {"95-115": [[1329, 344], [1329, 368], [1341, 368], [1341, 344]], "116-148": [[1329, 344], [1329, 362], [1341, 362], [1341, 344]], "91-94": [[1390, 318], [1390, 342], [1402, 342], [1402, 318]], "88-90": [[762, 559], [762, 570], [773, 570], [773, 559]], "161-166, T:0-1": [[771, 1924], [771, 1935], [782, 1935], [782, 1924]]}, "center": {"95-115": [1335, 356], "116-148": [1335, 353], "91-94": [1396, 330], "88-90": [768, 565], "161-166, T:0-1": [777, 1930]}},
-{"id": "101osnq", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark.", "links": {"subreddit": ["lostarkgame"]}, "path": {"97-127": [[1392, 347], [1390, 349], [1390, 352], [1388, 354], [1388, 355], [1390, 357], [1394, 357], [1396, 355], [1396, 353], [1397, 352], [1397, 349], [1401, 346], [1401, 345], [1397, 345], [1395, 347]]}, "center": {"97-127": [1393, 350]}},
+{"id": "101osnq", "name": "Mokoko Seed", "description": "A Mokoko Seed is a hidden collectible in the game Lost Ark, which recently released in the West.", "links": {"subreddit": ["lostarkgame"]}, "path": {"97-127": [[1392, 347], [1390, 349], [1390, 352], [1388, 354], [1388, 355], [1390, 357], [1394, 357], [1396, 355], [1396, 353], [1397, 352], [1397, 349], [1401, 346], [1401, 345], [1397, 345], [1395, 347]]}, "center": {"97-127": [1393, 350]}},
{"id": "101orgv", "name": "Shit", "description": "A profane term for feces/poop. Has a wide variety of other meanings, such as a profane interjection or describing something as nonsense or bad.", "links": {"website": ["https://en.wikipedia.org/wiki/Shit"]}, "path": {"122-129": [[1330, 378], [1330, 383], [1344, 383], [1344, 378]]}, "center": {"122-129": [1337, 381]}},
{"id": "101ookp", "name": "Piss", "description": "A slang term for urine.", "links": {"website": ["https://en.wikipedia.org/wiki/Urine"]}, "path": {"105-129": [[1330, 373], [1330, 378], [1344, 378], [1344, 373]]}, "center": {"105-129": [1337, 376]}},
{"id": "101ofxt", "name": "Steve", "description": "One of the default player characters in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Player"], "subreddit": ["Minecraft"]}, "path": {"123-127": [[1380, 360], [1380, 368], [1382, 368], [1382, 369], [1387, 369], [1387, 368], [1389, 368], [1389, 360]], "59-60": [[1968, 451], [1968, 459], [1969, 459], [1971, 463], [1974, 463], [1977, 458], [1977, 451]], "9-11": [[561, 561], [561, 564], [559, 564], [559, 566], [562, 569], [565, 569], [568, 566], [568, 563], [566, 563], [564, 561]]}, "center": {"123-127": [1385, 365], "59-60": [1973, 456], "9-11": [564, 566]}},
@@ -9354,7 +9326,7 @@
{"id": "101y4x1", "name": "Cum", "description": "A slang term for semen. The word is often used for humorous effect due to its vulgarity.", "links": {"website": ["https://www.urbandictionary.com/define.php?term=Cum", "https://en.wikipedia.org/wiki/Semen"]}, "path": {"67-73": [[1436, 360], [1436, 372], [1450, 372], [1450, 360]], "108-117": [[1748, 551], [1748, 558], [1765, 558], [1765, 551]]}, "center": {"67-73": [1443, 366], "108-117": [1757, 555]}},
{"id": "101xx7c", "name": "Narendra Modi", "description": "Narendra Modi is the current prime minister of India.", "links": {"website": ["https://en.wikipedia.org/wiki/Narendra_Modi"], "subreddit": ["IndiaPlace", "IndianPlace", "india"]}, "path": {"108-112": [[1426, 321], [1426, 326], [1446, 326], [1446, 321]]}, "center": {"108-112": [1436, 324]}},
{"id": "101xomu", "name": "Bepis", "description": "Bepis is a meme that originated as a mispronunciation of the word \"penis\". It later evolved into a misspelling of the soda brand Pepsi.", "links": {"website": ["https://knowyourmeme.com/memes/bepis"]}, "path": {"118-130": [[1484, 348], [1484, 358], [1515, 358], [1515, 348]]}, "center": {"118-130": [1500, 353]}},
-{"id": "101xnjp", "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": {"137-147": [[1459, 331], [1459, 347], [1467, 347], [1467, 345], [1465, 345], [1465, 341], [1466, 340], [1466, 339], [1465, 338], [1465, 333], [1467, 331], [1476, 331], [1476, 332], [1477, 333], [1477, 338], [1476, 339], [1476, 341], [1483, 341], [1483, 331]], "102-123": [[1463, 336], [1463, 347], [1468, 347], [1465, 344], [1465, 339], [1468, 336], [1474, 336], [1477, 339], [1477, 344], [1474, 347], [1483, 347], [1483, 336]], "151-152": [[1726, 328], [1726, 334], [1728, 334], [1728, 328]], "15-18": [[606, 476], [606, 487], [608, 487], [612, 481], [612, 476]], "19-29": [[563, 549], [563, 550], [564, 551], [564, 555], [585, 555], [585, 549]], "1-3": [[992, 769], [992, 775], [1000, 775], [1000, 769]], "4-7": [[908, 750], [908, 756], [912, 756], [912, 752], [913, 751], [913, 750]], "124-136, 67-101": [[1459, 336], [1459, 347], [1483, 347], [1484, 336], [1474, 336], [1477, 339], [1477, 344], [1474, 347], [1468, 347], [1465, 344], [1465, 339], [1469, 336]]}, "center": {"137-147": [1462, 339], "102-123": [1480, 341], "151-152": [1727, 331], "15-18": [609, 479], "19-29": [574, 552], "1-3": [996, 772], "4-7": [910, 752], "124-136, 67-101": [1481, 339]}},
+{"id": "101xnjp", "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": {"163": [[1068, 833], [1068, 838], [1070, 838], [1070, 833]], "137-147": [[1459, 331], [1459, 347], [1467, 347], [1467, 345], [1465, 345], [1465, 341], [1466, 340], [1466, 339], [1465, 338], [1465, 333], [1467, 331], [1476, 331], [1476, 332], [1477, 333], [1477, 338], [1476, 339], [1476, 341], [1483, 341], [1483, 331]], "102-123": [[1463, 336], [1463, 347], [1468, 347], [1465, 344], [1465, 339], [1468, 336], [1474, 336], [1477, 339], [1477, 344], [1474, 347], [1483, 347], [1483, 336]], "151-152": [[1726, 328], [1726, 334], [1728, 334], [1728, 328]], "15-18": [[606, 476], [606, 487], [608, 487], [612, 481], [612, 476]], "19-29": [[563, 549], [563, 550], [564, 551], [564, 555], [585, 555], [585, 549]], "1-3": [[992, 769], [992, 775], [1000, 775], [1000, 769]], "4-7": [[908, 750], [908, 756], [912, 756], [912, 752], [913, 751], [913, 750]], "159-161": [[1065, 837], [1065, 843], [1073, 843], [1073, 837]], "124-136, 67-101": [[1459, 336], [1459, 347], [1483, 347], [1484, 336], [1474, 336], [1477, 339], [1477, 344], [1474, 347], [1468, 347], [1465, 344], [1465, 339], [1469, 336]]}, "center": {"163": [1069, 836], "137-147": [1462, 339], "102-123": [1480, 341], "151-152": [1727, 331], "15-18": [609, 479], "19-29": [574, 552], "1-3": [996, 772], "4-7": [910, 752], "159-161": [1069, 840], "124-136, 67-101": [1481, 339]}},
{"id": "101zzsx", "name": "Totless", "description": "Totless, also known as Skull, is a Twitch streamer and co-creator of the comic Skull & Candy.", "links": {"website": ["https://totless.tv/", "https://www.twitch.tv/totless"]}, "path": {"56-104": [[1568, 411], [1568, 421], [1614, 421], [1614, 411]]}, "center": {"56-104": [1591, 416]}},
{"id": "101zk1i", "name": "Drain Gang", "description": "Drain Gang is a Swedish musical collective.", "links": {"website": ["https://en.wikipedia.org/wiki/Drain_Gang"], "subreddit": ["sadboys"]}, "path": {"59-164, T:0-1": [[1548, 391], [1534, 396], [1531, 405], [1537, 405], [1537, 407], [1548, 411], [1553, 411], [1565, 406], [1568, 396], [1551, 391]]}, "center": {"59-164, T:0-1": [1550, 401]}},
{"id": "101zj4b", "name": "Sad Boys Entertainment", "description": "Sad Boys Entertainment (SBE) is a Swedish musical collective.", "links": {"website": ["https://music.youtube.com/playlist?list=PL63-2EyubE7y9xdsBGp0SkJqidR7EvJOe"], "subreddit": ["sadboys"]}, "path": {"67-164, T:0-1": [[1533, 367], [1530, 370], [1528, 379], [1528, 380], [1530, 382], [1532, 382], [1539, 379], [1560, 379], [1564, 382], [1565, 381], [1567, 381], [1571, 378], [1571, 370], [1569, 368], [1566, 368], [1564, 366], [1540, 366], [1539, 367]]}, "center": {"67-164, T:0-1": [1561, 373]}},
@@ -9375,7 +9347,7 @@
{"id": "twvqs8", "name": "Choualbox", "description": "Choualbox is a French sharing website.", "links": {"website": ["https://choualbox.com/"]}, "path": {"141-163": [[1683, 356], [1683, 362], [1691, 362], [1691, 356]], "98-108": [[1671, 377], [1671, 395], [1684, 395], [1684, 377]], "164, T:0-1": [[1679, 356], [1679, 362], [1691, 362], [1691, 356]]}, "center": {"141-163": [1687, 359], "98-108": [1678, 386], "164, T:0-1": [1685, 359]}},
{"id": "tx8w1d", "name": "Three Fingers Deep", "description": "Three Fingers Deep is a multi-state bowling organization currently based out of Orlando, Florida, United States. #FuckBobby", "links": {}, "path": {"107-166, T:0-1": [[1697, 329], [1706, 329], [1706, 335], [1697, 335]]}, "center": {"107-166, T:0-1": [1702, 332]}},
{"id": "102wmop", "name": "Genderqueer flag", "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"], "subreddit": ["PlacePride"]}, "path": {"60-63": [[1685, 356], [1685, 360], [1694, 360], [1694, 356]], "1-3": [[0, 657], [0, 663], [1, 663], [1, 657]], "90-99": [[457, 614], [457, 621], [465, 621], [465, 614]], "68-77": [[1702, 599], [1702, 606], [1712, 606], [1707, 601], [1707, 599]]}, "center": {"60-63": [1690, 358], "1-3": [1, 660], "90-99": [461, 618], "68-77": [1705, 603]}},
-{"id": "102wk6l", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"56-63": [[1694, 356], [1694, 360], [1703, 360], [1703, 356]], "99-107": [[1108, 527], [1108, 534], [1118, 534], [1118, 527]], "82-85": [[1296, 567], [1296, 571], [1300, 571], [1300, 567]], "24-36": [[0, 670], [0, 678], [2, 678], [2, 679], [20, 679], [20, 671], [2, 671], [2, 670]], "2-12": [[732, 663], [732, 667], [737, 667], [737, 663]], "136-138": [[1885, 664], [1885, 668], [1890, 668], [1890, 664]]}, "center": {"56-63": [1699, 358], "99-107": [1113, 531], "82-85": [1298, 569], "24-36": [15, 675], "2-12": [735, 665], "136-138": [1888, 666]}},
+{"id": "102wk6l", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"56-63": [[1694, 356], [1694, 360], [1703, 360], [1703, 356]], "99-107": [[1108, 527], [1108, 534], [1118, 534], [1118, 527]], "82-85": [[1296, 567], [1296, 571], [1300, 571], [1300, 567]], "24-36": [[0, 670], [0, 678], [2, 678], [2, 679], [20, 679], [20, 671], [2, 671], [2, 670]], "2-12": [[732, 663], [732, 667], [737, 667], [737, 663]], "136-138": [[1885, 664], [1885, 668], [1890, 668], [1890, 664]], "71-73": [[1072, 892], [1072, 896], [1074, 896], [1074, 892]]}, "center": {"56-63": [1699, 358], "99-107": [1113, 531], "82-85": [1298, 569], "24-36": [15, 675], "2-12": [735, 665], "136-138": [1888, 666], "71-73": [1073, 894]}},
{"id": "102vvwt", "name": "Gold Nugget", "description": "A gold nugget is an item in the game Minecraft. Nine gold nuggets can be crafted into a gold ingot.", "links": {"website": ["https://minecraft.fandom.com/wiki/Gold_Nugget"], "subreddit": ["Minecraft"]}, "path": {"72-120": [[1692, 357], [1692, 368], [1701, 368], [1701, 357]]}, "center": {"72-120": [1697, 363]}},
{"id": "102vj80", "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": {"145-152": [[1663, 338], [1663, 346], [1672, 346], [1672, 338]]}, "center": {"145-152": [1668, 342]}},
{"id": "102wxla", "name": "Terraria character", "description": "The player-controlled character from the game Terraria.", "links": {"website": ["https://terraria.fandom.com/wiki/Character"], "subreddit": ["Terraria"]}, "path": {"64": [[1683, 350], [1678, 354], [1678, 356], [1679, 357], [1679, 363], [1677, 365], [1679, 367], [1688, 367], [1688, 364], [1693, 364], [1693, 362], [1687, 362], [1687, 359], [1720, 359], [1720, 357], [1690, 357], [1690, 355], [1686, 351]], "65-110": [[1679, 356], [1676, 359], [1676, 363], [1677, 364], [1677, 379], [1679, 381], [1679, 386], [1689, 386], [1689, 379], [1696, 373], [1696, 371], [1692, 367], [1692, 365], [1694, 363], [1692, 361], [1692, 359], [1689, 355]]}, "center": {"64": [1684, 356], "65-110": [1685, 372]}},
@@ -9500,11 +9472,11 @@
{"id": "10cddz9", "name": "Willis Tower", "description": "The Willis Tower, formerly named the Sears Tower, is a skyscraper in Chicago. It was the world's tallest building when it opened in 1973, keeping the title for 25 years.", "links": {"website": ["https://en.wikipedia.org/wiki/Willis_Tower"], "subreddit": ["chicago"]}, "path": {"125-166, T:0-1": [[611, 399], [611, 407], [610, 407], [610, 411], [617, 411], [617, 408], [615, 405], [615, 399]]}, "center": {"125-166, T:0-1": [614, 408]}},
{"id": "twijax", "name": "Cotton Candy Chicken", "description": "The Cotton Candy Chicken is a breed of chicken from Goonstation, a popular edition of the game Space Station 13.", "links": {"website": ["https://wiki.ss13.co/Rancher#Second_Generation_Chickens"], "subreddit": ["SS13", "transplace"]}, "path": {"129-165, T:0-1": [[677, 432], [674, 435], [674, 436], [676, 436], [679, 439], [681, 439], [683, 437], [683, 436], [685, 436], [685, 433], [686, 432], [685, 431], [684, 431], [680, 434], [678, 432]]}, "center": {"129-165, T:0-1": [680, 436]}},
{"id": "10cwe9b", "name": "r/transplace", "description": "Subreddit for coordinating the construction and maintenance of the nearby transgender flag and related transgender/LGBT artworks on r/place.", "links": {"subreddit": ["transplace"]}, "path": {"61-69": [[694, 431], [694, 437], [743, 437], [743, 431]], "70-164, T:0-1": [[689, 433], [687, 435], [687, 439], [689, 441], [776, 441], [776, 435], [774, 433], [702, 433], [702, 432], [700, 432], [699, 433]]}, "center": {"61-69": [719, 434], "70-164, T:0-1": [732, 437]}},
-{"id": "10cwe9c", "name": "Nanami Yachiyo", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Yachiyo_Nanami"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"18-51": [[665, 424], [665, 426], [667, 428], [669, 426], [669, 424]], "52-166, T:0-1": [[665, 417], [665, 419], [667, 421], [669, 419], [669, 417]]}, "center": {"18-51": [667, 426], "52-166, T:0-1": [667, 419]}},
-{"id": "10cwe9d", "name": "Sana Futaba", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Sana_Futaba"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"18-51": [[665, 415], [665, 417], [667, 419], [669, 417], [669, 415]], "52-166, T:0-1": [[665, 423], [665, 425], [667, 427], [669, 425], [669, 423]]}, "center": {"18-51": [667, 417], "52-166, T:0-1": [667, 425]}},
-{"id": "10czxwp", "name": "Felicia Mitsuki", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Felicia_Mitsuki"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"52-166, T:0-1": [[665, 426], [665, 428], [667, 430], [669, 428], [669, 426]]}, "center": {"52-166, T:0-1": [667, 428]}},
-{"id": "10czwgd", "name": "Tsuruno Yui", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Tsuruno_Yui"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"18-51": [[665, 421], [665, 423], [667, 425], [669, 423], [669, 421]], "52-166, T:0-1": [[665, 420], [665, 422], [667, 424], [669, 422], [669, 420]]}, "center": {"18-51": [667, 423], "52-166, T:0-1": [667, 422]}},
-{"id": "10czt69", "name": "Tamaki Iroha", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Iroha_Tamaki"], "subreddit": ["MadokaMagica", "magiarecord"]}, "path": {"18-51": [[665, 418], [665, 420], [667, 422], [669, 420], [669, 418]], "52-166, T:0-1": [[665, 414], [665, 416], [667, 418], [669, 416], [669, 414]]}, "center": {"18-51": [667, 420], "52-166, T:0-1": [667, 416]}},
+{"id": "10cwe9c", "name": "Nanami Yachiyo", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Yachiyo_Nanami"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"18-51": [[665, 424], [665, 426], [667, 428], [669, 426], [669, 424]], "52-166, T:0-1": [[665, 417], [665, 419], [667, 421], [669, 419], [669, 417]]}, "center": {"18-51": [667, 426], "52-166, T:0-1": [667, 419]}},
+{"id": "10cwe9d", "name": "Sana Futaba", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Sana_Futaba"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"18-51": [[665, 415], [665, 417], [667, 419], [669, 417], [669, 415]], "52-166, T:0-1": [[665, 423], [665, 425], [667, 427], [669, 425], [669, 423]]}, "center": {"18-51": [667, 417], "52-166, T:0-1": [667, 425]}},
+{"id": "10czxwp", "name": "Felicia Mitsuki", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Felicia_Mitsuki"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"52-166, T:0-1": [[665, 426], [665, 428], [667, 430], [669, 428], [669, 426]]}, "center": {"52-166, T:0-1": [667, 428]}},
+{"id": "10czwgd", "name": "Tsuruno Yui", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Tsuruno_Yui"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"18-51": [[665, 421], [665, 423], [667, 425], [669, 423], [669, 421]], "52-166, T:0-1": [[665, 420], [665, 422], [667, 424], [669, 422], [669, 420]]}, "center": {"18-51": [667, 423], "52-166, T:0-1": [667, 422]}},
+{"id": "10czt69", "name": "Tamaki Iroha", "description": "A character from the game Puella Magi Madoka Magica Side Story: Magia Record.", "links": {"website": ["https://wiki.puella-magi.net/Iroha_Tamaki"], "subreddit": ["MadokaMagica", "magiarecord"], "discord": ["madoka"]}, "path": {"18-51": [[665, 418], [665, 420], [667, 422], [669, 420], [669, 418]], "52-166, T:0-1": [[665, 414], [665, 416], [667, 418], [669, 416], [669, 414]]}, "center": {"18-51": [667, 420], "52-166, T:0-1": [667, 416]}},
{"id": "twh7zu", "name": "Pittsburgh Steelers", "description": "The Pittsburgh Steelers are an American football team based in Pittsburgh, Pennsylvania, United States. Their triple hypocycloid logo is known as the Steelmark.\n\nAfter 5 iterations destroyed by the Nordics and the British, this logo found a home in the Pittsburgh quadrant.", "links": {"website": ["https://en.wikipedia.org/wiki/Pittsburgh_Steelers"], "subreddit": ["steelers", "pittsburgh"]}, "path": {"15-17, 20-38": [[675, 512], [671, 516], [671, 522], [675, 526], [681, 526], [685, 522], [685, 516], [681, 512]], "18-19": [[661, 511], [658, 513], [655, 516], [655, 522], [660, 527], [666, 527], [671, 522], [671, 516], [665, 511]], "3-14": [[308, 115], [305, 117], [302, 121], [302, 125], [304, 128], [308, 131], [312, 131], [315, 129], [318, 125], [318, 121], [316, 118], [312, 115]], "56-165, T:0-1": [[1751, 639], [1759, 639], [1760, 640], [1761, 640], [1762, 641], [1763, 642], [1764, 643], [1765, 645], [1766, 646], [1766, 655], [1765, 656], [1764, 657], [1763, 658], [1762, 659], [1761, 660], [1760, 660], [1759, 661], [1751, 661], [1750, 660], [1749, 660], [1748, 659], [1747, 658], [1746, 657], [1745, 656], [1745, 655], [1744, 654], [1744, 646], [1745, 645], [1745, 644], [1746, 643], [1747, 642], [1748, 641], [1749, 640], [1750, 640], [1750, 639]]}, "center": {"15-17, 20-38": [678, 519], "18-19": [663, 519], "3-14": [310, 123], "56-165, T:0-1": [1755, 650]}},
{"id": "10d135m", "name": "13-9", "description": "13-9 was a college American football game on December 1, 2007 between the University of Pittsburgh and West Virginia University, a rivalry known as the Backyard Brawl. The University of Pittsburgh won an upset victory with a score of 13-9.", "links": {"website": ["https://en.wikipedia.org/wiki/2007_Backyard_Brawl"], "subreddit": ["Pitt", "pittsburgh"]}, "path": {"23-37": [[685, 504], [685, 512], [699, 512], [699, 504]], "16-20": [[685, 503], [685, 511], [699, 511], [699, 503]], "53-58": [[638, 579], [638, 585], [651, 585], [651, 579]], "67-164, T:0-1": [[1762, 627], [1762, 633], [1775, 633], [1775, 627]]}, "center": {"23-37": [692, 508], "16-20": [692, 507], "53-58": [645, 582], "67-164, T:0-1": [1769, 630]}},
{"id": "10d0uy3", "name": "Hail to Pitt", "description": "Hail to Pitt (H2P) is the fight song and a slogan of the University of Pittsburg.", "links": {"website": ["https://en.wikipedia.org/wiki/Hail_to_Pitt"], "subreddit": ["Pitt", "pittsburgh"]}, "path": {"23-37": [[669, 504], [669, 512], [684, 512], [684, 504]], "15-19": [[668, 503], [668, 511], [682, 511], [682, 503]], "52-58": [[623, 579], [623, 585], [635, 585], [635, 579]], "67-165, T:0-1": [[1748, 627], [1748, 633], [1760, 633], [1760, 627]]}, "center": {"23-37": [677, 508], "15-19": [675, 507], "52-58": [629, 582], "67-165, T:0-1": [1754, 630]}},
@@ -9763,7 +9735,7 @@
{"id": "10wjuqm", "name": "r/belarus", "description": "Subreddit focused on the country of Belarus.", "links": {"subreddit": ["belarus"]}, "path": {"48-74": [[506, 595], [506, 601], [542, 601], [542, 595]]}, "center": {"48-74": [524, 598]}},
{"id": "10wjtre", "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": {"54-74": [[505, 587], [505, 610], [560, 610], [560, 606], [553, 606], [550, 603], [550, 590], [560, 590], [560, 587]], "46-53": [[505, 587], [505, 610], [560, 610], [560, 587]]}, "center": {"54-74": [533, 599], "46-53": [533, 599]}},
{"id": "10wjsft", "name": "Lithuania-Belarusian opposition heart", "description": "A heart depicting the flag of Lithuania and the Belarusian opposition flag.", "links": {"website": ["https://en.wikipedia.org/wiki/Lithuania", "https://en.wikipedia.org/wiki/Belarusian_opposition"], "subreddit": ["belarus", "lithuania"]}, "path": {"48": [[530, 595], [528, 597], [528, 599], [533, 604], [538, 599], [538, 597], [536, 595]], "50-54": [[557, 593], [554, 596], [554, 598], [560, 604], [566, 598], [566, 595], [564, 593]]}, "center": {"48": [533, 599], "50-54": [560, 597]}},
-{"id": "10wjew8", "name": "Argentina-Peru heart", "description": "A heart depicting the flags of Argentina and Peru.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Peru"], "subreddit": ["argentina", "Republica_Argentina", "dankargentina", "PERU"]}, "path": {"123-129": [[572, 541], [570, 543], [570, 545], [575, 550], [580, 545], [580, 543], [578, 541]]}, "center": {"123-129": [575, 545]}},
+{"id": "10wjew8", "name": "Argentina-Peru heart", "description": "A heart depicting the flags of Argentina and Peru.", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Peru"], "subreddit": ["argentina", "Republica_Argentina", "PERU"]}, "path": {"123-129": [[572, 541], [570, 543], [570, 545], [575, 550], [580, 545], [580, 543], [578, 541]]}, "center": {"123-129": [575, 545]}},
{"id": "10wjew9", "name": "Back-to-back", "description": "The Tampa Bay Lightning won back-to-back (B2B) Stanley Cup championships in 2020 and 2021.", "links": {"website": ["https://en.wikipedia.org/wiki/2020_Stanley_Cup_Finals", "https://en.wikipedia.org/wiki/2021_Stanley_Cup_Finals"], "subreddit": ["TampaBayLightning"]}, "path": {"80-86": [[688, 584], [688, 590], [702, 590], [702, 584]], "132-165, 7-79, 92-124, T:0-1": [[688, 584], [688, 590], [700, 590], [700, 584]]}, "center": {"80-86": [695, 587], "132-165, 7-79, 92-124, T:0-1": [694, 587]}},
{"id": "10xf7xp", "name": "Senko-Lithuania heart", "description": "A heart with the colors of the Senko art and the flag of Lithuania.", "links": {"website": ["https://en.wikipedia.org/wiki/The_Helpful_Fox_Senko-san", "https://en.wikipedia.org/wiki/Lithuania"], "subreddit": ["SewayakiKitsune", "ChurchOfSenko", "lithuania"]}, "path": {"72-166, T:0-1": [[629, 604], [625, 608], [625, 610], [632, 617], [639, 610], [639, 608], [635, 604]]}, "center": {"72-166, T:0-1": [632, 609]}},
{"id": "10xewes", "name": "Stanley Cup", "description": "The Stanley Cup is a trophy awarded to the winner of the National Hockey League (NHL) champion each year.", "links": {"website": ["https://en.wikipedia.org/wiki/Stanley_Cup"], "subreddit": ["TampaBayLightning"]}, "path": {"11-85": [[679, 572], [679, 590], [688, 590], [688, 572]], "131-165, 92-124, T:0-1": [[679, 573], [679, 591], [688, 591], [688, 573]]}, "center": {"11-85": [684, 581], "131-165, 92-124, T:0-1": [684, 582]}},
@@ -9938,7 +9910,7 @@
{"id": "1183hzf", "name": "Lumini X 3", "description": "Lumini > 3", "links": {"website": ["https://www.twitch.tv/gorgc"], "subreddit": ["gorgc"]}, "path": {"109-166, T:0-1": [[1591, 1036], [1591, 1017], [1574, 1017], [1574, 1036]]}, "center": {"109-166, T:0-1": [1583, 1027]}},
{"id": "118n4a0", "name": "No gods, no masters", "description": "A slogan used by the anarchists.", "links": {"website": ["https://en.wikipedia.org/wiki/Anarchist_symbolism#No_gods,_no_masters"], "subreddit": ["Hasan_Piker", "okbuddyhasan"]}, "path": {"64-74": [[1750, 530], [1750, 538], [1848, 538], [1848, 530]]}, "center": {"64-74": [1799, 534]}},
{"id": "118mwuj", "name": "Atlantic Coast Conference", "description": "The Atlantic Coast Conference (ACC) is an athletic conference of colleges in the eastern United States.", "links": {"website": ["http://www.theacc.com/", "https://en.wikipedia.org/wiki/Atlantic_Coast_Conference"]}, "path": {"68-97": [[1774, 596], [1774, 606], [1800, 606], [1800, 596]]}, "center": {"68-97": [1787, 601]}},
-{"id": "118mt13", "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": {"123-135": [[1727, 579], [1727, 589], [1738, 589], [1738, 587], [1739, 587], [1739, 583], [1736, 579]]}, "center": {"123-135": [1733, 584]}},
+{"id": "118mt13", "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": {"123-135": [[1727, 579], [1727, 589], [1738, 589], [1738, 587], [1739, 587], [1739, 583], [1736, 579]], "70-91": [[1763, 894], [1763, 900], [1771, 900], [1771, 894]]}, "center": {"123-135": [1733, 584], "70-91": [1767, 897]}},
{"id": "118mro3", "name": "Flag of Spain", "description": "Spain 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": {"147-150": [[1767, 568], [1767, 578], [1772, 578], [1772, 577], [1774, 577], [1774, 568]], "136-139": [[1768, 571], [1768, 575], [1774, 575], [1774, 571]], "106-114": [[859, 668], [859, 672], [871, 672], [871, 668]], "64-69": [[1129, 665], [1129, 703], [1132, 703], [1134, 705], [1134, 713], [1193, 713], [1193, 665]], "70-73": [[1129, 665], [1129, 702], [1134, 704], [1134, 713], [1200, 713], [1200, 665]]}, "center": {"147-150": [1771, 573], "136-139": [1771, 573], "106-114": [865, 670], "64-69": [1161, 689], "70-73": [1165, 689]}},
{"id": "118mp5a", "name": "Siro López", "description": "Siro López is a Spanish streamer.", "links": {"website": ["https://en.wikipedia.org/wiki/Twitch_(service)", "https://en.wikipedia.org/wiki/Siro_L%C3%B3pez"]}, "path": {"148-156": [[1774, 539], [1774, 558], [1800, 558], [1800, 539]]}, "center": {"148-156": [1787, 549]}},
{"id": "118nfrw", "name": "Communism", "description": "Communism is a political philosophy that revolves around common ownership of resources in a community. This art depicts a common communist symbol, a hammer and sickle on a red background, used by communist societies such as the Soviet Union and the Chinese Communist Party.", "links": {"website": ["https://en.wikipedia.org/wiki/Communism", "https://en.wikipedia.org/wiki/Hammer_and_sickle"], "subreddit": ["communism"]}, "path": {"63-68": [[1724, 504], [1724, 515], [1746, 515], [1746, 504]]}, "center": {"63-68": [1735, 510]}},
@@ -10012,7 +9984,7 @@
{"id": "11fi0it", "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": {"100-134": [[465, 624], [465, 630], [476, 630], [476, 624]], "78-99": [[468, 624], [468, 630], [476, 630], [476, 624]], "135-159, T:0-1": [[476, 630], [476, 638], [486, 638], [486, 630]]}, "center": {"100-134": [471, 627], "78-99": [472, 627], "135-159, T:0-1": [481, 634]}},
{"id": "11fhuxm", "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": {"78-99": [[468, 630], [468, 638], [476, 638], [476, 630]], "100-160, T:0-1": [[465, 630], [465, 638], [476, 638], [476, 630]]}, "center": {"78-99": [472, 634], "100-160, T:0-1": [471, 634]}},
{"id": "11fhszj", "name": "Flag of Costa Rica", "description": "Costa Rica is a country in Central America.", "links": {"website": ["https://en.wikipedia.org/wiki/Costa_Rica", "https://en.wikipedia.org/wiki/Flag_of_Costa_Rica"], "subreddit": ["costarica", "costa_rica"]}, "path": {"77": [[468, 624], [468, 630], [470, 630], [470, 626], [471, 625], [471, 624]], "147-159, 78-139, T:0-1": [[476, 624], [476, 630], [486, 630], [486, 624]]}, "center": {"77": [469, 625], "147-159, 78-139, T:0-1": [481, 627]}},
-{"id": "11fhrb4", "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", "Republica_Argentina", "dankargentina"]}, "path": {"42-52": [[853, 639], [850, 654], [850, 655], [858, 655], [857, 653], [857, 643], [858, 643], [858, 639], [861, 639], [864, 636], [864, 635], [858, 635], [858, 639]], "14-41": [[858, 631], [858, 639], [852, 639], [852, 645], [850, 648], [850, 649], [828, 649], [828, 672], [850, 672], [850, 673], [861, 673], [861, 672], [869, 672], [869, 668], [861, 668], [860, 667], [858, 667], [858, 653], [856, 649], [857, 645], [861, 645], [861, 639], [866, 634], [871, 634], [871, 635], [873, 635], [877, 633], [877, 631], [902, 631], [902, 615], [896, 615], [896, 623], [870, 623], [870, 625], [858, 625]], "77-90, 93-135": [[476, 630], [476, 638], [486, 638], [486, 630]], "147-160, T:0-1": [[465, 624], [465, 630], [476, 630], [476, 624]]}, "center": {"42-52": [854, 651], "14-41": [846, 661], "77-90, 93-135": [481, 634], "147-160, T:0-1": [471, 627]}},
+{"id": "11fhrb4", "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", "Republica_Argentina"]}, "path": {"42-52": [[853, 639], [850, 654], [850, 655], [858, 655], [857, 653], [857, 643], [858, 643], [858, 639], [861, 639], [864, 636], [864, 635], [858, 635], [858, 639]], "14-41": [[858, 631], [858, 639], [852, 639], [852, 645], [850, 648], [850, 649], [828, 649], [828, 672], [850, 672], [850, 673], [861, 673], [861, 672], [869, 672], [869, 668], [861, 668], [860, 667], [858, 667], [858, 653], [856, 649], [857, 645], [861, 645], [861, 639], [866, 634], [871, 634], [871, 635], [873, 635], [877, 633], [877, 631], [902, 631], [902, 615], [896, 615], [896, 623], [870, 623], [870, 625], [858, 625]], "77-90, 93-135": [[476, 630], [476, 638], [486, 638], [486, 630]], "147-160, T:0-1": [[465, 624], [465, 630], [476, 630], [476, 624]]}, "center": {"42-52": [854, 651], "14-41": [846, 661], "77-90, 93-135": [481, 634], "147-160, T:0-1": [471, 627]}},
{"id": "11fhoj6", "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": {"78-100": [[468, 618], [468, 624], [476, 624], [476, 618]], "101-160, T:0-1": [[465, 618], [465, 624], [476, 624], [476, 618]]}, "center": {"78-100": [472, 621], "101-160, T:0-1": [471, 621]}},
{"id": "11fhllq", "name": "Flag of Mexico", "description": "Mexico is a country in the south part of North America.", "links": {"website": ["https://en.wikipedia.org/wiki/Mexico", "https://en.wikipedia.org/wiki/Flag_of_Mexico"], "subreddit": ["PlaceMexico", "MexicoPlace", "Mexico"]}, "path": {"78-95": [[476, 610], [476, 624], [486, 624], [486, 610]], "24-40": [[448, 878], [448, 890], [470, 890], [470, 878]], "96-159, T:0-1": [[476, 610], [476, 618], [486, 618], [486, 610]]}, "center": {"78-95": [481, 617], "24-40": [459, 884], "96-159, T:0-1": [481, 614]}},
{"id": "11fhjk4", "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": {"78-109": [[518, 635], [518, 640], [527, 640], [527, 635]], "110-115": [[518, 635], [518, 641], [527, 641], [527, 635]], "118-160, T:0-1": [[465, 610], [465, 618], [476, 618], [476, 610]]}, "center": {"78-109": [523, 638], "110-115": [523, 638], "118-160, T:0-1": [471, 614]}},
@@ -10076,18 +10048,18 @@
{"id": "11pon43", "name": "Coat of arms of Venezuela", "description": "The coat of arms of Venezuela is split into three sections: a red field of wheat, a yellow area with weapons of war, and a blue area with a white horse.", "links": {"website": ["https://en.wikipedia.org/wiki/Coat_of_arms_of_Venezuela"], "subreddit": ["vzla", "venezuela", "placevenezuela", "vnzla"]}, "path": {"105-160": [[1205, 774], [1203, 776], [1203, 778], [1205, 780], [1208, 780], [1210, 778], [1210, 776], [1208, 774]], "161-166, T:0-1": [[1206, 775], [1206, 774], [1211, 774], [1211, 775], [1212, 775], [1212, 779], [1211, 779], [1211, 780], [1210, 780], [1210, 781], [1207, 781], [1207, 780], [1206, 780], [1206, 779], [1205, 779], [1205, 775]]}, "center": {"105-160": [1207, 777], "161-166, T:0-1": [1209, 777]}},
{"id": "11pokoe", "name": "Bitcoin icon", "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"]}, "path": {"164": [[969, 1545], [977, 1545], [977, 1553], [969, 1553]]}, "center": {"164": [973, 1549]}},
{"id": "11pnljm", "name": "r/Paraguay", "description": "Subreddit focused on the country of Paraguay.", "links": {"subreddit": ["Paraguay"]}, "path": {"63-165, T:0-1": [[987, 687], [987, 692], [1028, 692], [1028, 687]]}, "center": {"63-165, T:0-1": [1008, 690]}},
-{"id": "11ptnlr", "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": {"14-21": [[929, 678], [929, 682], [933, 682], [933, 684], [943, 684], [943, 678]], "97-102": [[922, 741], [922, 749], [926, 749], [926, 741]], "85-90": [[1925, 725], [1925, 733], [1930, 733], [1930, 725]]}, "center": {"14-21": [936, 681], "97-102": [924, 745], "85-90": [1928, 729]}},
+{"id": "11ptnlr", "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": {"14-21": [[929, 678], [929, 682], [933, 682], [933, 684], [943, 684], [943, 678]], "97-102": [[922, 741], [922, 749], [926, 749], [926, 741]], "85-90": [[1925, 725], [1925, 733], [1930, 733], [1930, 725]], "70-84": [[1068, 885], [1068, 893], [1074, 893], [1074, 885]], "57-69": [[1066, 885], [1066, 893], [1074, 893], [1074, 885]]}, "center": {"14-21": [936, 681], "97-102": [924, 745], "85-90": [1928, 729], "70-84": [1071, 889], "57-69": [1070, 889]}},
{"id": "11ptkll", "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": {"21-29": [[905, 697], [905, 703], [921, 703], [921, 697]], "2-18": [[915, 678], [915, 684], [938, 684], [938, 678]], "33-40": [[885, 696], [885, 703], [884, 703], [884, 715], [892, 715], [892, 716], [897, 716], [897, 715], [902, 715], [902, 703], [901, 703], [896, 708], [892, 710], [890, 710], [887, 707], [887, 696]], "88-91": [[926, 741], [926, 747], [930, 747], [930, 741]], "62-64": [[1074, 735], [1074, 741], [1078, 741], [1078, 735]], "104-118": [[1030, 714], [1030, 717], [1036, 717], [1036, 714]], "136-162, T:0-1": [[1678, 618], [1678, 622], [1694, 622], [1694, 618]]}, "center": {"21-29": [913, 700], "2-18": [927, 681], "33-40": [898, 711], "88-91": [928, 744], "62-64": [1076, 738], "104-118": [1033, 716], "136-162, T:0-1": [1686, 620]}},
-{"id": "11pr3w5", "name": "Uruguay-Argentina heart", "description": "A heart depicting the flags of Uruguay and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["uruguay", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"26-124": [[980, 660], [977, 663], [977, 665], [982, 670], [987, 665], [987, 663], [984, 660]]}, "center": {"26-124": [982, 664]}},
+{"id": "11pr3w5", "name": "Uruguay-Argentina heart", "description": "A heart depicting the flags of Uruguay and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Uruguay", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["uruguay", "argentina", "Republica_Argentina"]}, "path": {"26-124": [[980, 660], [977, 663], [977, 665], [982, 670], [987, 665], [987, 663], [984, 660]]}, "center": {"26-124": [982, 664]}},
{"id": "11pr22i", "name": "Love Live! Sunshine!!", "description": "Love Live! Sunshine!! is an anime franchise about school girls forming a school idol club in their high school.", "links": {"website": ["https://www.lovelive-anime.jp/worldwide/", "https://en.wikipedia.org/wiki/Love_Live!_Sunshine!!"], "subreddit": ["LoveLive"]}, "path": {"72-75": [[907, 624], [907, 631], [910, 634], [967, 634], [970, 631], [970, 623], [968, 621], [910, 621]]}, "center": {"72-75": [939, 628]}},
{"id": "11puqh5", "name": "Anal", "description": "A word used to describe anything related to the anus. Often used colloquially to refer to excessive carefulness.", "links": {"website": ["https://www.merriam-webster.com/dictionary/anal", "https://www.urbandictionary.com/define.php?term=Anal"]}, "path": {"2-6": [[912, 669], [912, 675], [927, 675], [927, 674], [932, 674], [932, 667], [928, 667], [928, 668], [916, 668], [916, 669]]}, "center": {"2-6": [919, 671]}},
{"id": "11qfxhk", "name": "Mate", "description": "Mate is a caffeine-rich infused drink commonly seen in South American tradition, most prominently in Uruguay and Argentina. It is traditionally consumed from a dried and hollowed calabash gourd using a special straw known as a bombilla.\n\nThis cup of mate is being consumed by a cow, a common sight in Uruguay.", "links": {"website": ["https://en.wikipedia.org/wiki/Mate_(drink)"], "subreddit": ["uruguay"]}, "path": {"61-165, T:0-1": [[1104, 676], [1101, 679], [1101, 682], [1103, 684], [1116, 684], [1116, 680], [1118, 680], [1118, 674], [1116, 674], [1115, 673], [1115, 672], [1112, 669], [1109, 674], [1109, 678], [1108, 678], [1106, 676]]}, "center": {"61-165, T:0-1": [1113, 677]}},
{"id": "11puvkf", "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": {"57-62": [[908, 683], [908, 685], [907, 686], [904, 686], [904, 688], [921, 688], [921, 683]], "116-117": [[698, 795], [696, 797], [696, 798], [699, 801], [702, 798], [702, 797], [700, 795]], "97-99": [[922, 756], [922, 761], [925, 761], [925, 756]], "92-95": [[942, 756], [942, 761], [946, 761], [946, 756]], "76-87": [[1123, 765], [1123, 770], [1129, 770], [1129, 765]]}, "center": {"57-62": [913, 686], "116-117": [699, 798], "97-99": [924, 759], "92-95": [944, 759], "76-87": [1126, 768]}},
{"id": "11puvkg", "name": "Lapachos", "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/Tabebuia"], "subreddit": ["Paraguay"]}, "path": {"77-166, T:0-1": [[1132, 685], [1130, 687], [1130, 689], [1132, 691], [1133, 691], [1133, 695], [1166, 695], [1166, 694], [1165, 693], [1165, 691], [1167, 691], [1169, 689], [1169, 687], [1165, 684], [1137, 684], [1136, 685]]}, "center": {"77-166, T:0-1": [1150, 690]}},
{"id": "11puvkh", "name": "Flag of Luxembourg", "description": "Luxembourg is a country in Western Europe.", "links": {"website": ["https://en.wikipedia.org/wiki/Luxembourg", "https://en.wikipedia.org/wiki/Flag_of_Luxembourg"], "subreddit": ["Luxembourg"]}, "path": {"90-95": [[1117, 657], [1117, 661], [1135, 661], [1135, 657]], "14-26": [[183, 715], [183, 719], [194, 719], [194, 715]], "10-13": [[670, 728], [670, 735], [674, 735], [674, 732], [673, 731], [673, 728]]}, "center": {"90-95": [1126, 659], "14-26": [189, 717], "10-13": [672, 732]}},
-{"id": "11puvki", "name": "Spain-Argentina heart", "description": "A heart depicting the flags of Spain and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["esPlace", "spain", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"65-73": [[1153, 660], [1150, 663], [1150, 666], [1155, 671], [1160, 666], [1160, 663], [1157, 660]]}, "center": {"65-73": [1155, 665]}},
-{"id": "11puvkj", "name": "France-Argentina heart", "description": "A heart depicting the flags of France and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"59-63": [[1160, 659], [1157, 662], [1157, 663], [1163, 670], [1169, 663], [1169, 662], [1166, 659]]}, "center": {"59-63": [1163, 663]}},
-{"id": "11puvkk", "name": "Minnesota Vikings-Argentina heart", "description": "A heart depicting the colors of the Minnesota Vikings and the flag of Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Minnesota_Vikings", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["minnesotavikings", "argentina", "Republica_Argentina", "dankargentina"]}, "path": {"65-166, T:0-1": [[1287, 640], [1285, 642], [1285, 644], [1290, 649], [1295, 644], [1295, 642], [1293, 640]]}, "center": {"65-166, T:0-1": [1290, 644]}},
+{"id": "11puvki", "name": "Spain-Argentina heart", "description": "A heart depicting the flags of Spain and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Spain", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["esPlace", "spain", "argentina", "Republica_Argentina"]}, "path": {"65-73": [[1153, 660], [1150, 663], [1150, 666], [1155, 671], [1160, 666], [1160, 663], [1157, 660]]}, "center": {"65-73": [1155, 665]}},
+{"id": "11puvkj", "name": "France-Argentina heart", "description": "A heart depicting the flags of France and Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/France", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["placefrance", "franceplace", "placeFR", "france", "argentina", "Republica_Argentina"]}, "path": {"59-63": [[1160, 659], [1157, 662], [1157, 663], [1163, 670], [1169, 663], [1169, 662], [1166, 659]]}, "center": {"59-63": [1163, 663]}},
+{"id": "11puvkk", "name": "Minnesota Vikings-Argentina heart", "description": "A heart depicting the colors of the Minnesota Vikings and the flag of Argentina.", "links": {"website": ["https://en.wikipedia.org/wiki/Minnesota_Vikings", "https://en.wikipedia.org/wiki/Argentina"], "subreddit": ["minnesotavikings", "argentina", "Republica_Argentina"]}, "path": {"65-166, T:0-1": [[1287, 640], [1285, 642], [1285, 644], [1290, 649], [1295, 644], [1295, 642], [1293, 640]]}, "center": {"65-166, T:0-1": [1290, 644]}},
{"id": "11puvkl", "name": "AI: The Somnium Files", "description": "AI: The Somnium Files is a detective adventure game with visual novel elements. It was created by Kotaro Uchikoshi and released by Spike Chunsoft in 2019. A sequel, AI: The Somnium Files - nirvanA Initiative, was released in 2022.", "links": {"website": ["https://en.wikipedia.org/wiki/AI:_The_Somnium_Files"], "subreddit": ["aithesomniumfiles"]}, "path": {"87-164, T:0-1": [[1243, 668], [1243, 673], [1260, 673], [1260, 668]]}, "center": {"87-164, T:0-1": [1252, 671]}},
{"id": "11puvkm", "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": ["aithesomniumfiles"]}, "path": {"84-86": [[1254, 667], [1252, 669], [1252, 671], [1261, 671], [1261, 667]], "88-164, T:0-1": [[1246, 654], [1243, 657], [1243, 666], [1244, 666], [1246, 664], [1246, 657], [1247, 656], [1249, 656], [1249, 657], [1253, 657], [1253, 656], [1256, 656], [1257, 657], [1257, 659], [1256, 660], [1256, 661], [1257, 662], [1257, 663], [1259, 665], [1260, 665], [1260, 654]]}, "center": {"84-86": [1257, 669], "88-164, T:0-1": [1258, 661]}},
{"id": "11puvkn", "name": "Rose of Sharon", "description": "The Rose of Sharon (hibiscus syriacus), known in Korean as 무궁화 (mugunghwa), is the national flower of South Korea.", "links": {"website": ["https://www.mois.go.kr/eng/sub/a03/nationalSymbol_3/screen.do", "https://en.wikipedia.org/wiki/Hibiscus_syriacus"], "subreddit": ["Korea_Place", "southkorea"]}, "path": {"85-165, T:0-1": [[1200, 665], [1200, 674], [1241, 674], [1241, 665]]}, "center": {"85-165, T:0-1": [1221, 670]}},
@@ -10158,7 +10130,7 @@
{"id": "11y79ti", "name": "Pink Floyd", "description": "Pink Floyd is an English progressive rock band.", "links": {"website": ["https://www.pinkfloyd.com", "https://en.wikipedia.org/wiki/Pink_Floyd"], "subreddit": ["pinkfloyd"]}, "path": {"83-96": [[1665, 692], [1665, 704], [1685, 704], [1685, 698], [1683, 698], [1683, 692]]}, "center": {"83-96": [1675, 698]}},
{"id": "11y715q", "name": "Shut the fuck up TERFs!", "description": "A message expressing disapproval of TERFs (trans-exclusionary radical feminists), people who advocate for women's equality but don't consider transgender women to be women.", "links": {"website": ["https://en.wikipedia.org/wiki/TERF"]}, "path": {"121-127, 130-132": [[1661, 622], [1661, 635], [1693, 635], [1693, 623], [1691, 621], [1687, 621], [1686, 622]]}, "center": {"121-127, 130-132": [1677, 628]}},
{"id": "11y7r4h", "name": "xQc", "description": "xQc (a.k.a. xQcOW; real name Félix Lengyel) is a popular Twitch streamer. His logo is a depiction of the character Winston from the game Overwatch.\n\nxQc was known by many as the public enemy of r/place, responsible for the many wars and destruction.", "links": {"website": ["https://www.twitch.tv/xqcow", "https://en.wikipedia.org/wiki/XQc"]}, "path": {"88": [[579, 700], [572, 705], [572, 817], [585, 827], [663, 827], [663, 814], [666, 801], [651, 788], [650, 738], [614, 720], [595, 700]], "78-79": [[1675, 691], [1675, 779], [1760, 779], [1760, 691]]}, "center": {"88": [611, 783], "78-79": [1718, 735]}},
-{"id": "11y7r4i", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"153-154": [[1720, 603], [1718, 605], [1718, 606], [1721, 609], [1724, 606], [1724, 605], [1722, 603]], "162-167": [[1994, 689], [1992, 691], [1992, 692], [1995, 695], [1998, 692], [1998, 691], [1996, 689]]}, "center": {"153-154": [1721, 606], "162-167": [1995, 692]}},
+{"id": "11y7r4i", "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": ["placefrance", "franceplace", "placeFR", "france"]}, "path": {"153-154": [[1720, 603], [1718, 605], [1718, 606], [1721, 609], [1724, 606], [1724, 605], [1722, 603]], "71-79": [[1134, 871], [1132, 873], [1132, 874], [1136, 878], [1140, 874], [1140, 873], [1138, 871], [1152, 871], [1150, 873], [1150, 874], [1154, 878], [1158, 874], [1158, 873], [1156, 871], [1164, 871], [1162, 873], [1162, 874], [1166, 878], [1170, 874], [1170, 873], [1168, 871]], "63-70": [[1134, 871], [1132, 873], [1132, 874], [1136, 878], [1172, 878], [1176, 874], [1176, 873], [1174, 871], [1182, 871], [1182, 876], [1184, 878], [1188, 874], [1188, 873], [1186, 871]], "105-112, 144-148": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]], "162-167": [[1994, 689], [1992, 691], [1992, 692], [1995, 695], [1998, 692], [1998, 691], [1996, 689]]}, "center": {"153-154": [1721, 606], "71-79": [1136, 874], "63-70": [1157, 875], "105-112, 144-148": [1010, 874], "162-167": [1995, 692]}},
{"id": "twjs3v", "name": "Pittsburgh Penguins", "description": "The Pittsburgh Penguins are a National Hockey League (NHL) team based in Pittsburgh, Pennsylvania, United States. This team logo was used in the 1990s.", "links": {"website": ["http://nhl.com/penguins", "https://en.wikipedia.org/wiki/Pittsburgh_Penguins"], "subreddit": ["penguins", "pittsburgh"]}, "path": {"59-123": [[1766, 646], [1766, 647], [1783, 664], [1794, 664], [1800, 657], [1800, 644], [1790, 644], [1789, 643], [1787, 643], [1782, 638], [1778, 638], [1775, 640], [1773, 640], [1772, 641], [1770, 641], [1770, 643], [1772, 643], [1775, 645], [1775, 646]], "124-165, T:0-1": [[1765, 644], [1784, 663], [1803, 644], [1803, 643], [1787, 643], [1782, 638], [1777, 638], [1777, 639], [1774, 639], [1774, 640], [1776, 642], [1776, 643], [1765, 643]]}, "center": {"59-123": [1787, 654], "124-165, T:0-1": [1784, 651]}},
{"id": "11y7r4j", "name": "412", "description": "412 is the area code used for telephone numbers in the city of Pittsburg.", "links": {"website": ["https://en.wikipedia.org/wiki/Area_code_412"], "subreddit": ["pittsburgh"]}, "path": {"130-166, 76-127, T:0-1": [[1765, 657], [1765, 661], [1767, 661], [1767, 663], [1775, 663], [1775, 657]]}, "center": {"130-166, 76-127, T:0-1": [1770, 660]}},
{"id": "twjtcp", "name": "Pittsburgh Pirates", "description": "The Pittsburgh Pirates, a.k.a. the Buccos, are a Major League Baseball (MLB) team from Pittsburgh, Pennsylvania, United States.", "links": {"website": ["https://en.wikipedia.org/wiki/Pittsburgh_Pirates"], "subreddit": ["buccos", "pittsburgh"]}, "path": {"113-127, 132-166, T:0-1": [[1797, 647], [1797, 664], [1808, 664], [1808, 657], [1809, 657], [1809, 647]]}, "center": {"113-127, 132-166, T:0-1": [1803, 653]}},
@@ -10203,9 +10175,9 @@
{"id": "128f63s", "name": "Big University of South Carolina Logo", "description": "The logo for the University of South Carolina. During the night, while Germany was asleep, this logo was carved out of a portion of their flag. The space it occupied was later reclaimed by Germany. This is the larger of the two UofSC logos on the canvas.", "links": {"website": ["https://sc.edu"], "subreddit": ["Gamecocks"], "discord": ["fDmRfTFN"]}, "path": {"127-141": [[1300, 1747], [1314, 1747], [1314, 1765], [1300, 1765]]}, "center": {"127-141": [1307, 1756]}},
{"id": "1290btg", "name": "r/GawrGura", "description": "Subreddit focused on VTuber Gawr Gura.", "links": {"subreddit": ["GawrGura", "Hololive"]}, "path": {"6-165, T:0-1": [[227, 774], [227, 781], [267, 781], [267, 774]]}, "center": {"6-165, T:0-1": [247, 778]}},
{"id": "128xp74", "name": "r/okkolegauposledzony", "description": "r/okkolegauposledzony (abbreviated as r/okku) is a Polish spinoff of meme subreddit r/okbuddyretard. It's one of the largest Polish-speaking ironic meme subreddits, mostly free of politics in contrast to the main subs. An unsuccessful attempt was made to extend the banner to its full name. Unfortunately, its existence on r/place was short-lived and it disappeared the same day due to lack of maintenance.", "links": {"subreddit": ["okkolegauposledzony"]}, "path": {"9-20": [[452, 331], [452, 337], [478, 337], [478, 331]]}, "center": {"9-20": [465, 334]}},
-{"id": "128utfz", "name": "Hololive Indonesia", "description": "Hololive Indonesia is the Indonesian branch of VTuber agency Hololive.", "links": {"website": ["https://www.youtube.com/channel/UCfrWoRGlawPQDQxxeIDRP0Q", "https://hololive.wiki/wiki/Hololive_Indonesia"], "subreddit": ["Hololive"]}, "path": {"31-75": [[294, 748], [294, 752], [302, 752], [302, 748]], "78-165, T:0-1": [[294, 748], [294, 753], [302, 753], [302, 748]]}, "center": {"31-75": [298, 750], "78-165, T:0-1": [298, 751]}},
-{"id": "128us0p", "name": "Hololive English", "description": "Hololive English is the English-speaking branch of VTuber agency Hololive.", "links": {"website": ["https://en.hololive.tv/", "https://hololive.wiki/wiki/Hololive_English"], "subreddit": ["Hololive"]}, "path": {"31-75, 78-165, T:0-1": [[294, 743], [294, 748], [302, 748], [302, 743]]}, "center": {"31-75, 78-165, T:0-1": [298, 746]}},
-{"id": "128uqzl", "name": "Hololive Japan", "description": "Hololive Japan is the Japanese-speaking branch of VTuber agency Hololive.", "links": {"website": ["https://www.hololive.tv/", "https://hololive.wiki/wiki/Hololive_Japan"], "subreddit": ["Hololive"]}, "path": {"31-75, 78-165, T:0-1": [[294, 738], [294, 743], [302, 743], [302, 738]]}, "center": {"31-75, 78-165, T:0-1": [298, 741]}},
+{"id": "128utfz", "name": "Hololive Indonesia", "description": "Hololive Indonesia is the Indonesian branch of VTuber agency Hololive.", "links": {"website": ["https://www.youtube.com/channel/UCfrWoRGlawPQDQxxeIDRP0Q", "https://hololive.wiki/wiki/Hololive_Indonesia"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"31-75": [[294, 748], [294, 752], [302, 752], [302, 748]], "78-165, T:0-1": [[294, 748], [294, 753], [302, 753], [302, 748]]}, "center": {"31-75": [298, 750], "78-165, T:0-1": [298, 751]}},
+{"id": "128us0p", "name": "Hololive English", "description": "Hololive English is the English-speaking branch of VTuber agency Hololive.", "links": {"website": ["https://en.hololive.tv/", "https://hololive.wiki/wiki/Hololive_English"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"31-75, 78-165, T:0-1": [[294, 743], [294, 748], [302, 748], [302, 743]]}, "center": {"31-75, 78-165, T:0-1": [298, 746]}},
+{"id": "128uqzl", "name": "Hololive Japan", "description": "Hololive Japan is the Japanese-speaking branch of VTuber agency Hololive.", "links": {"website": ["https://www.hololive.tv/", "https://hololive.wiki/wiki/Hololive_Japan"], "subreddit": ["Hololive"], "discord": ["holofans"]}, "path": {"31-75, 78-165, T:0-1": [[294, 738], [294, 743], [302, 743], [302, 738]]}, "center": {"31-75, 78-165, T:0-1": [298, 741]}},
{"id": "12928cm", "name": "r/Hololive", "description": "Subreddit focused on the VTuber agency Hololive.", "links": {"subreddit": ["Hololive"]}, "path": {"2-6": [[202, 772], [202, 778], [241, 778], [241, 772]]}, "center": {"2-6": [222, 775]}},
{"id": "twhtgw", "name": "BiH-France-Trackmania alliance", "description": "A heart symbolizing the alliance between the Bosnia and Herzegovina, France, and Trackmania communities.", "links": {"website": ["https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "https://en.wikipedia.org/wiki/France", "https://www.trackmania.com/"], "subreddit": ["bih", "bosnia", "placefrance", "franceplace", "placeFR", "france", "trackmania"]}, "path": {"49-75": [[371, 752], [368, 755], [368, 757], [373, 762], [378, 757], [378, 755], [375, 752]], "79-166, T": [[370, 753], [367, 756], [367, 758], [373, 764], [379, 758], [379, 756], [376, 753]]}, "center": {"49-75": [373, 756], "79-166, T": [373, 758]}},
{"id": "129vfo0", "name": "Bosanski Ljiljan", "description": "The Bosanski Ljiljan is a lily commonly used as a symbol of Bosnia and Herzegovina", "links": {"website": ["https://en.wikipedia.org/wiki/Lilium_bosniacum"], "subreddit": ["bih", "bosnia"]}, "path": {"108, 51-76, 92-102": [[373, 763], [370, 766], [370, 767], [367, 770], [367, 773], [370, 773], [372, 777], [374, 777], [376, 773], [379, 773], [379, 770], [376, 767], [376, 766]], "153-166, T:0-1": [[326, 748], [323, 751], [323, 753], [321, 755], [321, 759], [323, 759], [326, 763], [329, 760], [329, 759], [330, 759], [332, 757], [332, 756], [329, 753], [329, 751]]}, "center": {"108, 51-76, 92-102": [373, 770], "153-166, T:0-1": [326, 756]}},
@@ -10236,12 +10208,12 @@
{"id": "12b4kf7", "name": "Vix Gaming Isle", "description": "A small group of Filipino gamers who wanted to have a place in the final canvas but failed in doing so.", "links": {}, "path": {"122": [[1813, 1209], [1817, 1209], [1817, 1210], [1818, 1210], [1818, 1211], [1819, 1211], [1819, 1215], [1818, 1215], [1818, 1216], [1817, 1216], [1817, 1217], [1813, 1217], [1813, 1216], [1812, 1216], [1812, 1215], [1811, 1215], [1811, 1211], [1812, 1211], [1812, 1210], [1813, 1210]]}, "center": {"122": [1815, 1213]}},
{"id": "12b4kf8", "name": "Buffalo Bills-Switzerland heart", "description": "A heart with the colors of the Buffalo Bills and the flag of Switzerland.", "links": {"website": ["https://www.buffalobills.com/", "https://en.wikipedia.org/wiki/Switzerland"], "subreddit": ["716Place", "buffalobills", "Switzerland", "SwissNeutralityZone"], "discord": ["JS9eFKty"]}, "path": {"63-86": [[547, 712], [545, 714], [545, 716], [549, 720], [553, 716], [553, 714], [551, 712]]}, "center": {"63-86": [549, 715]}},
{"id": "12b4kf9", "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": {"27-32": [[697, 794], [697, 799], [705, 799], [705, 793], [700, 793], [700, 794]], "7-14": [[704, 780], [704, 783], [706, 786], [708, 786], [708, 782], [707, 780]], "102-107": [[695, 786], [695, 790], [697, 790], [701, 787], [701, 783], [700, 783], [696, 786]], "94-100": [[934, 750], [934, 756], [938, 756], [938, 750]], "66-69": [[938, 750], [938, 756], [942, 756], [942, 750]], "80-90": [[1930, 717], [1930, 723], [1999, 723], [1999, 717]], "118-166, T:0-1": [[699, 784], [695, 787], [695, 789], [699, 789], [700, 788], [703, 788], [703, 792], [700, 794], [696, 794], [696, 796], [699, 799], [699, 801], [701, 801], [701, 799], [705, 799], [705, 791], [703, 791], [703, 788], [701, 788], [701, 784]]}, "center": {"27-32": [702, 796], "7-14": [706, 783], "102-107": [697, 787], "94-100": [936, 753], "66-69": [940, 753], "80-90": [1965, 720], "118-166, T:0-1": [702, 796]}},
-{"id": "12b4kfa", "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"]}, "path": {"111-136": [[689, 765], [687, 767], [687, 769], [698, 769], [698, 768], [694, 765]], "105-106": [[690, 764], [690, 768], [693, 768], [693, 764]], "92-101": [[931, 772], [931, 776], [945, 776], [945, 772]], "1-2": [[140, 879], [140, 885], [149, 885], [153, 882], [153, 879]]}, "center": {"111-136": [693, 767], "105-106": [692, 766], "92-101": [938, 774], "1-2": [147, 882]}},
+{"id": "12b4kfa", "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"]}, "path": {"111-136": [[689, 765], [687, 767], [687, 769], [698, 769], [698, 768], [694, 765]], "105-106": [[690, 764], [690, 768], [693, 768], [693, 764]], "92-101": [[931, 772], [931, 776], [945, 776], [945, 772]], "1-2": [[140, 879], [140, 885], [149, 885], [153, 882], [153, 879]], "56-65": [[1806, 891], [1806, 914], [1867, 914], [1867, 895], [1863, 891], [1858, 890], [1822, 890], [1821, 891]]}, "center": {"111-136": [693, 767], "105-106": [692, 766], "92-101": [938, 774], "1-2": [147, 882], "56-65": [1837, 902]}},
{"id": "12b4kfb", "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", "https://en.wikipedia.org/wiki/Anzac_Day"], "subreddit": ["straya", "australia", "aus_place", "placeaustralia"]}, "path": {"86-97": [[673, 749], [671, 751], [671, 758], [670, 758], [670, 760], [690, 760], [690, 758], [689, 758], [689, 753], [687, 753], [687, 751], [685, 749]]}, "center": {"86-97": [680, 755]}},
-{"id": "12b4kfc", "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", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["bisexual"]}, "path": {"72-92": [[701, 793], [701, 795], [703, 797], [705, 795], [705, 793]], "158-166, T:0-1": [[705, 796], [705, 798], [707, 800], [709, 798], [709, 796]]}, "center": {"72-92": [703, 795], "158-166, T:0-1": [707, 798]}},
+{"id": "12b4kfc", "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", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["bisexual"]}, "path": {"72-92": [[701, 793], [701, 795], [703, 797], [705, 795], [705, 793]], "60-71": [[1845, 873], [1841, 877], [1841, 878], [1843, 880], [1847, 880], [1849, 878], [1849, 877]], "158-166, T:0-1": [[705, 796], [705, 798], [707, 800], [709, 798], [709, 796]]}, "center": {"72-92": [703, 795], "60-71": [1845, 877], "158-166, T:0-1": [707, 798]}},
{"id": "12czvqu", "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", "ItalyPlace", "placeitaly", "Italia"], "discord": ["4jbTuR2"]}, "path": {"7-18": [[670, 719], [670, 729], [677, 729], [677, 719]], "56-60": [[670, 731], [670, 735], [677, 735], [677, 731]], "95-106": [[1090, 714], [1090, 721], [1094, 721], [1094, 714]], "107-108": [[1090, 714], [1090, 716], [1094, 716], [1094, 714]], "84-94": [[1090, 714], [1090, 717], [1094, 717], [1094, 714]], "72-73": [[1161, 780], [1161, 797], [1165, 797], [1165, 793], [1161, 793], [1161, 783], [1165, 783], [1165, 780]]}, "center": {"7-18": [674, 724], "56-60": [674, 733], "95-106": [1092, 718], "107-108": [1092, 715], "84-94": [1092, 716], "72-73": [1163, 795]}},
-{"id": "12czppx", "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"], "subreddit": ["NonBinary"]}, "path": {"28-43": [[692, 773], [692, 775], [695, 778], [698, 775], [698, 773]]}, "center": {"28-43": [695, 775]}},
-{"id": "12czoh9", "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": {"71-73, 85-112": [[705, 784], [705, 798], [707, 800], [709, 798], [709, 784]], "56-59": [[705, 781], [705, 795], [707, 797], [709, 795], [709, 781]], "26-42": [[693, 769], [692, 770], [692, 771], [695, 774], [698, 771], [698, 769]], "158-166, T:0-1": [[705, 793], [705, 795], [707, 797], [709, 795], [709, 793]]}, "center": {"71-73, 85-112": [707, 792], "56-59": [707, 789], "26-42": [695, 771], "158-166, T:0-1": [707, 795]}},
+{"id": "12czppx", "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"], "subreddit": ["NonBinary"]}, "path": {"28-43": [[692, 773], [692, 775], [695, 778], [698, 775], [698, 773]], "78-87": [[1300, 871], [1298, 873], [1298, 874], [1302, 878], [1306, 874], [1306, 873], [1304, 871]], "64-67": [[1498, 871], [1496, 873], [1496, 874], [1500, 878], [1504, 874], [1504, 873], [1502, 871]]}, "center": {"28-43": [695, 775], "78-87": [1302, 874], "64-67": [1500, 874]}},
+{"id": "12czoh9", "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": {"56-59": [[705, 781], [705, 795], [707, 797], [709, 795], [709, 781]], "26-42": [[693, 769], [692, 770], [692, 771], [695, 774], [698, 771], [698, 769]], "65-69": [[1881, 873], [1877, 877], [1877, 878], [1879, 880], [1883, 880], [1885, 878], [1885, 877]], "71-73, 85-112": [[705, 784], [705, 798], [707, 800], [709, 798], [709, 784]], "158-166, T:0-1": [[705, 793], [705, 795], [707, 797], [709, 795], [709, 793]]}, "center": {"56-59": [707, 789], "26-42": [695, 771], "65-69": [1881, 877], "71-73, 85-112": [707, 792], "158-166, T:0-1": [707, 795]}},
{"id": "12c7dtl", "name": "Walter Johnson Crew", "description": "A high school rowing club based in Bethesda, Maryland, United States.", "links": {"website": ["http://walterjohnsoncrew.org/"]}, "path": {"121-130": [[1512, 407], [1525, 407], [1525, 413], [1512, 413]]}, "center": {"121-130": [1519, 410]}},
{"id": "12clq29", "name": "r/de", "description": "r/de is a subreddit and community for German-speaking people, including people from Germany, Austria, Switzerland, Liechtenstein, Luxembourg. Also the two German-speaking Belgians out there.", "links": {"subreddit": ["de"]}, "path": {"13-25": [[0, 849], [0, 855], [16, 855], [16, 849]], "36-166, T:0-1": [[0, 849], [16, 849], [16, 855], [0, 855]]}, "center": {"13-25": [8, 852], "36-166, T:0-1": [8, 852]}},
{"id": "12d0c0b", "name": "Newfoundland Tricolour", "description": "The Newfoundland Tricolour is the unofficial yet totally powerful flag of Newfoundland and Labrador, a Canadian province.", "links": {"website": ["https://en.wikipedia.org/wiki/Newfoundland_Tricolour", "https://en.wikipedia.org/wiki/Newfoundland_and_Labrador"], "subreddit": ["newfoundland"]}, "path": {"72-75": [[670, 726], [670, 731], [677, 731], [677, 726]]}, "center": {"72-75": [674, 729]}},
@@ -10263,13 +10235,13 @@
{"id": "12gqst5", "name": "Genderqueer flag", "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": {"73-87": [[930, 757], [930, 761], [934, 761], [934, 757]]}, "center": {"73-87": [932, 759]}},
{"id": "12gqpn3", "name": "Demiboy flag", "description": "A pride flag representing the demiboy community. A demiboy is an individual who partially identifies as a man.", "links": {"website": ["https://gender.fandom.com/wiki/Demiboy"]}, "path": {"87-92": [[934, 756], [934, 762], [937, 762], [937, 756]]}, "center": {"87-92": [936, 759]}},
{"id": "12gq7fi", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"59": [[1997, 770], [1997, 780], [2000, 780], [2000, 772], [1998, 770]], "96-103": [[938, 756], [938, 762], [942, 762], [942, 756]], "104-120": [[939, 757], [939, 761], [941, 761], [941, 757]], "76-95": [[938, 757], [938, 761], [942, 761], [942, 757]], "60-75": [[934, 757], [934, 761], [942, 761], [942, 757]], "30-33": [[923, 742], [923, 746], [929, 746], [929, 742]], "23-29, 34-38": [[923, 742], [923, 746], [925, 746], [925, 742]]}, "center": {"59": [1999, 775], "96-103": [940, 759], "104-120": [940, 759], "76-95": [940, 759], "60-75": [938, 759], "30-33": [926, 744], "23-29, 34-38": [924, 744]}},
-{"id": "12gr4mx", "name": "Polyamorous flag", "description": "Polyamory is the practice of engaging in multiple romantic (and typically sexual) relationships, with the consent of all the people involved.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory"]}, "path": {"75-101": [[938, 741], [938, 747], [942, 747], [942, 741]]}, "center": {"75-101": [940, 744]}},
+{"id": "12gr4mx", "name": "Polyamory flag", "description": "Polyamory is the practice of engaging in multiple romantic (and typically sexual) relationships, with the consent of all the people involved.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["polyamory"]}, "path": {"75-101": [[938, 741], [938, 747], [942, 747], [942, 741]]}, "center": {"75-101": [940, 744]}},
{"id": "12gr0gd", "name": "Omnisexual flag", "description": "An omnisexual pride flag. Omnisexuality (often shortened to omni) is a multisexual orientation defined as the sexual, romantic or otherwise alterous attraction to all gender, specifically with gender playing a role in one's attraction. All omnisexuals have a gender preference; they can have small or large preferences, and they may change over time. The romantic equivalent is omniromantic.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Omnisexual"]}, "path": {"75-93": [[930, 741], [930, 747], [934, 747], [934, 741]], "68-69": [[951, 726], [951, 732], [953, 732], [953, 726]]}, "center": {"75-93": [932, 744], "68-69": [952, 729]}},
{"id": "12gqx7b", "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-75": [[922, 756], [922, 761], [926, 761], [926, 756]], "76-84": [[922, 756], [922, 761], [930, 761], [930, 756]], "85-87": [[926, 756], [926, 761], [930, 761], [930, 756]], "29-37": [[935, 735], [935, 740], [937, 740], [937, 735]], "54-56, 60-64": [[923, 756], [923, 761], [925, 761], [925, 756]]}, "center": {"66-75": [924, 759], "76-84": [926, 759], "85-87": [928, 759], "29-37": [936, 738], "54-56, 60-64": [924, 759]}},
-{"id": "12gr8tl", "name": "Genderfluid flag", "description": "A pride flag representing the genderfluid community. Genderfluid 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://lgbta.miraheze.org/wiki/Genderfluid"]}, "path": {"70-94": [[950, 726], [950, 732], [954, 732], [954, 726]], "44-49": [[850, 873], [850, 879], [856, 879], [856, 873]]}, "center": {"70-94": [952, 729], "44-49": [853, 876]}},
+{"id": "12gr8tl", "name": "Genderfluid flag", "description": "A pride flag representing the genderfluid community. Genderfluid 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://lgbta.miraheze.org/wiki/Genderfluid"]}, "path": {"70-94": [[950, 726], [950, 732], [954, 732], [954, 726]], "44-49": [[850, 873], [850, 879], [856, 879], [856, 873]], "61-63": [[1074, 886], [1074, 892], [1076, 892], [1076, 886], [1092, 886], [1092, 889], [1098, 889], [1098, 886]]}, "center": {"70-94": [952, 729], "44-49": [853, 876], "61-63": [1094, 888]}},
{"id": "12gr7l1", "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": {"85-90": [[942, 741], [942, 747], [946, 747], [946, 741]]}, "center": {"85-90": [944, 744]}},
{"id": "12gs17i", "name": "Fuck Dallas", "description": "A disparaging message referencing the Dallas Cowboys American football team. The Philadelphia Eagles and the Dallas Cowboys have a long-running rivalry.", "links": {"website": ["http://www.philadelphiaeagles.com/", "https://en.wikipedia.org/wiki/Cowboys%E2%80%93Eagles_rivalry"], "subreddit": ["eagles"]}, "path": {"7-21": [[926, 773], [926, 780], [970, 780], [970, 773]]}, "center": {"7-21": [948, 777]}},
-{"id": "12grnlz", "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": {"15-23": [[922, 735], [922, 741], [926, 741], [926, 735]], "24-34": [[923, 735], [923, 741], [925, 741], [925, 735]], "96-104": [[1123, 766], [1123, 772], [1128, 772], [1128, 766]]}, "center": {"15-23": [924, 738], "24-34": [924, 738], "96-104": [1126, 769]}},
+{"id": "12grnlz", "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": {"15-23": [[922, 735], [922, 741], [926, 741], [926, 735]], "24-34": [[923, 735], [923, 741], [925, 741], [925, 735]], "96-104": [[1123, 766], [1123, 772], [1128, 772], [1128, 766]], "78-84": [[1466, 865], [1466, 869], [1472, 869], [1472, 865]]}, "center": {"15-23": [924, 738], "24-34": [924, 738], "96-104": [1126, 769], "78-84": [1469, 867]}},
{"id": "12grhwn", "name": "Newfoundland Tricolour", "description": "The Newfoundland Tricolour is the unofficial yet totally powerful flag of Newfoundland and Labrador, a Canadian province.", "links": {"website": ["https://en.wikipedia.org/wiki/Newfoundland_Tricolour", "https://en.wikipedia.org/wiki/Newfoundland_and_Labrador"], "subreddit": ["newfoundland"]}, "path": {"49-79": [[964, 775], [964, 780], [974, 780], [974, 775]]}, "center": {"49-79": [969, 778]}},
{"id": "12hxrmn", "name": "Gay car", "description": "A car in the colors of the gay pride flag. Gay people are men attracted to other men.", "links": {"website": ["https://en.wikipedia.org/wiki/Gay"], "subreddit": ["fuckcars"], "discord": ["w84VM2fbGs"]}, "path": {"100-117": [[1059, 792], [1059, 794], [1065, 794], [1065, 792]]}, "center": {"100-117": [1062, 793]}},
{"id": "12hxm27", "name": "OMORI-r/fuckcars heart", "description": "A heart with the colors of OMORI's WHITE SPACE and the r/fuckcars parking lot.", "links": {"website": ["https://www.omori-game.com/"], "subreddit": ["OMORI", "fuckcars"], "discord": ["w84VM2fbGs", "ypSr9JG2ht"]}, "path": {"162-165, T:0-1": [[1090, 797], [1087, 801], [1087, 803], [1092, 808], [1097, 803], [1097, 800], [1094, 797]]}, "center": {"162-165, T:0-1": [1092, 802]}},
@@ -10343,7 +10315,7 @@
{"id": "12skny9", "name": "Finn", "description": "Finn is the mascot of the snack cracker brand Goldfish.", "links": {"website": ["https://hero.fandom.com/wiki/Finn_(Goldfish)", "https://www.pepperidgefarm.com/product-categories/goldfish-crackers/", "https://en.wikipedia.org/wiki/Goldfish_(cracker)"]}, "path": {"96-166, T:0-1": [[1778, 673], [1775, 676], [1775, 683], [1778, 686], [1780, 684], [1781, 684], [1784, 687], [1788, 687], [1794, 681], [1794, 678], [1788, 672], [1784, 672], [1781, 675], [1780, 675]]}, "center": {"96-166, T:0-1": [1786, 679]}},
{"id": "12tmucn", "name": "Leekspin", "description": "This leek is associated with Leekspin (a.k.a. Loituma Girl), a 2006 flash animation loop of Orihime, a farmer girl character from Japanese animated series Bleach, spinning a leek while an acapella rendition of Ievan Pollka by Finnish band Loituma played in the background. Afterwards, in 2007, a Vocaloid cover of Ievan Polkka was released by music producer Otomedia, utilizing the then-newly released Hatsune Miku. This cemented the correlation between Miku and the leek.", "links": {"website": ["https://www.youtube.com/watch?v=DTSkygD1wR0"], "subreddit": ["hatsune", "Volcaloid"]}, "path": {"58-166, T:0-1": [[1815, 741], [1815, 746], [1811, 750], [1811, 752], [1812, 752], [1820, 744], [1820, 743], [1819, 741]]}, "center": {"58-166, T:0-1": [1817, 744]}},
{"id": "12uac19", "name": "Destroyed Italy Flag", "description": "A tiny flag of Italy", "links": {"subreddit": ["Italy"]}, "path": {"164": [[1922, 1102], [1925, 1102], [1925, 1101], [1933, 1101], [1932, 1099], [1932, 1097], [1933, 1097], [1933, 1094], [1932, 1094], [1932, 1093], [1925, 1093], [1924, 1092], [1923, 1094], [1923, 1092], [1922, 1092], [1921, 1095], [1921, 1102]]}, "center": {"164": [1927, 1097]}},
-{"id": "12ua8tz", "name": "Minecraft Heart", "description": "A red heart from Minecraft", "links": {"subreddit": ["Minecraft"]}, "path": {"164": [[1958, 1116], [1962, 1112], [1962, 1110], [1961, 1109], [1960, 1108], [1959, 1108], [1958, 1109], [1956, 1108], [1955, 1109], [1954, 1110], [1954, 1112]]}, "center": {"164": [1958, 1112]}},
+{"id": "12ua8tz", "name": "Minecraft heart", "description": "This heart represents the player's health in the game Minecraft.", "links": {"website": ["https://minecraft.fandom.com/wiki/Health"], "subreddit": ["Minecraft"]}, "path": {"164": [[1958, 1116], [1962, 1112], [1962, 1110], [1961, 1109], [1960, 1108], [1959, 1108], [1958, 1109], [1956, 1108], [1955, 1109], [1954, 1110], [1954, 1112]]}, "center": {"164": [1958, 1112]}},
{"id": "12ual6f", "name": "AradirOff", "description": "AradirOff is a Chilean YouTuber who created a small art with his Twitch community fighting against the among us, he put his art close to WorldBox since it is one of the games he plays the most on his channel.", "links": {"website": ["https://www.youtube.com/@aradiroff", "https://www.twitch.tv/aradiroff"], "subreddit": ["AradirOff"], "discord": ["aradir"]}, "path": {"164": [[530, 1699], [530, 1683], [535, 1682], [550, 1682], [550, 1699]]}, "center": {"164": [540, 1691]}},
{"id": "12unaga", "name": "Orb", "description": "Orbs are the premium currency in the game Fire Emblem Heroes.", "links": {"website": ["https://feheroes.fandom.com/wiki/Orb"], "subreddit": ["FireEmblemHeroes", "fireemblem"]}, "path": {"73-167, T:0-1": [[1853, 782], [1850, 785], [1850, 787], [1853, 790], [1855, 790], [1858, 787], [1858, 785], [1855, 782]]}, "center": {"73-167, T:0-1": [1854, 786]}},
{"id": "12un874", "name": "Movement Star", "description": "Movement Stars are a game mechanic in Fire Emblem: Tharcia 776 that occasionally grants a unit an additional action in a turn. The additional turn is denoted by a music note above the character's head.", "links": {"website": ["https://fireemblem.fandom.com/wiki/Movement_Star"], "subreddit": ["fireemblem"]}, "path": {"117-166, T:0-1": [[1847, 779], [1847, 781], [1849, 783], [1849, 786], [1850, 786], [1853, 783], [1854, 783], [1855, 782], [1855, 779], [1853, 777], [1849, 777]]}, "center": {"117-166, T:0-1": [1851, 780]}},
@@ -10356,8 +10328,8 @@
{"id": "12wj6dl", "name": "Eru Chitanda", "description": "Eru Chitanda is a character from the Classic Literature Club novel series, written by Honobu Yonezawa. The first novel in the series, Hyouka, was adapted into an anime by Kyoto Animation.", "links": {"website": ["https://hyouka.fandom.com/wiki/Eru_Chitanda"], "subreddit": ["kyoani"]}, "path": {"129-167, T:0-1": [[1911, 744], [1911, 752], [1919, 752], [1919, 744]]}, "center": {"129-167, T:0-1": [1915, 748]}},
{"id": "12wlu28", "name": "r/place_the_wave", "description": "Subreddit focused on placing the painting \"The Great Wave off Kanagawa\" on r/place.", "links": {"subreddit": ["place_the_wave"]}, "path": {"147-167, T:0-1": [[1920, 769], [1920, 775], [1943, 775], [1943, 776], [1960, 776], [1960, 775], [1974, 775], [1974, 769]]}, "center": {"147-167, T:0-1": [1947, 773]}},
{"id": "12wl1e4", "name": "Tohru", "description": "Tohru, a.k.a. Tohru Kobayashi, is one of the main characters of the manga Miss Kobayashi's Dragon Maid (Japanese: Kobayashi-san Chi no Meidoragon). The series was adapted into an anime by Kyoto Animation.", "links": {"website": ["https://maid-dragon.fandom.com/wiki/Tohru"], "subreddit": ["kyoani"]}, "path": {"129-145": [[1904, 751], [1904, 760], [1912, 760], [1912, 751]], "117-120": [[1981, 760], [1981, 763], [1980, 764], [1980, 769], [1988, 769], [1988, 760]]}, "center": {"129-145": [1908, 756], "117-120": [1984, 765]}},
-{"id": "12wqx75", "name": "Genderqueer flag", "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": {"84-90": [[1942, 722], [1942, 726], [1999, 726], [1999, 722]]}, "center": {"84-90": [1971, 724]}},
-{"id": "12wqvpw", "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": {"83-90": [[1930, 727], [1930, 732], [1999, 732], [1999, 727]], "73-76": [[1943, 744], [1943, 749], [1949, 749], [1949, 744]], "8-14": [[518, 881], [514, 884], [516, 886], [534, 886], [534, 883], [532, 881]]}, "center": {"83-90": [1965, 730], "73-76": [1946, 747], "8-14": [524, 884]}},
+{"id": "12wqx75", "name": "Genderqueer flag", "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": {"84-90": [[1942, 722], [1942, 726], [1999, 726], [1999, 722]], "58-61": [[1046, 894], [1046, 898], [1050, 898], [1050, 897], [1059, 897], [1059, 893], [1050, 893], [1050, 894]], "63-65": [[1078, 886], [1076, 888], [1076, 890], [1081, 890], [1081, 886]]}, "center": {"84-90": [1971, 724], "58-61": [1056, 895], "63-65": [1079, 888]}},
+{"id": "12wqvpw", "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": {"61": [[1181, 885], [1181, 890], [1184, 890], [1184, 885]], "83-90": [[1930, 727], [1930, 732], [1999, 732], [1999, 727]], "73-76": [[1943, 744], [1943, 749], [1949, 749], [1949, 744]], "8-14": [[518, 881], [514, 884], [516, 886], [534, 886], [534, 883], [532, 881]], "125-135": [[1140, 869], [1140, 880], [1152, 880], [1152, 869]]}, "center": {"61": [1183, 888], "83-90": [1965, 730], "73-76": [1946, 747], "8-14": [524, 884], "125-135": [1146, 875]}},
{"id": "12wqprs", "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": {"83-90": [[1930, 700], [1930, 706], [1999, 706], [1999, 700]]}, "center": {"83-90": [1965, 703]}},
{"id": "12wq689", "name": "Ruby", "description": "Ruby is one of the Crystal Gems in Steven Universe.", "links": {"website": ["https://steven-universe.fandom.com/wiki/Ruby"], "subreddit": ["stevenuniverse"]}, "path": {"132-136": [[1979, 729], [1979, 732], [1983, 732], [1983, 729]]}, "center": {"132-136": [1981, 731]}},
{"id": "12wq5od", "name": "Sapphire", "description": "Sapphire is one of the Crystal Gems in Steven Universe.", "links": {"website": ["https://steven-universe.fandom.com/wiki/Sapphire"], "subreddit": ["stevenuniverse"]}, "path": {"132-136": [[1979, 726], [1979, 730], [1983, 730], [1983, 726]]}, "center": {"132-136": [1981, 728]}},
@@ -10374,7 +10346,7 @@
{"id": "12y1e1j", "name": "r/ovalwichs", "description": "A German shitposting and circle jerk subreddit.", "links": {"subreddit": ["ovalwichs"]}, "path": {"122-135": [[0, 868], [0, 873], [72, 873], [72, 868]], "119-121": [[28, 868], [28, 874], [72, 874], [72, 868]]}, "center": {"122-135": [36, 871], "119-121": [50, 871]}},
{"id": "12y5fak", "name": "r/phish", "description": "Subreddit focused on the American rock band Phish.", "links": {"subreddit": ["phish"]}, "path": {"115-166, T:0-1": [[0, 874], [0, 880], [26, 880], [26, 874]]}, "center": {"115-166, T:0-1": [13, 877]}},
{"id": "twiohh", "name": "_Romart_", "description": "_Romart_ is a player of the game Minecraft, and this is the face of their Minecraft skin.\n\nThis art was maintained by _Romart_ and a couple of friends.", "links": {}, "path": {"99-166, T:0-1": [[89, 811], [89, 820], [94, 820], [98, 816], [98, 811]]}, "center": {"99-166, T:0-1": [93, 815]}},
-{"id": "12y761a", "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe. Due to the Russian invasion of Ukraine, many Redditors drew flags of Ukraine to show support for Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"1-23": [[56, 868], [56, 1000], [206, 1000], [204, 996], [203, 994], [203, 971], [207, 969], [207, 955], [205, 955], [198, 947], [198, 942], [205, 930], [205, 927], [190, 927], [190, 897], [56, 897], [56, 884], [162, 884], [162, 868]]}, "center": {"1-23": [124, 948]}},
+{"id": "12y761a", "name": "Flag of Ukraine", "description": "Ukraine is a country in Eastern Europe. Due to the Russian invasion of Ukraine, many Redditors drew flags of Ukraine to show support for Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Ukraine", "https://en.wikipedia.org/wiki/Flag_of_Ukraine"], "subreddit": ["placeukraine", "ukraine"], "discord": ["fMf7RJBMw6"]}, "path": {"1-23": [[56, 868], [56, 1000], [206, 1000], [204, 996], [203, 994], [203, 971], [207, 969], [207, 955], [205, 955], [198, 947], [198, 942], [205, 930], [205, 927], [190, 927], [190, 897], [56, 897], [56, 884], [162, 884], [162, 868]], "65-79": [[1484, 879], [1484, 884], [1498, 884], [1498, 879]], "89-96": [[1725, 879], [1725, 890], [1736, 890], [1736, 879]]}, "center": {"1-23": [124, 948], "65-79": [1491, 882], "89-96": [1731, 885]}},
{"id": "12y7429", "name": "Fuck Putin!", "description": "In the earlier hours of r/place, Redditors expressed their disdain for Russian president Vladimir Putin for ordering the Russian invasion of Ukraine.", "links": {"website": ["https://en.wikipedia.org/wiki/Vladimir_Putin"]}, "path": {"1-12": [[59, 832], [59, 999], [201, 999], [201, 990], [203, 990], [203, 973], [200, 970], [200, 953], [197, 952], [197, 947], [199, 942], [199, 934], [189, 934], [189, 912], [190, 912], [190, 897], [94, 897], [94, 899], [59, 899], [59, 882], [101, 882], [101, 883], [162, 883], [162, 873], [172, 873], [172, 868], [200, 868], [200, 854], [196, 854], [196, 846], [178, 846], [178, 844], [162, 844], [162, 842], [152, 842], [151, 841], [150, 841], [150, 835], [147, 832]], "13-22": [[59, 868], [59, 1000], [102, 1000], [102, 999], [191, 999], [191, 974], [198, 974], [201, 969], [201, 965], [197, 965], [197, 955], [198, 955], [198, 948], [197, 948], [197, 934], [189, 934], [189, 912], [190, 912], [190, 901], [172, 901], [172, 897], [103, 897], [103, 898], [59, 898], [59, 882], [101, 882], [101, 883], [162, 883], [162, 873], [178, 873], [178, 868]]}, "center": {"1-12": [138, 948], "13-22": [140, 948]}},
{"id": "12y6so8", "name": "Germany-Singapore heart", "description": "A heart depicting the flags of Germany and Singapore.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Singapore"], "subreddit": ["placeDE", "de", "germany", "singapore"], "discord": ["placeDE"]}, "path": {"47-62": [[92, 826], [90, 828], [90, 831], [95, 836], [100, 831], [100, 828], [98, 826]]}, "center": {"47-62": [95, 830]}},
{"id": "12y6owa", "name": "Flag of Singapore", "description": "Singapore is a city-state in Southeast Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Singapore", "https://en.wikipedia.org/wiki/Flag_of_Singapore"], "subreddit": ["singapore"]}, "path": {"39-65": [[89, 811], [89, 830], [109, 830], [109, 811]]}, "center": {"39-65": [99, 821]}},
@@ -10385,7 +10357,7 @@
{"id": "131gloz", "name": "r/bulgaria", "description": "A subreddit about the country of Bulgaria.", "links": {"website": ["https://en.wikipedia.org/wiki/Bulgaria"], "subreddit": ["bulgaria"]}, "path": {"15-24": [[263, 886], [263, 893], [287, 893], [287, 892], [300, 892], [300, 886]]}, "center": {"15-24": [281, 890]}},
{"id": "131g8zo", "name": "Trst je naš!", "description": "\"Trst je naš!\" is a Slovenian phrase that means \"Trieste is ours!\" in English. The phrase refers the city of Trieste, which is currently part of Italy but was once part of Slovenia.", "links": {"website": ["https://en.wikipedia.org/wiki/Trieste"], "subreddit": ["Slovenia"]}, "path": {"51-52": [[255, 881], [255, 887], [311, 887], [311, 885], [313, 885], [313, 881], [303, 881], [303, 879], [299, 879], [299, 881], [281, 881], [281, 887], [270, 887], [270, 881]]}, "center": {"51-52": [301, 884]}},
{"id": "131fpal", "name": "r/CoolS", "description": "Subreddit focused on drawing the \"Cool S\" pattern on r/place.", "links": {"subreddit": ["CoolS", "place_CentralAlliance"]}, "path": {"110-166, T:0-1": [[216, 890], [216, 896], [245, 896], [245, 890]]}, "center": {"110-166, T:0-1": [231, 893]}},
-{"id": "131gg4j", "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": {"1-28": [[261, 886], [261, 905], [301, 905], [301, 886]]}, "center": {"1-28": [281, 896]}},
+{"id": "131gg4j", "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": {"1-28": [[261, 886], [261, 905], [301, 905], [301, 886]], "107-110": [[1073, 898], [1073, 905], [1085, 905], [1085, 898]]}, "center": {"1-28": [281, 896], "107-110": [1079, 902]}},
{"id": "131gwrl", "name": "r/DinoPlace", "description": "Subreddit focused on placing the Chrome Dino game on r/place.", "links": {"subreddit": ["DinoPlace"]}, "path": {"26-109": [[303, 803], [303, 807], [339, 807], [339, 803]], "110-166, T:0-1": [[303, 804], [303, 808], [342, 808], [342, 803], [308, 803], [307, 804]]}, "center": {"26-109": [321, 805], "110-166, T:0-1": [323, 806]}},
{"id": "132hifk", "name": "Anakin Skywalker", "description": "Anakin Skywalker is a character from the Star Wars movie series. He is the primary antagonist of the original trilogy as his altar ego, Darth Vader, and is the protagonist of the prequel trilogy of the series.\n\nThe Anakin Skywalker chess piece is liable to kill large swaths of pawns on one turn and has to roll with disadvantage when attacked by a piece that has the high ground. It is considered a risky replacement piece for a player's queen (the most powerful piece on a Chess 1.0 board). A player must never to be on a square right next to the opponent's king, or he will switch sides. Anakin can capture multiple pawns in one move.", "links": {"website": ["https://starwars.fandom.com/wiki/Anakin_Skywalker"], "subreddit": ["AnarchyChess", "chess"]}, "path": {"135-149": [[1620, 113], [1617, 116], [1617, 120], [1616, 121], [1616, 122], [1619, 125], [1622, 125], [1625, 122], [1625, 120], [1626, 120], [1631, 115], [1631, 113], [1629, 113], [1624, 118], [1624, 116], [1621, 113]]}, "center": {"135-149": [1621, 121]}},
{"id": "131rbhv", "name": "PewDiePie", "description": "Pewdiepie wave pattern", "links": {"subreddit": ["PewdiepieSubmissions"]}, "path": {"109-165, T:0-1": [[442, 1340], [442, 1351], [448, 1351], [448, 1340]]}, "center": {"109-165, T:0-1": [445, 1346]}},
@@ -10437,7 +10409,127 @@
{"id": "1375pks", "name": "Cenntro", "description": "Cenntro is an electric vehicle startup. Its stock, ticker symbol CENN, is used as a meme stock.", "links": {"website": ["https://cenntroauto.com/"], "subreddit": ["CENN"]}, "path": {"103-138": [[708, 822], [708, 829], [711, 829], [711, 830], [730, 830], [730, 826], [715, 826], [715, 824], [712, 824], [712, 822]]}, "center": {"103-138": [712, 827]}},
{"id": "1375oh6", "name": "CENNDiT", "description": "CENNDiT is a meme phrase used when discussing the meme stock of electric vehicle startup Cenntro.", "links": {"website": ["https://cenntroauto.com/"], "subreddit": ["CENN"]}, "path": {"154-161": [[710, 827], [710, 831], [729, 831], [729, 827]], "146-153": [[710, 823], [710, 829], [712, 829], [712, 831], [729, 831], [729, 826], [725, 826], [725, 825], [723, 825], [723, 827], [716, 827], [716, 825], [714, 825], [714, 823]]}, "center": {"154-161": [720, 829], "146-153": [726, 828]}},
{"id": "1394pl4", "name": "Genderqueer heart", "description": "A heart depicting the genderqueer pride flag. Genderqueer is an umbrella term similar to non-binary.", "links": {"website": ["https://gender.fandom.com/wiki/Genderqueer"]}, "path": {"73-165, T:0-1": [[953, 886], [951, 888], [951, 889], [955, 893], [959, 889], [959, 888], [957, 886]]}, "center": {"73-165, T:0-1": [955, 889]}},
-{"id": "139750p", "name": "Polyamory heart", "description": "A heart with three colors in reference to polyamory, consensual and intimate relationships involving more than one partner.", "links": {"website": ["https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"66-67": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]]}, "center": {"66-67": [998, 874]}},
-{"id": "1396rq0", "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": ["argentina", "Republica_Argentina", "dankargentina"]}, "path": {"82-86": [[990, 871], [988, 873], [988, 874], [992, 878], [996, 874], [996, 873], [994, 871]]}, "center": {"82-86": [992, 874]}},
-{"id": "1396qh3", "name": "r/OMORI", "description": "Subreddit focused on the game OMORI.", "links": {"subreddit": ["OMORI"]}, "path": {"3-118": [[950, 814], [948, 816], [948, 821], [950, 823], [980, 823], [982, 821], [982, 816], [980, 814]], "119-165, T:0-1": [[1001, 804], [1001, 810], [1004, 810], [1004, 814], [1005, 814], [1009, 807], [1009, 804]]}, "center": {"3-118": [965, 819], "119-165, T:0-1": [1005, 807]}}
+{"id": "139750p", "name": "Polyamory heart", "description": "A heart with three colors in reference to polyamory, consensual and intimate relationships involving more than one partner.", "links": {"website": ["https://www.webmd.com/sex/what-is-polyamory", "https://en.wikipedia.org/wiki/Polyamory"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"66-67": [[996, 871], [994, 873], [994, 874], [998, 878], [1002, 874], [1002, 873], [1000, 871]]}, "center": {"66-67": [998, 874]}},
+{"id": "1396rq0", "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": ["argentina", "Republica_Argentina"]}, "path": {"82-86": [[990, 871], [988, 873], [988, 874], [992, 878], [996, 874], [996, 873], [994, 871]]}, "center": {"82-86": [992, 874]}},
+{"id": "1396qh3", "name": "r/OMORI", "description": "Subreddit focused on the game OMORI.", "links": {"subreddit": ["OMORI"]}, "path": {"3-118": [[950, 814], [948, 816], [948, 821], [950, 823], [980, 823], [982, 821], [982, 816], [980, 814]], "119-165, T:0-1": [[1001, 804], [1001, 810], [1004, 810], [1004, 814], [1005, 814], [1009, 807], [1009, 804]]}, "center": {"3-118": [965, 819], "119-165, T:0-1": [1005, 807]}},
+{"id": "139wliz", "name": "MORE MORE JUMP! Hatsune Miku", "description": "In Hatsune Miku: Colorful Stage!, this is Hatsune Miku's appearance as part of the unit MORE MORE JUMP! (MMJ).", "links": {"website": ["https://projectsekai.fandom.com/wiki/MORE_MORE_JUMP!"], "subreddit": ["ProjectSekai"]}, "path": {"60-165, T:0-1": [[1145, 887], [1145, 899], [1161, 899], [1161, 886], [1160, 886], [1159, 887]]}, "center": {"60-165, T:0-1": [1153, 893]}},
+{"id": "139wkmg", "name": "Leo/need Hatsune Miku", "description": "In Hatsune Miku: Colorful Stage!, this is Hatsune Miku's appearance as part of the unit Leo/need (L/n).", "links": {"website": ["https://projectsekai.fandom.com/wiki/Leo/need"], "subreddit": ["ProjectSekai"]}, "path": {"59-165, T:0-1": [[1130, 887], [1130, 899], [1146, 899], [1146, 887]]}, "center": {"59-165, T:0-1": [1138, 893]}},
+{"id": "139wjth", "name": "25-ji, Nightcord de. Hatsune Miku", "description": "In Hatsune Miku: Colorful Stage!, this is Hatsune Miku's appearance as part of the unit 25-ji, Nightcord de. (25ji).", "links": {"website": ["https://projectsekai.fandom.com/wiki/25-ji,_Nightcord_de."], "subreddit": ["ProjectSekai"]}, "path": {"58-165, T:0-1": [[1117, 887], [1115, 889], [1115, 899], [1131, 899], [1131, 887]]}, "center": {"58-165, T:0-1": [1123, 893]}},
+{"id": "139win7", "name": "Vivid BAD SQUAD Hatsune Miku", "description": "In Hatsune Miku: Colorful Stage!, this is Hatsune Miku's appearance as part of the unit Vivid BAD SQUAD (VBS).", "links": {"website": ["https://projectsekai.fandom.com/wiki/Vivid_BAD_SQUAD"], "subreddit": ["ProjectSekai"]}, "path": {"61-165, T:0-1": [[1101, 886], [1101, 888], [1100, 889], [1100, 899], [1116, 899], [1116, 889], [1115, 888], [1115, 886], [1114, 886], [1113, 887], [1103, 887], [1102, 886]]}, "center": {"61-165, T:0-1": [1108, 893]}},
+{"id": "139what", "name": "Wonderlands x Showtime Hatsune Miku", "description": "In Hatsune Miku: Colorful Stage!, this is Hatsune Miku's appearance as part of the unit Wonderlands x Showtime (WxS).", "links": {"website": ["https://projectsekai.fandom.com/wiki/Wonderlands_x_Showtime"], "subreddit": ["ProjectSekai"]}, "path": {"62-165, T:0-1": [[1085, 888], [1085, 899], [1101, 899], [1101, 888], [1099, 888], [1097, 886], [1096, 887], [1090, 887], [1089, 886], [1087, 888]]}, "center": {"62-165, T:0-1": [1093, 893]}},
+{"id": "139w6dx", "name": "r/celestegame", "description": "Subreddit focused on the game Celeste.", "links": {"subreddit": ["celestegame"]}, "path": {"80-165, T:0-1": [[1014, 880], [1014, 886], [1069, 886], [1069, 880]]}, "center": {"80-165, T:0-1": [1042, 883]}},
+{"id": "139w0dh", "name": "Theo", "description": "Theo is a supporting character in the game Celeste.", "links": {"website": ["https://celestegame.fandom.com/wiki/Theo"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"63-165, T:0-1": [[1012, 853], [1010, 855], [1010, 856], [1012, 860], [1012, 861], [1010, 863], [1010, 865], [1013, 868], [1014, 868], [1021, 864], [1023, 864], [1025, 862], [1024, 861], [1024, 853]]}, "center": {"63-165, T:0-1": [1018, 859]}},
+{"id": "139vkgm", "name": "Germany-OMORI heart", "description": "A heart depicting the flag of Germany and OMORI's WHITE SPACE.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://www.omori-game.com/"], "subreddit": ["placeDE", "de", "germany", "OMORI"], "discord": ["placeDE", "ypSr9JG2ht"]}, "path": {"62-64": [[1060, 825], [1056, 829], [1056, 830], [1062, 836], [1068, 830], [1068, 829], [1064, 825]], "65-165, T:0-1": [[1090, 826], [1088, 828], [1088, 831], [1093, 836], [1098, 831], [1098, 828], [1096, 826]]}, "center": {"62-64": [1062, 829], "65-165, T:0-1": [1093, 830]}},
+{"id": "139x6q4", "name": "r/ProjectSekai", "description": "Subreddit focused on the game Hatsune Miku: Colorful Stage!, known in Asia as \"Project Sekai: Colorful Stage! feat. Hatsune Miku\".", "links": {"subreddit": ["ProjectSekai"]}, "path": {"79-165, T:0-1": [[1095, 880], [1095, 886], [1152, 886], [1152, 880]]}, "center": {"79-165, T:0-1": [1124, 883]}},
+{"id": "twqogm", "name": "Verbotschild", "description": "A verbotschild is a German sign indicating that the displayed object is forbidden.\n\nThis sign originally forbade dog poo, but the German dachshund relieved itself here anyway. As the Germans failed to clean up the poo quickly, it eventually attracted flies. The sign was later replaced with a \"no Among Us\" sign for better readability, and was eventually blanked out.", "links": {"subreddit": ["Dachshund", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"108-165, T:0-1": [[1093, 844], [1088, 849], [1088, 855], [1085, 855], [1085, 857], [1079, 857], [1079, 860], [1082, 862], [1082, 864], [1079, 867], [1079, 869], [1098, 869], [1098, 861], [1103, 856], [1103, 855], [1104, 854], [1104, 849], [1099, 844]]}, "center": {"108-165, T:0-1": [1096, 852]}},
+{"id": "139xofp", "name": "Sludge", "description": "Sludge is an obstacle in the game Celeste that will kill the player on contact.", "links": {"website": ["https://celestegame.fandom.com/wiki/Objects#Sludge"], "subreddit": ["celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"134-165, T:0-1": [[1049, 853], [1049, 856], [1051, 859], [1053, 861], [1056, 861], [1056, 853]]}, "center": {"134-165, T:0-1": [1053, 856]}},
+{"id": "139y7xc", "name": "Abrosexual heart", "description": "A heart depicting the abrosexual pride flag. Abrosexual refers to an individual whose sexuality is changing or fluid. One can change between any sexualities, whether it be monosexual, multisexual, allosexual, asexual spectrum, etc.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Abrosexual"], "subreddit": ["celesteplace", "celestegame"]}, "path": {"111-116": [[1008, 871], [1006, 873], [1006, 874], [1010, 878], [1014, 874], [1014, 873], [1012, 871]], "81-86": [[1116, 871], [1114, 873], [1114, 874], [1118, 878], [1122, 874], [1122, 873], [1120, 871]], "73-80": [[1116, 871], [1114, 873], [1114, 874], [1118, 878], [1124, 878], [1128, 874], [1128, 873], [1126, 871]]}, "center": {"111-116": [1010, 874], "81-86": [1118, 874], "73-80": [1121, 875]}},
+{"id": "139y728", "name": "Aroace heart", "description": "A heart depicting the aroace (aromantic, asexual) pride flag.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual"], "subreddit": ["celesteplace", "celestegame"]}, "path": {"112-114": [[1026, 871], [1024, 873], [1024, 874], [1028, 878], [1032, 874], [1032, 873], [1030, 871]]}, "center": {"112-114": [1028, 874]}},
+{"id": "139y4rq", "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"], "subreddit": ["celesteplace", "celestegame"]}, "path": {"103-105, 110-129": [[1092, 871], [1090, 873], [1090, 874], [1094, 878], [1098, 874], [1098, 873], [1096, 871]]}, "center": {"103-105, 110-129": [1094, 874]}},
+{"id": "139xuo3", "name": "Oriented aroace heart", "description": "A heart depicting the oriented aroace pride flag. Oriented aroace people are aromantic and asexual, but experience some other form of attraction", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual#Oriented_aroace"], "subreddit": ["celesteplace", "celestegame"]}, "path": {"73-153": [[1050, 871], [1048, 873], [1048, 874], [1052, 878], [1056, 874], [1056, 873], [1054, 871]]}, "center": {"73-153": [1052, 874]}},
+{"id": "139yrf8", "name": "Armenia heart", "description": "A heart depicting the flag of Armenia, a country in the Caucasus region of Eastern Europe and Western Asia.", "links": {"website": ["https://en.wikipedia.org/wiki/Armenia", "https://en.wikipedia.org/wiki/Flag_of_Armenia"], "subreddit": ["armenia"]}, "path": {"78-83": [[1068, 871], [1066, 873], [1066, 874], [1070, 878], [1074, 874], [1074, 873], [1072, 871]]}, "center": {"78-83": [1070, 874]}},
+{"id": "139yn8c", "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": {"65-91": [[1002, 871], [1000, 873], [1000, 874], [1004, 878], [1008, 874], [1008, 873], [1006, 871]]}, "center": {"65-91": [1004, 874]}},
+{"id": "139z0j3", "name": "Germany-Celeste heart", "description": "A heart depicting the flag of Germany and the transgender flag of the Celeste artwork.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "http://www.celestegame.com/"], "subreddit": ["placeDE", "de", "germany", "celesteplace", "celestegame"], "discord": ["placeDE", "celeste"]}, "path": {"63-64": [[1041, 857], [1038, 860], [1038, 862], [1043, 867], [1048, 862], [1048, 860], [1045, 857]]}, "center": {"63-64": [1043, 861]}},
+{"id": "139zq2j", "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": {"97-106": [[1019, 886], [1019, 898], [1074, 898], [1074, 886]], "82-96": [[1011, 886], [1011, 898], [1074, 898], [1074, 886]], "68-73": [[1011, 886], [1011, 898], [1062, 898], [1062, 886]], "56-67": [[1015, 886], [1015, 898], [1037, 898], [1037, 886]], "74-81": [[1011, 886], [1012, 898], [1062, 898], [1062, 892], [1072, 892], [1072, 896], [1074, 896], [1074, 892], [1062, 892], [1062, 886]]}, "center": {"97-106": [1047, 892], "82-96": [1043, 892], "68-73": [1037, 892], "56-67": [1026, 892], "74-81": [1041, 892]}},
+{"id": "13a03ls", "name": "Xenogender flag", "description": "A pride flag representing the xenogender community. Xenogender people feel that their gender cannot be described by human understandings of gender.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Xenogender"]}, "path": {"56-67": [[1037, 886], [1037, 894], [1050, 894], [1050, 886]]}, "center": {"56-67": [1044, 890]}},
+{"id": "13a01du", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"59-67": [[1037, 894], [1037, 898], [1050, 898], [1050, 894]]}, "center": {"59-67": [1044, 896]}},
+{"id": "139zygq", "name": "Trigender flag", "description": "A flag representing the trigender community. Trigender people experience three gender identities either simultaneously or varying between them.", "links": {"website": ["https://gender.fandom.com/wiki/Trigender"]}, "path": {"56-73": [[1059, 886], [1059, 892], [1067, 892], [1067, 886]]}, "center": {"56-73": [1063, 889]}},
+{"id": "13a0c0u", "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": ["Romania"]}, "path": {"116-124": [[1063, 898], [1063, 905], [1073, 905], [1073, 898]]}, "center": {"116-124": [1068, 902]}},
+{"id": "13a4aaj", "name": "Dexter's Laboratory", "description": "This shows Dexter's head from the popular Cartoon Network/Boomerang show Dexter's Laboratory", "links": {"subreddit": ["DextersLaboratory"], "wiki": ["https://en.wikipedia.org/wiki/Dexter%27s_Laboratory"]}, "path": {"164": [[977, 1534], [982, 1533], [983, 1533], [987, 1536], [986, 1542], [977, 1543], [977, 1535]]}, "center": {"164": [982, 1538]}},
+{"id": "13avsr7", "name": "École Nationale Supérieure de Mécanique et d'Aérotechnique", "description": "The École Nationale Supérieure de Mécanique et d'Aérotechnique (ISAE-ENSMA) is a major engineering school in France specializing in aeronautics.", "links": {"website": ["http://www.isae-ensma.fr/", "https://en.wikipedia.org/wiki/%C3%89cole_nationale_sup%C3%A9rieure_de_m%C3%A9canique_et_d'a%C3%A9rotechnique"]}, "path": {"143-165, T:0-1": [[1131, 869], [1131, 880], [1155, 880], [1155, 874], [1146, 874], [1146, 869]]}, "center": {"143-165, T:0-1": [1137, 875]}},
+{"id": "13avdmn", "name": "RED HAND", "description": "A RED HAND is a creature in the game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/RED_HANDS"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"81-86": [[1050, 824], [1046, 828], [1046, 834], [1048, 836], [1048, 838], [1047, 839], [1046, 839], [1044, 841], [1042, 844], [1042, 846], [1044, 848], [1044, 850], [1046, 850], [1048, 852], [1053, 847], [1053, 826], [1051, 824]]}, "center": {"81-86": [1048, 844]}},
+{"id": "13avbsh", "name": "SPROUT MOLE", "description": "A SPROUT MOLE is a creature from the game OMORI.", "links": {"website": ["https://omori.fandom.com/wiki/SPROUT_MOLE"], "subreddit": ["OMORI"], "discord": ["ypSr9JG2ht"]}, "path": {"57-151": [[1100, 802], [1096, 805], [1100, 809], [1105, 809], [1105, 811], [1101, 814], [1098, 818], [1098, 821], [1101, 824], [1099, 826], [1099, 827], [1101, 829], [1104, 829], [1106, 826], [1107, 826], [1109, 829], [1112, 829], [1114, 827], [1114, 826], [1112, 824], [1115, 821], [1115, 818], [1110, 812], [1107, 811], [1107, 809], [1114, 809], [1118, 805], [1115, 802], [1110, 802], [1107, 805], [1104, 802]]}, "center": {"57-151": [1107, 819]}},
+{"id": "13b11x8", "name": "Pansexual flag", "description": "A pride flag representing the pansexual community. 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"], "subreddit": ["pansexual"]}, "path": {"59-66": [[1166, 887], [1166, 889], [1168, 891], [1171, 891], [1171, 887]]}, "center": {"59-66": [1169, 889]}},
+{"id": "13b0xy9", "name": "r/placefrance", "description": "Subreddit focused on drawing artwork related to the country of France on r/place", "links": {"subreddit": ["placefrance"]}, "path": {"61-66": [[1131, 819], [1131, 825], [1187, 825], [1187, 819]]}, "center": {"61-66": [1159, 822]}},
+{"id": "13b0w09", "name": "r/rance", "description": "A French-speaking shitposting subreddit.", "links": {"subreddit": ["rance"]}, "path": {"63-66": [[1131, 813], [1131, 819], [1161, 819], [1161, 813]]}, "center": {"63-66": [1146, 816]}},
+{"id": "13b0uc2", "name": "r/france", "description": "Subreddit focused on the country of France.", "links": {"subreddit": ["france"]}, "path": {"65-66": [[1131, 807], [1131, 813], [1164, 813], [1164, 807]]}, "center": {"65-66": [1148, 810]}},
+{"id": "13b08t4", "name": "Iron Pencil", "description": "The Iron Pencil is a large iron statue that resembles a pencil, appearing primarily in the game EarthBound and briefly in its sequel Mother 3. In EarthBound, it blocks paths in Peaceful Rest Valley, Monkey Caves, and the southern island of Winters. They can only be removed by the Pencil Eraser. This statue is the only other destroyable statue in the game besides the Iron Eraser, which is removed with the Eraser Eraser.", "links": {"website": ["https://earthbound.fandom.com/wiki/Iron_Pencil"], "subreddit": ["earthbound"]}, "path": {"78-84": [[1120, 846], [1114, 852], [1113, 854], [1113, 865], [1113, 866], [1116, 869], [1125, 869], [1128, 866], [1128, 853], [1121, 846]]}, "center": {"78-84": [1121, 858]}},
+{"id": "13b06h3", "name": "Toyama Kasumi", "description": "Toyama Kasumi is the main character of the Japanese media franchise BanG Dream!", "links": {"website": ["https://bandori.fandom.com/wiki/Toyama_Kasumi"], "subreddit": ["BanGDream"], "discord": ["bangdream"]}, "path": {"80-84": [[1128, 841], [1128, 845], [1129, 846], [1129, 854], [1127, 857], [1127, 859], [1129, 859], [1130, 860], [1133, 860], [1134, 861], [1136, 861], [1137, 860], [1142, 860], [1143, 861], [1144, 861], [1145, 860], [1148, 860], [1151, 858], [1151, 857], [1149, 854], [1149, 846], [1150, 845], [1150, 843], [1148, 841]]}, "center": {"80-84": [1139, 851]}},
+{"id": "13b03y1", "name": "BanG Dream! Discord server", "description": "BanG Dream! is a Japanese media franchise. This is a link to the fan Discord server for BanG Dream!", "links": {"website": ["https://en.wikipedia.org/wiki/BanG_Dream!"], "subreddit": ["BanGDream"], "discord": ["bangdream"]}, "path": {"82-84": [[1127, 860], [1127, 869], [1175, 869], [1175, 860]]}, "center": {"82-84": [1151, 865]}},
+{"id": "13azjxp", "name": "PICO-8", "description": "PICO-8 is a virtual fantasy console developed by Lexaloffle Games, designed to simulate the limitations of old consoles and 8-bit computers from the 80s. It is known for people pushing the boundaries of its capabilities, such as the 2021 3D modeling tool picoCAD and a port of DOOM called Poom. A successor to PICO-8, the Picotron, is in development and it is said to have more features and fewer limitations.", "links": {"website": ["https://www.lexaloffle.com/pico-8.php", "https://en.wikipedia.org/wiki/PICO-8"], "subreddit": ["pico8", "celesteplace", "celestegame"], "discord": ["celeste"]}, "path": {"96-101": [[1122, 871], [1119, 874], [1122, 877], [1125, 874]]}, "center": {"96-101": [1122, 874]}},
+{"id": "13c4o37", "name": "Italian Flag", "description": "Another Italian flag", "links": {"wiki": ["Italy"]}, "path": {"164": [[316, 1901], [316, 1898], [309, 1898], [309, 1901]]}, "center": {"164": [313, 1900]}},
+{"id": "13c6z07", "name": "Mushroom", "description": "Mushrooms are a notorious obstacle in the game Pogostuck: Rage With Your Friends", "links": {"subreddit": ["PogoStuck"]}, "path": {"63-166, T:0-1": [[1234, 812], [1232, 814], [1234, 816], [1234, 818], [1236, 818], [1236, 816], [1238, 814], [1236, 812]]}, "center": {"63-166, T:0-1": [1235, 814]}},
+{"id": "13c6xr4", "name": "Pogodude", "description": "Pogodude is a nickname for the player character of the game Pogostuck: Rage With Your Friends.", "links": {"subreddit": ["PogoStuck"]}, "path": {"56-166, T:0-1": [[1227, 802], [1224, 805], [1224, 812], [1223, 813], [1223, 818], [1224, 818], [1230, 814], [1230, 813], [1232, 813], [1235, 810], [1235, 805], [1232, 802]]}, "center": {"56-166, T:0-1": [1230, 807]}},
+{"id": "13c6wlj", "name": "Bee", "description": "Bees are the focus of an infamously difficult level in the game Pogostuck: Rage With Your Friends.", "links": {"subreddit": ["PogoStuck"]}, "path": {"66-166, T:0-1": [[1235, 807], [1235, 812], [1239, 812], [1239, 807]]}, "center": {"66-166, T:0-1": [1237, 810]}},
+{"id": "13c6l1x", "name": "Diogenes", "description": "Diogenes is the main character in the game Getting Over It with Bennett Foddy.", "links": {"website": ["https://store.steampowered.com/app/240720/Getting_Over_It_with_Bennett_Foddy/", "https://en.wikipedia.org/wiki/Getting_Over_It_with_Bennett_Foddy"], "subreddit": ["GettingOverItGame"]}, "path": {"79-166, T:0-1": [[1206, 804], [1204, 806], [1204, 809], [1201, 812], [1201, 821], [1203, 823], [1210, 823], [1212, 821], [1212, 811], [1215, 811], [1217, 809], [1216, 808], [1216, 806], [1214, 806], [1213, 805], [1211, 805], [1211, 809], [1209, 809], [1209, 804]]}, "center": {"79-166, T:0-1": [1207, 817]}},
+{"id": "13ca1kf", "name": "r/MadokaMagica Discord server", "description": "A link to the Discord server for r/MadokaMagica, a subreddit focused on the Puella Magi Madoka Magica anime series.", "links": {"website": ["https://en.wikipedia.org/wiki/Puella_Magi_Madoka_Magica", "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica"], "subreddit": ["MadokaMagica"], "discord": ["madoka"]}, "path": {"63-165, T:0-1": [[1224, 900], [1222, 902], [1222, 903], [1224, 905], [1260, 905], [1260, 902], [1258, 900]]}, "center": {"63-165, T:0-1": [1241, 903]}},
+{"id": "twjj67", "name": "Northeastern University", "description": "Northeastern University is a university in Boston, Massachusetts, United States.\n\nAfter a long art war with r/placepython, a truce agreement was reached. Eventually, a Northeastern University logo was added to the territory.", "links": {"website": ["https://northeastern.edu", "https://en.wikipedia.org/wiki/Northeastern_University"], "subreddit": ["NEU"]}, "path": {"139-162": [[1276, 870], [1276, 878], [1281, 878], [1281, 870]], "88-106": [[1258, 869], [1258, 900], [1279, 900], [1279, 869]]}, "center": {"139-162": [1279, 874], "88-106": [1269, 885]}},
+{"id": "tx5cs8", "name": "Ban League", "description": "Ban League is a server of friends. We wanted to put our logo on r/place, and it has been successfully done. We were under attack, but we managed to defend ourselves and win!", "links": {}, "path": {"157-166, T:0-1": [[1275, 830], [1281, 830], [1281, 836], [1275, 836]]}, "center": {"157-166, T:0-1": [1278, 833]}},
+{"id": "13cbab1", "name": "Kaname Madoka-Germany heart", "description": "A heart with the colors of the character Kaname Madoka from Puella Magi Madoka Magica and the flag of Germany.", "links": {"website": ["https://en.wikipedia.org/wiki/Madoka_Kaname", "https://en.wikipedia.org/wiki/Germany"], "subreddit": ["MadokaMagica", "placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"69-76": [[1269, 865], [1267, 867], [1267, 869], [1271, 873], [1272, 873], [1276, 869], [1276, 867], [1274, 865]]}, "center": {"69-76": [1272, 869]}},
+{"id": "13cb6v0", "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": {"82-87": [[1293, 872], [1293, 874], [1296, 877], [1299, 874], [1299, 872]]}, "center": {"82-87": [1296, 874]}},
+{"id": "13cb4yy", "name": "North Atlantic Treaty Organization", "description": "The North Atlantic Treaty Organization (NATO) is an intergovernmental military alliance between 30 member states. 28 countries are in Europe and 2 are in North America.", "links": {"website": ["https://www.nato.int/", "https://en.wikipedia.org/wiki/NATO", "https://en.wikipedia.org/wiki/Flag_of_NATO"], "subreddit": ["NonCredibleDefense", "placeDE", "de", "germany", "belgium", "Belgium2", "BELGICA", "placeBE"], "discord": ["placeDE"]}, "path": {"76-87": [[1281, 829], [1281, 869], [1331, 869], [1331, 829]]}, "center": {"76-87": [1306, 849]}},
+{"id": "13cb3pc", "name": "Flag of the European Union", "description": "The European Union 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", "placeDE", "de", "germany", "belgium", "Belgium2", "BELGICA", "placeBE"], "discord": ["uxm3wbrHke", "placeDE"], "wiki": ["PlaceEU"]}, "path": {"59-74, 88-91": [[1281, 829], [1281, 870], [1332, 870], [1332, 829]]}, "center": {"59-74, 88-91": [1307, 850]}},
+{"id": "13da1zp", "name": "Aromantic heart", "description": "A heart depicting the aromantic pride flag. Aromantic people experience little to no romantic attraction.", "links": {"website": ["https://www.aromanticism.org/", "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism"], "subreddit": ["aromantic"]}, "path": {"80-87": [[1329, 873], [1325, 877], [1325, 878], [1327, 880], [1332, 880], [1332, 876]], "60-62": [[1384, 871], [1382, 873], [1382, 874], [1386, 878], [1390, 874], [1390, 873], [1388, 871]]}, "center": {"80-87": [1329, 877], "60-62": [1386, 874]}},
+{"id": "13d9zrw", "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": {"69": [[1480, 871], [1478, 873], [1478, 874], [1482, 878], [1486, 874], [1486, 873], [1484, 871]], "80-87": [[1323, 873], [1319, 877], [1319, 878], [1321, 880], [1325, 880], [1327, 878], [1327, 877]]}, "center": {"69": [1482, 874], "80-87": [1323, 877]}},
+{"id": "13d9yx5", "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/Dominican_Republic", "https://en.wikipedia.org/wiki/Gay"]}, "path": {"79-87": [[1317, 873], [1313, 877], [1313, 878], [1315, 880], [1319, 880], [1321, 878], [1321, 877]]}, "center": {"79-87": [1317, 877]}},
+{"id": "13d9y0u", "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": {"80-87": [[1311, 873], [1307, 877], [1307, 878], [1309, 880], [1313, 880], [1315, 878], [1315, 877]]}, "center": {"80-87": [1311, 877]}},
+{"id": "13d9wlp", "name": "Aroace heart", "description": "A heart depicting the aroace (aromantic, asexual) pride flag.", "links": {"website": ["https://lgbtqia.fandom.com/wiki/Aromantic_asexual"], "subreddit": ["aromanticasexual"]}, "path": {"81-87": [[1305, 873], [1301, 877], [1301, 878], [1303, 880], [1307, 880], [1309, 878], [1309, 877]]}, "center": {"81-87": [1305, 877]}},
+{"id": "13d9u5j", "name": "Polysexual heart", "description": "A heart depicting the polysexual pride flag. Polysexual is the sexual attraction to many, but not necessarily all, genders. For example, a polysexual individual could be attracted to all genders except men. Or a polysexual individual could be attracted only to non-binary individuals, genderfluid individuals, and male-aligned individuals.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Polysexual"]}, "path": {"82-87": [[1312, 871], [1310, 873], [1310, 874], [1314, 878], [1318, 874], [1318, 873], [1316, 871]]}, "center": {"82-87": [1314, 874]}},
+{"id": "13d9sou", "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", "https://en.wikipedia.org/wiki/Bisexual_flag"], "subreddit": ["bisexual"]}, "path": {"77-87": [[1306, 871], [1304, 873], [1304, 874], [1308, 878], [1312, 874], [1312, 873], [1310, 871]], "68-70": [[1474, 871], [1472, 873], [1472, 874], [1476, 878], [1480, 874], [1480, 873], [1478, 871]], "62-67": [[1492, 871], [1490, 873], [1490, 874], [1494, 878], [1498, 874], [1498, 873], [1496, 871]]}, "center": {"77-87": [1308, 874], "68-70": [1476, 874], "62-67": [1494, 874]}},
+{"id": "13dad21", "name": "gwa", "description": "gwa is a server emote for the Discord server Meta Studio. It is a cat and a kind deity. Please don't confuse it. The 'g' should not be capitalized.", "links": {"subreddit": ["gwaplace"], "discord": ["Pf6EEJ84PK"]}, "path": {"56-62": [[1352, 808], [1352, 813], [1354, 816], [1362, 816], [1364, 814], [1364, 811], [1361, 808]]}, "center": {"56-62": [1358, 812]}},
+{"id": "13e8ko4", "name": "The Fifth Base", "description": "This diagram shows five bases in the game Blaseball, referencing the Fifth Base rule that adds an extra base that players must run through before scoring.", "links": {"website": ["https://www.blaseball.wiki/w/The_Fifth_Base"], "subreddit": ["Blaseball"]}, "path": {"58-102": [[1469, 816], [1465, 820], [1467, 822], [1469, 820], [1471, 822], [1473, 820]], "103-166, T:0-1": [[1465, 816], [1463, 818], [1467, 822], [1469, 820], [1471, 822], [1473, 820], [1469, 816], [1467, 818]]}, "center": {"58-102": [1469, 818], "103-166, T:0-1": [1467, 820]}},
+{"id": "13e8hw8", "name": "Supernova", "description": "Supernova is a game mechanic in the game Blaseball.", "links": {"website": ["https://www.blaseball.wiki/w/Supernova"], "subreddit": ["Blaseball"]}, "path": {"103-166, T:0-1": [[1459, 822], [1459, 824], [1460, 824], [1460, 829], [1465, 829], [1466, 830], [1467, 829], [1472, 829], [1472, 824], [1473, 824], [1473, 822]]}, "center": {"103-166, T:0-1": [1468, 825]}},
+{"id": "13e8fnb", "name": "Rat Mason", "description": "Rat Mason is a prominent player of the game Blaseball.", "links": {"website": ["https://www.blaseball.wiki/w/Rat_Mason"], "subreddit": ["Blaseball"]}, "path": {"104-109": [[1452, 823], [1452, 826], [1451, 827], [1451, 828], [1454, 828], [1454, 830], [1459, 830], [1459, 828], [1460, 827], [1460, 825], [1458, 825], [1458, 823]], "110-166, T:0-1": [[1475, 824], [1475, 827], [1474, 828], [1478, 831], [1482, 831], [1484, 829], [1484, 826], [1481, 826], [1481, 824]]}, "center": {"104-109": [1456, 826], "110-166, T:0-1": [1478, 827]}},
+{"id": "13e8943", "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"]}, "path": {"74-79": [[1487, 820], [1487, 822], [1486, 822], [1486, 828], [1488, 830], [1490, 828], [1490, 827], [1492, 827], [1492, 824], [1490, 824], [1490, 822], [1489, 822], [1489, 820]], "83-166, T:0-1": [[1486, 805], [1486, 812], [1488, 814], [1490, 812], [1490, 810], [1492, 810], [1492, 807], [1490, 807], [1490, 805], [1489, 805], [1489, 803], [1488, 803]]}, "center": {"74-79": [1488, 825], "83-166, T:0-1": [1488, 808]}},
+{"id": "13e7l9n", "name": "Yuppie Psycho", "description": "Yuppie Psycho is a 2019 survival horror office game.", "links": {"website": ["https://store.steampowered.com/app/597760/Yuppie_Psycho_Executive_Edition/"]}, "path": {"98-166, T:0-1": [[1411, 807], [1411, 810], [1412, 810], [1412, 813], [1416, 813], [1416, 811], [1418, 811], [1418, 807]]}, "center": {"98-166, T:0-1": [1414, 809]}},
+{"id": "13e9oxm", "name": "Red New Mexico chile", "description": "The New Mexico chile (or Hatch chile) is a type of chile native to New Mexico. This chile is red, indicating that it is ripe.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Mexico", "https://en.wikipedia.org/wiki/New_Mexico_chile"], "subreddit": ["NewMexico"]}, "path": {"107-166, T:0-1": [[1449, 893], [1449, 900], [1447, 903], [1447, 905], [1449, 905], [1453, 901], [1453, 896], [1452, 895], [1452, 893]]}, "center": {"107-166, T:0-1": [1451, 899]}},
+{"id": "13e9nef", "name": "Green New Mexico chile", "description": "The New Mexico chile (or Hatch chile) is a type of chile native to New Mexico. This chile is green, indicating that it is not fully ripe.", "links": {"website": ["https://en.wikipedia.org/wiki/New_Mexico", "https://en.wikipedia.org/wiki/New_Mexico_chile"], "subreddit": ["NewMexico"]}, "path": {"107-166, T:0-1": [[1438, 869], [1438, 871], [1437, 872], [1437, 877], [1440, 880], [1442, 880], [1442, 877], [1441, 876], [1441, 869]]}, "center": {"107-166, T:0-1": [1439, 874]}},
+{"id": "13e9j4h", "name": "Bells", "description": "Bells are the main currency of the Animal Crossing games.", "links": {"website": ["https://nookipedia.com/wiki/Bell"], "subreddit": ["AnimalCrossing"]}, "path": {"64-166, T:0-1": [[1435, 892], [1433, 894], [1432, 896], [1431, 896], [1428, 899], [1428, 902], [1432, 905], [1436, 905], [1440, 901], [1440, 899], [1439, 898], [1439, 895], [1436, 892]]}, "center": {"64-166, T:0-1": [1434, 900]}},
+{"id": "13e9iaq", "name": "Pitfall seed", "description": "A pitfall seed is an item in the Animal Crossing games that can be buried to create a pitfall trap.", "links": {"website": ["https://nookipedia.com/wiki/Pitfall_seed"], "subreddit": ["AnimalCrossing"]}, "path": {"107-158": [[1420, 896], [1420, 901], [1423, 905], [1428, 905], [1430, 903], [1429, 902], [1429, 899], [1431, 897], [1431, 895], [1429, 895], [1428, 894], [1425, 896]], "159-166, T:0-1": [[1421, 896], [1419, 898], [1419, 901], [1423, 905], [1428, 905], [1430, 903], [1429, 902], [1429, 899], [1431, 897], [1431, 895], [1426, 895], [1425, 896]]}, "center": {"107-158": [1424, 901], "159-166, T:0-1": [1424, 900]}},
+{"id": "13e9gpo", "name": "Animal Crossing: New Horizons", "description": "Animal Crossing: New Horizons is the latest game in the Animal Crossing series. It was released for the Nintendo Switch in 2020.", "links": {"website": ["https://en.wikipedia.org/wiki/Animal_Crossing:_New_Horizons"], "subreddit": ["AnimalCrossing"]}, "path": {"72-158": [[1404, 897], [1404, 902], [1421, 902], [1421, 897]]}, "center": {"72-158": [1413, 900]}},
+{"id": "13e9fsg", "name": "Animal Crossing: New Leaf", "description": "Animal Crossing: New Leaf is a game in the Animal Crossing series that was released for the Nintendo 3DS in 2012.", "links": {"website": ["https://en.wikipedia.org/wiki/Animal_Crossing:_New_Leaf"], "subreddit": ["AnimalCrossing"]}, "path": {"159-166, T:0-1": [[1404, 897], [1404, 902], [1420, 902], [1420, 897]]}, "center": {"159-166, T:0-1": [1412, 900]}},
+{"id": "13e9em9", "name": "Fossil", "description": "A fossil is an item in the Animal Crossing games that can be donated to the museum.", "links": {"website": ["https://nookipedia.com/wiki/Fossil"], "subreddit": ["AnimalCrossing"]}, "path": {"92-166, T:0-1": [[1407, 882], [1403, 886], [1402, 888], [1402, 893], [1403, 894], [1403, 896], [1405, 898], [1412, 898], [1414, 896], [1414, 894], [1409, 894], [1412, 891], [1414, 884], [1412, 882]]}, "center": {"92-166, T:0-1": [1407, 889]}},
+{"id": "13e9d6p", "name": "Gyroid", "description": "Gyroids are furniture items in the Animal Crossing games.", "links": {"website": ["https://nookipedia.com/wiki/Gyroid"], "subreddit": ["AnimalCrossing"]}, "path": {"68-166, T:0-1": [[1408, 869], [1403, 874], [1403, 877], [1405, 877], [1405, 880], [1404, 880], [1404, 882], [1412, 882], [1412, 879], [1413, 879], [1413, 875], [1412, 875], [1412, 873]]}, "center": {"68-166, T:0-1": [1409, 877]}},
+{"id": "13e96oj", "name": "DankPods", "description": "DankPods, real name Wade, is an Australian YouTuber covering iPods, headphones, and other things related to audio.", "links": {"website": ["https://www.youtube.com/c/DankPods", "https://youtube.fandom.com/wiki/DankPods"], "subreddit": ["DankPods"]}, "path": {"65-141": [[1415, 824], [1415, 830], [1450, 830], [1450, 824]], "142-166, T:0-1": [[1407, 830], [1407, 836], [1411, 836], [1411, 839], [1413, 841], [1431, 841], [1442, 836], [1442, 830]]}, "center": {"65-141": [1433, 827], "142-166, T:0-1": [1425, 836]}},
+{"id": "13e91fk", "name": "Germany-Ireland hearts", "description": "Hearts depicting the flags of Germany and Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany", "https://en.wikipedia.org/wiki/Republic_of_Ireland"], "subreddit": ["placeDE", "de", "germany", "PlaceIreland", "ireland"]}, "path": {"98-117": [[1490, 825], [1487, 828], [1487, 829], [1492, 834], [1496, 830], [1513, 830], [1517, 834], [1522, 829], [1522, 828], [1519, 825], [1515, 825], [1512, 828], [1512, 830], [1497, 830], [1497, 828], [1494, 825]]}, "center": {"98-117": [1517, 829]}},
+{"id": "13e8tpk", "name": "Shamrock", "description": "A shamrock is a type of clover leaf used to symbolize Ireland.", "links": {"website": ["https://en.wikipedia.org/wiki/Shamrock"], "subreddit": ["PlaceIreland", "ireland"]}, "path": {"96-166, T:0-1": [[1500, 808], [1500, 811], [1499, 812], [1499, 817], [1497, 817], [1496, 820], [1496, 825], [1498, 826], [1500, 829], [1505, 829], [1505, 836], [1501, 847], [1498, 851], [1490, 857], [1490, 858], [1492, 860], [1493, 860], [1494, 859], [1495, 859], [1504, 851], [1508, 842], [1510, 833], [1510, 829], [1513, 829], [1517, 825], [1517, 820], [1515, 817], [1513, 817], [1513, 812], [1509, 808]]}, "center": {"96-166, T:0-1": [1506, 821]}},
+{"id": "13e8o1k", "name": "We Are All Love Blaseball", "description": "This heart is associated with \"We Are All Love Blaseball\", a meme in the community of the game Blaseball.", "links": {"website": ["https://www.blaseball.com/landing"], "subreddit": ["Blaseball"]}, "path": {"63-166, T:0-1": [[1469, 809], [1469, 811], [1472, 814], [1475, 811], [1475, 809]]}, "center": {"63-166, T:0-1": [1472, 811]}},
+{"id": "13eaf5d", "name": "GFL Clan", "description": "GFLClan, a.k.a. Games For Life, is a multi-game community for games like Counter Strike: Global Offensive, Team Fortress 2, and Garry's Mod.", "links": {"website": ["https://gflclan.com/"]}, "path": {"62-78": [[1481, 890], [1481, 898], [1513, 898], [1513, 890]], "79-166, T:0-1": [[1471, 890], [1471, 898], [1503, 898], [1503, 890]]}, "center": {"62-78": [1497, 894], "79-166, T:0-1": [1487, 894]}},
+{"id": "13eacvv", "name": "Skial", "description": "Skial is a community for the game Team Fortress 2 that hosts a wide variety of servers, ranging from normal community game modes to special game modes like Zombie Escape.", "links": {"website": ["https://www.skial.com/"], "subreddit": ["skial"]}, "path": {"62-76": [[1460, 890], [1460, 898], [1482, 898], [1482, 890]], "77-166, T:0-1": [[1452, 890], [1452, 898], [1472, 898], [1472, 890]]}, "center": {"62-76": [1471, 894], "77-166, T:0-1": [1462, 894]}},
+{"id": "13eablm", "name": "Mapeadores", "description": "Mapeadores is a website for custom maps for the Counter Strike: Global Offensive mod Zombie Escape.", "links": {"website": ["https://mapeadores.com/"]}, "path": {"56-62": [[1453, 884], [1453, 890], [1499, 890], [1499, 884]], "63-166, T:0-1": [[1453, 884], [1453, 890], [1498, 890], [1498, 884]]}, "center": {"56-62": [1476, 887], "63-166, T:0-1": [1476, 887]}},
+{"id": "13eb65e", "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": {"66-68": [[1480, 871], [1478, 873], [1478, 874], [1482, 878], [1488, 878], [1492, 874], [1492, 873], [1490, 871]], "59-65": [[1486, 871], [1484, 873], [1484, 874], [1488, 878], [1492, 874], [1492, 873], [1490, 871]]}, "center": {"66-68": [1485, 875], "59-65": [1488, 874]}},
+{"id": "13eazw4", "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": {"116-157": [[1491, 898], [1491, 919], [1508, 919], [1508, 898]]}, "center": {"116-157": [1500, 909]}},
+{"id": "13eaxib", "name": "Snivy", "description": "Snivy is the Grass-type starter Pokémon of the Generation 5 Pokémon games (Pokémon Black/White).", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Snivy_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"122-146": [[1487, 822], [1487, 824], [1490, 827], [1495, 827], [1497, 825], [1497, 823], [1494, 820], [1492, 820], [1490, 822]]}, "center": {"122-146": [1493, 824]}},
+{"id": "13f4got", "name": "r/dreamcatcher", "description": "Subreddit focused on the K-pop girl group Dreamcatcher.", "links": {"subreddit": ["dreamcatcher"]}, "path": {"62-93": [[1590, 871], [1590, 877], [1650, 877], [1650, 871]], "94-166, T:0-1": [[1589, 872], [1589, 878], [1655, 878], [1655, 872], [1653, 870], [1595, 870], [1595, 872]]}, "center": {"62-93": [1620, 874], "94-166, T:0-1": [1622, 874]}},
+{"id": "13f4aqb", "name": "r/twice", "description": "Subreddit focused on the K-pop girl group TWICE.", "links": {"subreddit": ["twice"]}, "path": {"63-166, T:0-1": [[1532, 870], [1532, 876], [1561, 876], [1561, 870]]}, "center": {"63-166, T:0-1": [1547, 873]}},
+{"id": "twh6qc", "name": "Myth", "description": "Myth (Meth) is a Twitch streamer. This skull and title were created by Myth's community.", "links": {"website": ["https://www.twitch.tv/myth"], "subreddit": ["TheMyth"]}, "path": {"139-154": [[1525, 1125], [1591, 1125], [1591, 908], [1587, 908], [1587, 898], [1525, 898]], "109-138": [[1525, 898], [1525, 1149], [1591, 1149], [1591, 908], [1587, 908], [1587, 898]], "107-108": [[1525, 898], [1525, 999], [1591, 999], [1591, 908], [1587, 908], [1587, 898]], "56-100": [[1524, 898], [1524, 999], [1588, 999], [1587, 898]]}, "center": {"139-154": [1558, 1012], "109-138": [1558, 1024], "107-108": [1558, 949], "56-100": [1556, 949]}},
+{"id": "13f688x", "name": "Madvillainy", "description": "Madvillainy is a collaboration album by rappers MF DOOM and Madlib, under the moniker \"Madvillain\".", "links": {"website": ["https://www.youtube.com/watch?v=zQ0yXh_ADlQ&list=PL9dk_xtWpAkKs1-EKcvq-nKwdaaS-3czd", "https://en.wikipedia.org/wiki/Madvillainy"], "subreddit": ["mfdoom"]}, "path": {"56-166, T:0-1": [[1588, 879], [1588, 897], [1606, 897], [1606, 879]]}, "center": {"56-166, T:0-1": [1597, 888]}},
+{"id": "13f6met", "name": "Nett hier", "description": "\"Nett hier\" is a Germany phrase that means \"Nice here\". Stickers with the phrase became a meme in German subreddits.", "links": {"subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"66-72": [[1553, 833], [1536, 838], [1529, 842], [1526, 845], [1526, 851], [1530, 856], [1534, 860], [1552, 866], [1578, 866], [1591, 862], [1599, 858], [1604, 851], [1604, 845], [1601, 842], [1589, 836], [1575, 833]]}, "center": {"66-72": [1565, 850]}},
+{"id": "13f6jy4", "name": "IZ*ONE", "description": "IZ*ONE (Hangul: 아이즈원) is a former South Korean–Japanese girl group composed of twelve members: Jang Won-young, Sakura Miyawaki, Jo Yu-ri, Choi Ye-na, An Yu-jin, Nako Yabuki, Kwon Eun-bi, Kang Hye-won, Hitomi Honda, Kim Chae-won, Kim Min-ju, and Lee Chae-yeon. They officially disbanded on April 29, 2021.", "links": {"website": ["https://web.archive.org/web/20210430142259/http://iz-one.co.kr/", "https://en.wikipedia.org/wiki/Iz*One"], "subreddit": ["iZone", "kpop"]}, "path": {"58-118": [[1533, 889], [1533, 897], [1557, 897], [1557, 889]]}, "center": {"58-118": [1545, 893]}},
+{"id": "13fxyob", "name": "Technocracy", "description": "Technocracy is an ideology advocating a form of government based on expert based decision-making, as well as broad changes to the society and economy. This monad symbol represents technocracy along with the organization Technocracy Inc.", "links": {"website": ["https://en.wikipedia.org/wiki/Technocracy", "https://www.technocracyinc.org/"], "subreddit": ["Technocracy"]}, "path": {"61-90": [[852, 166], [852, 177], [863, 177], [863, 166]]}, "center": {"61-90": [858, 172]}},
+{"id": "13f6pgw", "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"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"90": [[1505, 844], [1502, 850], [1499, 852], [1500, 853], [1501, 853], [1504, 851], [1506, 853], [1518, 853], [1518, 844]], "91": [[1506, 844], [1498, 852], [1500, 854], [1501, 854], [1503, 852], [1509, 858], [1516, 851], [1508, 843]]}, "center": {"90": [1509, 849], "91": [1508, 850]}},
+{"id": "u8sg8x", "name": "r/GIDLE", "description": "Subreddit focused on the K-pop group (G)I-DLE.", "links": {"subreddit": ["GIDLE"]}, "path": {"72-122": [[1687, 870], [1687, 878], [1715, 878], [1715, 870]]}, "center": {"72-122": [1701, 874]}},
+{"id": "13g3og4", "name": "MOONMOON", "description": "MOONMOON is a Twitch streamer. This area includes his emotes moon2Smug and moon2CR, along with his logo and late cate Eddie.", "links": {"website": ["https://www.twitch.tv/moonmoon"], "subreddit": ["MOONMOON_OW"]}, "path": {"106-122": [[1647, 898], [1667, 898], [1667, 903], [1680, 903], [1680, 909], [1692, 909], [1692, 926], [1693, 926], [1693, 943], [1694, 943], [1694, 949], [1695, 950], [1695, 955], [1645, 955], [1645, 903], [1646, 903], [1646, 898]], "62-105": [[1647, 898], [1680, 898], [1680, 909], [1693, 909], [1693, 942], [1685, 942], [1685, 949], [1687, 949], [1687, 955], [1645, 955], [1645, 903], [1646, 903], [1646, 898]], "124-166, T:0-1": [[1646, 898], [1687, 898], [1687, 956], [1654, 956], [1654, 942], [1649, 942], [1649, 921], [1646, 921]]}, "center": {"106-122": [1669, 931], "62-105": [1667, 927], "124-166, T:0-1": [1663, 948]}},
+{"id": "13g3c5j", "name": "r/LOONA", "description": "Subreddit focused on the K-pop girl group Loona.", "links": {"subreddit": ["LOONA"]}, "path": {"85-121": [[1633, 893], [1633, 897], [1659, 897], [1659, 893]], "122-166, T:0-1": [[1633, 893], [1633, 897], [1658, 897], [1658, 893]]}, "center": {"85-121": [1646, 895], "122-166, T:0-1": [1646, 895]}},
+{"id": "13g4sgv", "name": "The Starry Night", "description": "The Starry Night (Dutch: De Sterrennacht) is an oil-on-canvas painting by the Dutch Post-Impressionist 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"]}, "path": {"57-70": [[1623, 809], [1623, 821], [1634, 821], [1634, 830], [1650, 830], [1650, 809]]}, "center": {"57-70": [1642, 818]}},
+{"id": "13g4n8g", "name": "Duden", "description": "Duden is a dictionary of Standard High German, a dialect of the German language used for formal contexts.", "links": {"website": ["https://en.wikipedia.org/wiki/Duden"], "subreddit": ["placeDE", "de", "germany"], "discord": ["placeDE"]}, "path": {"62-68": [[1697, 830], [1697, 844], [1734, 844], [1734, 830]]}, "center": {"62-68": [1716, 837]}},
+{"id": "13g4el8", "name": "Captain America", "description": "Captain America is a superhero from the Marvel comic books.", "links": {"website": ["https://en.wikipedia.org/wiki/Captain_America"]}, "path": {"80-86": [[1681, 812], [1681, 828], [1683, 830], [1685, 830], [1685, 827], [1686, 826], [1686, 825], [1685, 824], [1685, 822], [1686, 822], [1688, 820], [1688, 815], [1685, 812]]}, "center": {"80-86": [1684, 819]}},
+{"id": "13g4e06", "name": "Iron Man", "description": "Iron Man is a superhero from the Marvel comic books.", "links": {"website": ["https://en.wikipedia.org/wiki/Iron_Man"]}, "path": {"63-89": [[1691, 812], [1688, 815], [1688, 820], [1690, 822], [1690, 823], [1689, 824], [1689, 826], [1690, 827], [1690, 830], [1697, 830], [1697, 827], [1698, 826], [1698, 825], [1697, 824], [1697, 822], [1700, 819], [1700, 816], [1697, 812]]}, "center": {"63-89": [1694, 817]}},
+{"id": "13g4cuu", "name": "Abrosexual flag", "description": "A pride flag representing the abrosexual community. Abrosexual refers to an individual whose sexuality is changing or fluid. One can change between any sexualities, whether it be monosexual, multisexual, allosexual, asexual spectrum, etc.", "links": {"website": ["https://lgbta.miraheze.org/wiki/Abrosexual"]}, "path": {"77-81, 84-85": [[1628, 824], [1628, 830], [1633, 830], [1633, 824]]}, "center": {"77-81, 84-85": [1631, 827]}},
+{"id": "13g486r", "name": "Kobe Bryant", "description": "Kobe Bryant (#24) is a legendary basketball player who passed away tragically in 2020. Bryant's gold and purple jersey is heavily associated with him and his career with the Los Angeles Lakers in the National Basketball Association (NBA).\n\nThis art was drawn by streamer xQc.", "links": {"website": ["https://en.wikipedia.org/wiki/Kobe_Bryant", "https://www.twitch.tv/xqcow"], "subreddit": ["xqcow"]}, "path": {"123-125": [[1645, 868], [1645, 1044], [1830, 1044], [1830, 869]], "126-147": [[1723, 869], [1716, 876], [1712, 886], [1712, 899], [1716, 901], [1717, 905], [1717, 917], [1715, 917], [1708, 923], [1700, 925], [1688, 931], [1676, 943], [1671, 952], [1656, 969], [1649, 976], [1646, 981], [1646, 990], [1658, 1007], [1679, 1027], [1693, 1035], [1693, 1043], [1778, 1043], [1776, 1037], [1776, 1031], [1777, 1028], [1782, 1026], [1826, 982], [1827, 980], [1827, 972], [1822, 966], [1815, 957], [1800, 946], [1775, 923], [1761, 923], [1756, 920], [1750, 920], [1747, 911], [1747, 904], [1752, 897], [1747, 875], [1741, 869]]}, "center": {"123-125": [1737, 956], "126-147": [1733, 980]}},
+{"id": "13go1p1", "name": "r/touhou", "description": "r/touhou is a subreddit focused on the Touhou Project games.\n\nThis text was originally a logo for the Marvel superhero comics. Stray Touhou fans kept changing this logo to \"Touhou\". In the end, the Touhou Hijack server gave up convincing people. Sorry Marvel fans.", "links": {"subreddit": ["touhou"]}, "path": {"107-166, T:0-1": [[1699, 822], [1699, 831], [1728, 831], [1728, 822]]}, "center": {"107-166, T:0-1": [1714, 827]}},
+{"id": "twy1jw", "name": "The Legacy", "description": "The Legacy is a daily-addition Discord server with a map gimmick to find people from all regions of the world. The motto of the server is New Leg, signifying each new day. This art features a part of The Legacy's logo, an arm and leg.", "links": {"subreddit": ["newleg"]}, "path": {"69-166, T:0-1": [[1738, 824], [1736, 826], [1736, 829], [1738, 831], [1754, 831], [1757, 828], [1757, 824], [1754, 821], [1752, 823], [1752, 826], [1750, 826], [1750, 824]]}, "center": {"69-166, T:0-1": [1747, 828]}},
+{"id": "13gqfuf", "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": {"75-97": [[1711, 887], [1711, 909], [1717, 909], [1717, 887]]}, "center": {"75-97": [1714, 898]}},
+{"id": "13gq8is", "name": "Edmonton Oilers", "description": "The Edmonton Oilers are a National Hockey League team based in Edmonton, Alberta, Canada.", "links": {"website": ["https://www.nhl.com/oilers", "https://en.wikipedia.org/wiki/Edmonton_Oilers"], "subreddit": ["EdmontonOilers"]}, "path": {"75-122": [[1773, 869], [1770, 872], [1768, 876], [1768, 882], [1771, 887], [1774, 888], [1782, 888], [1786, 881], [1786, 877], [1783, 871], [1781, 869]]}, "center": {"75-122": [1777, 879]}},
+{"id": "13himoo", "name": "KOI", "description": "KOI is a content creator team on Twitch.", "links": {"website": ["https://www.twitch.tv/koi"]}, "path": {"138-166, T:0-1": [[1892, 893], [1892, 904], [1900, 904], [1900, 893]]}, "center": {"138-166, T:0-1": [1896, 899]}},
+{"id": "13hikya", "name": "Nanite System Operative", "description": "Nanite System Operatives are one of the factions in the game PlanetSide 2.", "links": {"website": ["https://planetside.fandom.com/wiki/Nanite_Systems_Operative"], "subreddit": ["Planetside"]}, "path": {"98-166, T:0-1": [[1869, 894], [1869, 915], [1870, 915], [1874, 911], [1872, 909], [1871, 907], [1871, 901], [1872, 900], [1872, 896], [1870, 894]]}, "center": {"98-166, T:0-1": [1871, 911]}},
+{"id": "13hik47", "name": "Vanu Sovereignty", "description": "The Vanu Sovereignty is one of the factions in the game PlanetSide 2.", "links": {"website": ["https://planetside.fandom.com/wiki/Vanu_Sovereignty"], "subreddit": ["Planetside"]}, "path": {"98-166, T:0-1": [[1870, 893], [1870, 894], [1872, 896], [1874, 896], [1875, 895], [1883, 895], [1886, 897], [1888, 897], [1891, 894], [1891, 893]]}, "center": {"98-166, T:0-1": [1886, 895]}},
+{"id": "13hij9x", "name": "New Conglomerate", "description": "The New Conglomerate is one of the factions in the game PlanetSide 2.", "links": {"website": ["https://planetside.fandom.com/wiki/New_Conglomerate"], "subreddit": ["Planetside"]}, "path": {"98-166, T:0-1": [[1891, 894], [1887, 898], [1890, 903], [1890, 907], [1887, 911], [1891, 915], [1892, 915], [1892, 894]]}, "center": {"98-166, T:0-1": [1890, 899]}},
+{"id": "13hiikh", "name": "Terran Republic", "description": "The Terran Republic is one of the factions in the game PlanetSide 2.", "links": {"website": ["https://planetside.fandom.com/wiki/Terran_Republic"], "subreddit": ["Planetside"]}, "path": {"100-166, T:0-1": [[1874, 911], [1870, 915], [1870, 916], [1890, 916], [1890, 914], [1887, 911], [1883, 914], [1878, 914]]}, "center": {"100-166, T:0-1": [1874, 914]}},
+{"id": "13hhxl5", "name": "The Stormlight Archive", "description": "The Stormlight Archive is an epic fantasy book series by American author Brandon Sanderson, known for its huge sprawling world filled with lots of characters and factions.", "links": {"website": ["https://www.brandonsanderson.com/the-stormlight-archive-series/", "https://en.wikipedia.org/wiki/The_Stormlight_Archive"], "subreddit": ["Stormlight_Archive", "placeCosmere", "Cosmere", "SFFA"]}, "path": {"63-78, 82-166, T:0-1": [[1830, 881], [1830, 887], [1868, 887], [1868, 881]]}, "center": {"63-78, 82-166, T:0-1": [1849, 884]}},
+{"id": "13hhuag", "name": "Eh!", "description": "\"Eh\" is an interjection that means \"Huh?\" or \"Right?\". While common in many English dialects, it is often associated with Canadian English.", "links": {"website": ["https://en.wikipedia.org/wiki/Eh#Canada"], "subreddit": ["placecanada", "canada"]}, "path": {"69-122": [[1807, 889], [1807, 895], [1816, 895], [1816, 889]], "126-166, T:0-1": [[1811, 889], [1811, 895], [1820, 895], [1820, 889]]}, "center": {"69-122": [1812, 892], "126-166, T:0-1": [1816, 892]}},
+{"id": "13hhqe8", "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": {"125-166, 67-122, T:0-1": [[1820, 891], [1820, 893], [1822, 895], [1824, 895], [1826, 897], [1826, 902], [1823, 909], [1823, 913], [1825, 913], [1825, 909], [1828, 901], [1828, 894], [1825, 891]]}, "center": {"125-166, 67-122, T:0-1": [1826, 894]}},
+{"id": "13hhnl3", "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": {"125-166, 66-122, T:0-1": [[1814, 895], [1811, 898], [1811, 900], [1807, 900], [1807, 902], [1810, 906], [1810, 913], [1828, 913], [1830, 911], [1830, 904], [1828, 904], [1826, 907], [1826, 902], [1825, 902], [1823, 904], [1823, 901], [1825, 899], [1819, 895]]}, "center": {"125-166, 66-122, T:0-1": [1816, 904]}},
+{"id": "13hga6l", "name": "Bisexual Among Us crewmate", "description": "An Among Us crewmate in the colors of the bisexual pride flag. Bisexual people are sexually attracted to both males and females.", "links": {"website": ["https://en.wikipedia.org/wiki/Bisexuality"], "subreddit": ["bisexual"]}, "path": {"161-167": [[1862, 856], [1862, 862], [1866, 862], [1866, 860], [1867, 859], [1867, 858], [1865, 856]]}, "center": {"161-167": [1864, 859]}},
+{"id": "13hhzdt", "name": "Malazan Book of the Fallen", "description": "Malazan Book of the Fallen is a fantasy book series by Steven Erikson and Ian C. Esslemont.", "links": {"website": ["https://www.brandonsanderson.com/the-stormlight-archive-series/", "https://en.wikipedia.org/wiki/Malazan_Book_of_the_Fallen"], "subreddit": ["Malazan", "SFFA"]}, "path": {"63-78, 83-166, T:0-1": [[1832, 943], [1832, 948], [1866, 948], [1866, 943]]}, "center": {"63-78, 83-166, T:0-1": [1849, 946]}},
+{"id": "tx7imp", "name": "Andalusian Among Us crewmates", "description": "These Among Us crewmates were drawn by the community of IlloJuan, a Twitch streamer and YouTuber from the autonomous community of Andalusia, Spain.", "links": {"website": ["https://www.hispacachimba.es/andalushisha/", "https://www.twitch.tv/illojuan", "https://www.youtube.com/@IlloJuan_"], "subreddit": ["LMDShow"]}, "path": {"156-166, T:0-1": [[1886, 856], [1884, 858], [1886, 860], [1886, 861], [1884, 861], [1882, 863], [1882, 864], [1883, 865], [1883, 867], [1887, 867], [1887, 866], [1889, 866], [1890, 865], [1890, 864], [1891, 863], [1888, 860], [1890, 858], [1888, 856]]}, "center": {"156-166, T:0-1": [1887, 863]}},
+{"id": "13hl0t9", "name": "Karl", "description": "Karl is a pet seagull in the TV series Our Flag Means Death.", "links": {"website": ["https://our-flag-means-death.fandom.com/wiki/Karl_the_Seagull"], "subreddit": ["OurFlagMeansDeath"]}, "path": {"127-143": [[1922, 922], [1920, 924], [1921, 925], [1921, 927], [1922, 927], [1922, 929], [1924, 929], [1924, 927], [1925, 927], [1925, 924], [1923, 924], [1923, 922]], "150-166, T:0-1": [[1912, 910], [1910, 912], [1911, 913], [1911, 914], [1913, 916], [1915, 914], [1915, 912], [1913, 912], [1913, 910]]}, "center": {"127-143": [1923, 926], "150-166, T:0-1": [1913, 913]}},
+{"id": "13hkwy4", "name": "Blackbeard's flag", "description": "This is the flag used by the pirate Blackbeard in the TV series Our Flag Means Death.", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"63-78": [[1807, 804], [1803, 808], [1803, 813], [1805, 813], [1805, 826], [1813, 826], [1813, 825], [1821, 825], [1823, 822], [1823, 818], [1821, 816], [1820, 816], [1820, 812], [1817, 812], [1817, 810], [1815, 810], [1814, 809], [1812, 809], [1812, 804]], "100-166, T:0-1": [[1900, 895], [1900, 898], [1901, 898], [1901, 902], [1905, 902], [1905, 905], [1903, 905], [1903, 915], [1911, 915], [1911, 910], [1916, 910], [1917, 911], [1920, 908], [1920, 907], [1918, 905], [1917, 905], [1917, 901], [1914, 901], [1912, 899], [1910, 901], [1910, 893], [1904, 893], [1902, 893]]}, "center": {"63-78": [1812, 817], "100-166, T:0-1": [1912, 905]}},
+{"id": "13hktj5", "name": "Blackbeard", "description": "Blackbeard, real name Edward Teach, is one of the main characters of the TV series Our Flag Means Death. The character is based on the real Blackbeard, an English pirate in the early 18th century. His story forms the basis of the TV series Our Flag Means Death.", "links": {"website": ["https://our-flag-means-death.fandom.com/wiki/Blackbeard"], "subreddit": ["OurFlagMeansDeath"]}, "path": {"162-167, T:0-1": [[1908, 918], [1905, 921], [1904, 925], [1902, 925], [1902, 927], [1903, 928], [1903, 930], [1906, 934], [1912, 934], [1915, 930], [1915, 926], [1913, 923], [1913, 921], [1910, 918]]}, "center": {"162-167, T:0-1": [1909, 928]}},
+{"id": "13hks74", "name": "Stede Bonnet", "description": "Stede Bonnet is one of the main characters of the TV series Our Flag Means Death. The character is based on the real Stede Bonnet, an English pirate in the early 18th century", "links": {"website": ["https://our-flag-means-death.fandom.com/wiki/Stede_Bonnet"], "subreddit": ["OurFlagMeansDeath"]}, "path": {"162-166, T:0-1": [[1924, 918], [1921, 921], [1921, 925], [1919, 925], [1919, 930], [1922, 934], [1928, 934], [1931, 930], [1931, 925], [1929, 925], [1929, 921], [1926, 918]]}, "center": {"162-166, T:0-1": [1925, 929]}},
+{"id": "13hkf6u", "name": "xQc", "description": "xQc (a.k.a. xQcOW; real name Félix Lengyel) is a popular Twitch streamer. His logo is a depiction of the character Winston from the game Overwatch.\n\nxQc was known by many as the public enemy of r/place, responsible for the many wars and destruction.", "links": {"website": ["https://www.twitch.tv/xqcow", "https://en.wikipedia.org/wiki/XQc"]}, "path": {"79-81": [[1829, 830], [1829, 1000], [2000, 1000], [2000, 830]]}, "center": {"79-81": [1915, 915]}},
+{"id": "13hk919", "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": {"97-105": [[1823, 805], [1823, 816], [1836, 816], [1836, 805]]}, "center": {"97-105": [1830, 811]}},
+{"id": "13hk6vp", "name": "r/Wallstreetsilver", "description": "r/Wallstreetsilver is a subreddit that promotes investing in silver (ticker symbol PSLV) as a commodity on the stock market.", "links": {"subreddit": ["Wallstreetsilver"]}, "path": {"58-141": [[1841, 820], [1841, 826], [1918, 826], [1920, 824], [1920, 822], [1918, 820]]}, "center": {"58-141": [1880, 823]}},
+{"id": "13hl6p7", "name": "Olivia", "description": "Olivia is a seagull in the TV series Our Flag Means death. She is the love interest of the seagull Karl.", "links": {"subreddit": ["OurFlagMeansDeath"]}, "path": {"151-161": [[1919, 892], [1919, 894], [1917, 894], [1917, 896], [1919, 898], [1921, 896], [1921, 895], [1922, 894], [1920, 892]], "162-167, T:0-1": [[1918, 892], [1916, 894], [1917, 895], [1917, 896], [1919, 898], [1921, 896], [1921, 894], [1919, 894], [1919, 892]]}, "center": {"151-161": [1919, 895], "162-167, T:0-1": [1919, 895]}},
+{"id": "13hlqjg", "name": "Flipnote Frog", "description": "Flipnote Frog is the mascot of the Flipnote Studio application and Flipnote Hatena service for the Nintendo DSi. The application was revived by Sudomemo after its official closure.", "links": {"website": ["https://flipnote.fandom.com/wiki/Frog", "https://en.wikipedia.org/wiki/Flipnote_Studio", "https://www.sudomemo.net"], "subreddit": ["FlipnoteStudio3D", "sudomemo"]}, "path": {"159-166, T:0-1": [[1330, 144], [1327, 147], [1325, 152], [1325, 155], [1327, 157], [1338, 157], [1340, 155], [1340, 152], [1337, 146], [1335, 144]]}, "center": {"159-166, T:0-1": [1333, 151]}}
]
\ No newline at end of file
diff --git a/web/index.html b/web/index.html
index a210e8396..cb1f76f55 100644
--- a/web/index.html
+++ b/web/index.html
@@ -317,7 +317,7 @@ Need Help?