Knack-Scraper/visualisation/knack_visualization.ipynb
2026-01-18 15:43:35 +01:00

1381 lines
1 MiB

{
"cells": [
{
"cell_type": "markdown",
"id": "8495708c",
"metadata": {},
"source": [
"# Knack Database Visualization\n",
"\n",
"This notebook explores and visualizes the findings from the `knack.sqlite` database using Altair for interactive data visualizations."
]
},
{
"cell_type": "markdown",
"id": "75cdd349",
"metadata": {},
"source": [
"## 1. Import Required Libraries\n",
"\n",
"Import necessary libraries for data manipulation and visualization."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "c99dde85",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Libraries imported successfully!\n"
]
}
],
"source": [
"import sqlite3\n",
"import pandas as pd\n",
"import altair as alt\n",
"from pathlib import Path\n",
"\n",
"# Configure Altair\n",
"alt.data_transformers.disable_max_rows()\n",
"alt.renderers.enable('default')\n",
"\n",
"print(\"Libraries imported successfully!\")"
]
},
{
"cell_type": "markdown",
"id": "198121f5",
"metadata": {},
"source": [
"## 2. Connect to SQLite Database\n",
"\n",
"Establish connection to the knack.sqlite database and explore its structure."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "98ddc787",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Tables in the database:\n",
" - posts\n",
" - posttags\n",
" - postcategories\n",
" - tags\n",
" - categories\n",
" - authors\n",
" - post_authors\n"
]
}
],
"source": [
"# Connect to the database\n",
"db_path = Path('../data/knack.transformed.sqlite')\n",
"conn = sqlite3.connect(db_path)\n",
"cursor = conn.cursor()\n",
"\n",
"# Get all table names\n",
"cursor.execute(\"SELECT name FROM sqlite_master WHERE type='table';\")\n",
"tables = cursor.fetchall()\n",
"\n",
"print(\"Tables in the database:\")\n",
"for table in tables:\n",
" print(f\" - {table[0]}\")"
]
},
{
"cell_type": "markdown",
"id": "4f216388",
"metadata": {},
"source": [
"## 3. Explore Database Schema\n",
"\n",
"Examine the structure of each table to understand the data."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "e51dd105",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"============================================================\n",
"Table: posts\n",
"============================================================\n",
"\n",
"Columns:\n",
" index INTEGER \n",
" id INTEGER \n",
" title TEXT \n",
" author TEXT \n",
" date TIMESTAMP \n",
" category TEXT \n",
" url TEXT \n",
" img_link TEXT \n",
" tags TEXT \n",
" text TEXT \n",
" html TEXT \n",
" scraped_at TIMESTAMP \n",
" is_cleaned BOOLEAN \n",
" embedding BLOB \n",
" umap_x REAL \n",
" umap_y REAL \n",
"\n",
"Total rows: 3678\n",
"\n",
"============================================================\n",
"Table: posttags\n",
"============================================================\n",
"\n",
"Columns:\n",
" post_id INTEGER \n",
" tag_id INTEGER \n",
"\n",
"Total rows: 14272\n",
"\n",
"============================================================\n",
"Table: postcategories\n",
"============================================================\n",
"\n",
"Columns:\n",
" post_id INTEGER \n",
" category_id INTEGER \n",
"\n",
"Total rows: 3691\n",
"\n",
"============================================================\n",
"Table: tags\n",
"============================================================\n",
"\n",
"Columns:\n",
" id INTEGER \n",
" tag TEXT \n",
"\n",
"Total rows: 64\n",
"\n",
"============================================================\n",
"Table: categories\n",
"============================================================\n",
"\n",
"Columns:\n",
" id INTEGER \n",
" category TEXT \n",
"\n",
"Total rows: 6\n",
"\n",
"============================================================\n",
"Table: authors\n",
"============================================================\n",
"\n",
"Columns:\n",
" id INTEGER \n",
" name TEXT \n",
" type TEXT \n",
" created_at TIMESTAMP \n",
"\n",
"Total rows: 1143\n",
"\n",
"============================================================\n",
"Table: post_authors\n",
"============================================================\n",
"\n",
"Columns:\n",
" post_id INTEGER \n",
" author_id INTEGER \n",
"\n",
"Total rows: 4934\n"
]
}
],
"source": [
"# Examine schema for each table\n",
"for table in tables:\n",
" table_name = table[0]\n",
" print(f\"\\n{'='*60}\")\n",
" print(f\"Table: {table_name}\")\n",
" print('='*60)\n",
" \n",
" # Get column information\n",
" cursor.execute(f\"PRAGMA table_info({table_name})\")\n",
" columns = cursor.fetchall()\n",
" \n",
" print(\"\\nColumns:\")\n",
" for col in columns:\n",
" print(f\" {col[1]:20} {col[2]:15} {'NOT NULL' if col[3] else ''}\")\n",
" \n",
" # Get row count\n",
" cursor.execute(f\"SELECT COUNT(*) FROM {table_name}\")\n",
" count = cursor.fetchone()[0]\n",
" print(f\"\\nTotal rows: {count}\")"
]
},
{
"cell_type": "markdown",
"id": "25ffce32",
"metadata": {},
"source": [
"## 4. Load Data from Database\n",
"\n",
"Load the data from tables into pandas DataFrames for analysis and visualization."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "1459d68a",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loaded posts: 3678 rows, 16 columns\n",
"Loaded posttags: 14272 rows, 2 columns\n",
"Loaded postcategories: 3691 rows, 2 columns\n",
"Loaded tags: 64 rows, 2 columns\n",
"Loaded categories: 6 rows, 2 columns\n",
"Loaded authors: 1143 rows, 4 columns\n",
"Loaded post_authors: 4934 rows, 2 columns\n",
"\n",
"Available dataframes: ['posts', 'posttags', 'postcategories', 'tags', 'categories', 'authors', 'post_authors']\n"
]
}
],
"source": [
"# Load all tables into DataFrames\n",
"dataframes = {}\n",
"\n",
"for table in tables:\n",
" table_name = table[0]\n",
" query = f\"SELECT * FROM {table_name}\"\n",
" df = pd.read_sql_query(query, conn)\n",
" dataframes[table_name] = df\n",
" print(f\"Loaded {table_name}: {df.shape[0]} rows, {df.shape[1]} columns\")\n",
"\n",
"# Display available dataframes\n",
"print(f\"\\nAvailable dataframes: {list(dataframes.keys())}\")"
]
},
{
"cell_type": "markdown",
"id": "c34b1bc5",
"metadata": {},
"source": [
"## 5. Explore Data Structure\n",
"\n",
"Examine the first dataframe to understand the data better."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "91616185",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Exploring: posts\n",
"\n",
"Shape: (3678, 16)\n",
"\n",
"Data types:\n",
"index int64\n",
"id int64\n",
"title object\n",
"author object\n",
"date object\n",
"category object\n",
"url object\n",
"img_link object\n",
"tags object\n",
"text object\n",
"html object\n",
"scraped_at object\n",
"is_cleaned int64\n",
"embedding object\n",
"umap_x float64\n",
"umap_y float64\n",
"dtype: object\n",
"\n",
"Missing values:\n",
"index 0\n",
"id 0\n",
"title 0\n",
"author 3\n",
"date 3\n",
"category 3\n",
"url 0\n",
"img_link 148\n",
"tags 4\n",
"text 0\n",
"html 0\n",
"scraped_at 0\n",
"is_cleaned 0\n",
"embedding 0\n",
"umap_x 0\n",
"umap_y 0\n",
"dtype: int64\n"
]
}
],
"source": [
"# Select the first table to explore (or specify a specific table)\n",
"if dataframes:\n",
" first_table = list(dataframes.keys())[0]\n",
" df = dataframes[first_table]\n",
" \n",
" print(f\"Exploring: {first_table}\")\n",
" print(f\"\\nShape: {df.shape}\")\n",
" print(f\"\\nData types:\\n{df.dtypes}\")\n",
" \n",
" print(f\"\\nMissing values:\")\n",
" print(df.isnull().sum())"
]
},
{
"cell_type": "markdown",
"id": "f9b0e8d7",
"metadata": {},
"source": [
"## 7. Create Time Series Visualizations\n",
"\n",
"If the data contains temporal information, create time series visualizations."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "2190a06b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Found potential date columns: ['date']\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/var/folders/j5/hpq7xq6x1p18cds26_lb_3gr0000gn/T/ipykernel_46007/4118830821.py:19: FutureWarning: 'M' is deprecated and will be removed in a future version, please use 'ME' instead.\n",
" time_series = df.groupby(pd.Grouper(key=date_col, freq='M')).size().reset_index(name='count')\n"
]
},
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-db162076b288487883f31ea35d9e7ce0.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-db162076b288487883f31ea35d9e7ce0.vega-embed details,\n",
" #altair-viz-db162076b288487883f31ea35d9e7ce0.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-db162076b288487883f31ea35d9e7ce0\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-db162076b288487883f31ea35d9e7ce0\") {\n",
" outputDiv = document.getElementById(\"altair-viz-db162076b288487883f31ea35d9e7ce0\");\n",
" }\n",
"\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@6?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@6.1.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@7?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" let deps = [\"vega-embed\"];\n",
" require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"6\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"6.1.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"7\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"data\": {\"name\": \"data-46d42ade7a9acc12732d479328828775\"}, \"mark\": {\"type\": \"line\", \"point\": true}, \"encoding\": {\"tooltip\": [{\"field\": \"date\", \"type\": \"temporal\"}, {\"field\": \"count\", \"type\": \"quantitative\"}], \"x\": {\"field\": \"date\", \"title\": \"Date\", \"type\": \"temporal\"}, \"y\": {\"field\": \"count\", \"title\": \"Count\", \"type\": \"quantitative\"}}, \"height\": 400, \"params\": [{\"name\": \"param_1e9efca18e7a2868\", \"select\": {\"type\": \"interval\", \"encodings\": [\"x\", \"y\"]}, \"bind\": \"scales\"}], \"title\": \"Records Over Time\", \"width\": 700, \"$schema\": \"https://vega.github.io/schema/vega-lite/v6.1.0.json\", \"datasets\": {\"data-46d42ade7a9acc12732d479328828775\": [{\"date\": \"2016-11-30T00:00:00\", \"count\": 1}, {\"date\": \"2016-12-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-01-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-02-28T00:00:00\", \"count\": 0}, {\"date\": \"2017-03-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-04-30T00:00:00\", \"count\": 0}, {\"date\": \"2017-05-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-06-30T00:00:00\", \"count\": 0}, {\"date\": \"2017-07-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-08-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-09-30T00:00:00\", \"count\": 0}, {\"date\": \"2017-10-31T00:00:00\", \"count\": 0}, {\"date\": \"2017-11-30T00:00:00\", \"count\": 0}, {\"date\": \"2017-12-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-01-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-02-28T00:00:00\", \"count\": 0}, {\"date\": \"2018-03-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-04-30T00:00:00\", \"count\": 0}, {\"date\": \"2018-05-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-06-30T00:00:00\", \"count\": 0}, {\"date\": \"2018-07-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-08-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-09-30T00:00:00\", \"count\": 0}, {\"date\": \"2018-10-31T00:00:00\", \"count\": 0}, {\"date\": \"2018-11-30T00:00:00\", \"count\": 0}, {\"date\": \"2018-12-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-01-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-02-28T00:00:00\", \"count\": 0}, {\"date\": \"2019-03-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-04-30T00:00:00\", \"count\": 0}, {\"date\": \"2019-05-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-06-30T00:00:00\", \"count\": 0}, {\"date\": \"2019-07-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-08-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-09-30T00:00:00\", \"count\": 0}, {\"date\": \"2019-10-31T00:00:00\", \"count\": 0}, {\"date\": \"2019-11-30T00:00:00\", \"count\": 0}, {\"date\": \"2019-12-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-01-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-02-29T00:00:00\", \"count\": 0}, {\"date\": \"2020-03-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-04-30T00:00:00\", \"count\": 0}, {\"date\": \"2020-05-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-06-30T00:00:00\", \"count\": 0}, {\"date\": \"2020-07-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-08-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-09-30T00:00:00\", \"count\": 0}, {\"date\": \"2020-10-31T00:00:00\", \"count\": 0}, {\"date\": \"2020-11-30T00:00:00\", \"count\": 0}, {\"date\": \"2020-12-31T00:00:00\", \"count\": 0}, {\"date\": \"2021-01-31T00:00:00\", \"count\": 0}, {\"date\": \"2021-02-28T00:00:00\", \"count\": 0}, {\"date\": \"2021-03-31T00:00:00\", \"count\": 0}, {\"date\": \"2021-04-30T00:00:00\", \"count\": 1}, {\"date\": \"2021-05-31T00:00:00\", \"count\": 2}, {\"date\": \"2021-06-30T00:00:00\", \"count\": 7}, {\"date\": \"2021-07-31T00:00:00\", \"count\": 12}, {\"date\": \"2021-08-31T00:00:00\", \"count\": 34}, {\"date\": \"2021-09-30T00:00:00\", \"count\": 38}, {\"date\": \"2021-10-31T00:00:00\", \"count\": 36}, {\"date\": \"2021-11-30T00:00:00\", \"count\": 53}, {\"date\": \"2021-12-31T00:00:00\", \"count\": 68}, {\"date\": \"2022-01-31T00:00:00\", \"count\": 51}, {\"date\": \"2022-02-28T00:00:00\", \"count\": 37}, {\"date\": \"2022-03-31T00:00:00\", \"count\": 33}, {\"date\": \"2022-04-30T00:00:00\", \"count\": 25}, {\"date\": \"2022-05-31T00:00:00\", \"count\": 53}, {\"date\": \"2022-06-30T00:00:00\", \"count\": 58}, {\"date\": \"2022-07-31T00:00:00\", \"count\": 34}, {\"date\": \"2022-08-31T00:00:00\", \"count\": 53}, {\"date\": \"2022-09-30T00:00:00\", \"count\": 90}, {\"date\": \"2022-10-31T00:00:00\", \"count\": 77}, {\"date\": \"2022-11-30T00:00:00\", \"count\": 94}, {\"date\": \"2022-12-31T00:00:00\", \"count\": 76}, {\"date\": \"2023-01-31T00:00:00\", \"count\": 55}, {\"date\": \"2023-02-28T00:00:00\", \"count\": 73}, {\"date\": \"2023-03-31T00:00:00\", \"count\": 64}, {\"date\": \"2023-04-30T00:00:00\", \"count\": 70}, {\"date\": \"2023-05-31T00:00:00\", \"count\": 47}, {\"date\": \"2023-06-30T00:00:00\", \"count\": 86}, {\"date\": \"2023-07-31T00:00:00\", \"count\": 40}, {\"date\": \"2023-08-31T00:00:00\", \"count\": 56}, {\"date\": \"2023-09-30T00:00:00\", \"count\": 56}, {\"date\": \"2023-10-31T00:00:00\", \"count\": 72}, {\"date\": \"2023-11-30T00:00:00\", \"count\": 103}, {\"date\": \"2023-12-31T00:00:00\", \"count\": 91}, {\"date\": \"2024-01-31T00:00:00\", \"count\": 128}, {\"date\": \"2024-02-29T00:00:00\", \"count\": 159}, {\"date\": \"2024-03-31T00:00:00\", \"count\": 136}, {\"date\": \"2024-04-30T00:00:00\", \"count\": 75}, {\"date\": \"2024-05-31T00:00:00\", \"count\": 68}, {\"date\": \"2024-06-30T00:00:00\", \"count\": 118}, {\"date\": \"2024-07-31T00:00:00\", \"count\": 109}, {\"date\": \"2024-08-31T00:00:00\", \"count\": 74}, {\"date\": \"2024-09-30T00:00:00\", \"count\": 77}, {\"date\": \"2024-10-31T00:00:00\", \"count\": 47}, {\"date\": \"2024-11-30T00:00:00\", \"count\": 70}, {\"date\": \"2024-12-31T00:00:00\", \"count\": 50}, {\"date\": \"2025-01-31T00:00:00\", \"count\": 75}, {\"date\": \"2025-02-28T00:00:00\", \"count\": 53}, {\"date\": \"2025-03-31T00:00:00\", \"count\": 77}, {\"date\": \"2025-04-30T00:00:00\", \"count\": 53}, {\"date\": \"2025-05-31T00:00:00\", \"count\": 78}, {\"date\": \"2025-06-30T00:00:00\", \"count\": 91}, {\"date\": \"2025-07-31T00:00:00\", \"count\": 28}, {\"date\": \"2025-08-31T00:00:00\", \"count\": 55}, {\"date\": \"2025-09-30T00:00:00\", \"count\": 50}, {\"date\": \"2025-10-31T00:00:00\", \"count\": 80}, {\"date\": \"2025-11-30T00:00:00\", \"count\": 95}, {\"date\": \"2025-12-31T00:00:00\", \"count\": 83}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.Chart(...)"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Check for date/time columns and create time series visualizations\n",
"if dataframes:\n",
" df = dataframes[list(dataframes.keys())[0]]\n",
" \n",
" # Look for columns that might contain dates (check column names)\n",
" date_like_cols = [col for col in df.columns if any(\n",
" keyword in col.lower() for keyword in ['date', 'time', 'created', 'updated', 'timestamp']\n",
" )]\n",
" \n",
" if date_like_cols:\n",
" print(f\"Found potential date columns: {date_like_cols}\")\n",
" \n",
" # Try to convert the first date-like column to datetime\n",
" date_col = date_like_cols[0]\n",
" try:\n",
" df[date_col] = pd.to_datetime(df[date_col], errors='coerce')\n",
" \n",
" # Create a time series chart - count records over time\n",
" time_series = df.groupby(pd.Grouper(key=date_col, freq='M')).size().reset_index(name='count')\n",
" \n",
" chart = alt.Chart(time_series).mark_line(point=True).encode(\n",
" x=alt.X(f'{date_col}:T', title='Date'),\n",
" y=alt.Y('count:Q', title='Count'),\n",
" tooltip=[date_col, 'count']\n",
" ).properties(\n",
" title=f'Records Over Time',\n",
" width=700,\n",
" height=400\n",
" ).interactive()\n",
" \n",
" display(chart)\n",
" except Exception as e:\n",
" print(f\"Could not create time series chart: {e}\")\n",
" else:\n",
" print(\"No date/time columns found\")"
]
},
{
"cell_type": "markdown",
"id": "793026df",
"metadata": {},
"source": [
"### Articles per Category\n",
"\n",
"Visualize the distribution of articles across different categories."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "22c47b71",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"dict_keys(['posts', 'posttags', 'postcategories', 'tags', 'categories', 'authors', 'post_authors'])"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dataframes.keys()"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "1ac9fae5",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-e52d05e0396549ee8f35837b5e9ff429.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-e52d05e0396549ee8f35837b5e9ff429.vega-embed details,\n",
" #altair-viz-e52d05e0396549ee8f35837b5e9ff429.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-e52d05e0396549ee8f35837b5e9ff429\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-e52d05e0396549ee8f35837b5e9ff429\") {\n",
" outputDiv = document.getElementById(\"altair-viz-e52d05e0396549ee8f35837b5e9ff429\");\n",
" }\n",
"\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@6?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@6.1.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@7?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" let deps = [\"vega-embed\"];\n",
" require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"6\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"6.1.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"7\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"data\": {\"name\": \"data-bcc9299bb0ac42d8e487fea07e1a2e0a\"}, \"mark\": {\"type\": \"bar\"}, \"encoding\": {\"color\": {\"field\": \"article_count\", \"legend\": null, \"scale\": {\"scheme\": \"viridis\"}, \"type\": \"quantitative\"}, \"tooltip\": [{\"field\": \"category\", \"type\": \"nominal\"}, {\"field\": \"article_count\", \"title\": \"Articles\", \"type\": \"quantitative\"}], \"x\": {\"axis\": {\"labelAngle\": -45}, \"field\": \"category\", \"sort\": \"-y\", \"title\": \"Category\", \"type\": \"nominal\"}, \"y\": {\"field\": \"article_count\", \"title\": \"Number of Articles\", \"type\": \"quantitative\"}}, \"height\": 450, \"params\": [{\"name\": \"param_1e9efca18e7a2868\", \"select\": {\"type\": \"interval\", \"encodings\": [\"x\", \"y\"]}, \"bind\": \"scales\"}], \"title\": \"Distribution of Articles per Category\", \"width\": 700, \"$schema\": \"https://vega.github.io/schema/vega-lite/v6.1.0.json\", \"datasets\": {\"data-bcc9299bb0ac42d8e487fea07e1a2e0a\": [{\"category\": \"Presseartikel\", \"article_count\": 2098}, {\"category\": \"Theorie und Diskussion\", \"article_count\": 533}, {\"category\": \"\\u00dcberregional\", \"article_count\": 365}, {\"category\": \"Praxis\", \"article_count\": 340}, {\"category\": \"Aufrufe\", \"article_count\": 339}, {\"category\": \"Allgemein\", \"article_count\": 16}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.Chart(...)"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Total categories: 6\n",
"Most articles in a category: 2098\n",
"Average articles per category: 615.17\n"
]
}
],
"source": [
"# Check if categorisation data exists and create histogram\n",
"if 'postcategories' in dataframes and 'categories' in dataframes:\n",
" df_post_cat = dataframes['postcategories']\n",
" df_categories = dataframes['categories']\n",
" \n",
" # Join postcategories with categories to get category names\n",
" if 'category_id' in df_post_cat.columns and 'id' in df_categories.columns and 'category' in df_categories.columns:\n",
" # Merge the two tables\n",
" df_merged = df_post_cat.merge(\n",
" df_categories[['id', 'category']], \n",
" left_on='category_id', \n",
" right_on='id',\n",
" how='left'\n",
" )\n",
" \n",
" # Count articles per category\n",
" category_counts = df_merged['category'].value_counts().reset_index()\n",
" category_counts.columns = ['category', 'article_count']\n",
" \n",
" # Sort by count descending\n",
" category_counts = category_counts.sort_values('article_count', ascending=False)\n",
" \n",
" chart = alt.Chart(category_counts).mark_bar().encode(\n",
" x=alt.X('category:N', sort='-y', title='Category', axis=alt.Axis(labelAngle=-45)),\n",
" y=alt.Y('article_count:Q', title='Number of Articles'),\n",
" color=alt.Color('article_count:Q', scale=alt.Scale(scheme='viridis'), legend=None),\n",
" tooltip=['category', alt.Tooltip('article_count:Q', title='Articles')]\n",
" ).properties(\n",
" title='Distribution of Articles per Category',\n",
" width=700,\n",
" height=450\n",
" ).interactive()\n",
" \n",
" display(chart)\n",
" \n",
" # Show summary statistics\n",
" print(f\"\\nTotal categories: {len(category_counts)}\")\n",
" print(f\"Most articles in a category: {category_counts['article_count'].max()}\")\n",
" print(f\"Average articles per category: {category_counts['article_count'].mean():.2f}\")\n",
" else:\n",
" print(\"Could not find required columns for joining tables\")\n",
"else:\n",
" print(\"Need both 'postcategories' and 'categories' tables in database\")"
]
},
{
"cell_type": "markdown",
"id": "56c89ec3",
"metadata": {},
"source": [
"### Articles per Tag\n",
"\n",
"Visualize the distribution of articles across different tags."
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "95a28c5f",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-daea6be9c09146779826da97ab1a455a.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-daea6be9c09146779826da97ab1a455a.vega-embed details,\n",
" #altair-viz-daea6be9c09146779826da97ab1a455a.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-daea6be9c09146779826da97ab1a455a\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-daea6be9c09146779826da97ab1a455a\") {\n",
" outputDiv = document.getElementById(\"altair-viz-daea6be9c09146779826da97ab1a455a\");\n",
" }\n",
"\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@6?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@6.1.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@7?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" let deps = [\"vega-embed\"];\n",
" require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"6\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"6.1.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"7\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"data\": {\"name\": \"data-7513dd853f3fe31de0b8dc6da8c63658\"}, \"mark\": {\"type\": \"bar\"}, \"encoding\": {\"color\": {\"field\": \"article_count\", \"legend\": null, \"scale\": {\"scheme\": \"oranges\"}, \"type\": \"quantitative\"}, \"tooltip\": [{\"field\": \"tag\", \"type\": \"nominal\"}, {\"field\": \"article_count\", \"title\": \"Articles\", \"type\": \"quantitative\"}], \"x\": {\"axis\": {\"labelAngle\": -45}, \"field\": \"tag\", \"sort\": \"-y\", \"title\": \"Tag\", \"type\": \"nominal\"}, \"y\": {\"field\": \"article_count\", \"title\": \"Number of Articles\", \"type\": \"quantitative\"}}, \"height\": 450, \"params\": [{\"name\": \"param_1e9efca18e7a2868\", \"select\": {\"type\": \"interval\", \"encodings\": [\"x\", \"y\"]}, \"bind\": \"scales\"}], \"title\": \"Distribution of Articles per Tag (Top 30)\", \"width\": 700, \"$schema\": \"https://vega.github.io/schema/vega-lite/v6.1.0.json\", \"datasets\": {\"data-7513dd853f3fe31de0b8dc6da8c63658\": [{\"tag\": \"Antifaschismus\", \"article_count\": 1954}, {\"tag\": \"Repression\", \"article_count\": 1617}, {\"tag\": \"Bullenschweine\", \"article_count\": 900}, {\"tag\": \"Sachsen\", \"article_count\": 875}, {\"tag\": \"Antirassismus\", \"article_count\": 789}, {\"tag\": \"Antisemitismus\", \"article_count\": 646}, {\"tag\": \"Antisexismus\", \"article_count\": 563}, {\"tag\": \"Demonstration\", \"article_count\": 472}, {\"tag\": \"Feminismus\", \"article_count\": 464}, {\"tag\": \"Soziale K\\u00e4mpfe\", \"article_count\": 452}, {\"tag\": \"Recherche\", \"article_count\": 419}, {\"tag\": \"Solidarit\\u00e4t\", \"article_count\": 403}, {\"tag\": \"Knast\", \"article_count\": 328}, {\"tag\": \"Medien\", \"article_count\": 325}, {\"tag\": \"Antikapitalismus\", \"article_count\": 283}, {\"tag\": \"Diskussion\", \"article_count\": 236}, {\"tag\": \"Nationalsozialismus\", \"article_count\": 235}, {\"tag\": \"Militanz\", \"article_count\": 217}, {\"tag\": \"Internationale K\\u00e4mpfe\", \"article_count\": 205}, {\"tag\": \"Wahlen\", \"article_count\": 190}, {\"tag\": \"Freir\\u00e4ume\", \"article_count\": 168}, {\"tag\": \"Antimilitarismus\", \"article_count\": 163}, {\"tag\": \"Gentrifizierung\", \"article_count\": 155}, {\"tag\": \"Auswertung\", \"article_count\": 154}, {\"tag\": \"Krieg\", \"article_count\": 154}, {\"tag\": \"Anarchismus\", \"article_count\": 144}, {\"tag\": \"VS\", \"article_count\": 125}, {\"tag\": \"Geschichte\", \"article_count\": 122}, {\"tag\": \"Klassenkampf\", \"article_count\": 122}, {\"tag\": \"Anarchie\", \"article_count\": 118}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.Chart(...)"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Total tags: 64\n",
"Most articles with a tag: 1954\n",
"Average articles per tag: 223.00\n",
"Median articles per tag: 101.50\n"
]
}
],
"source": [
"# Check if tag data exists and create histogram\n",
"if 'posttags' in dataframes and 'tags' in dataframes:\n",
" df_post_tags = dataframes['posttags']\n",
" df_tags = dataframes['tags']\n",
" \n",
" # Join posttags with tags to get tag names\n",
" if 'tag_id' in df_post_tags.columns and 'id' in df_tags.columns and 'tag' in df_tags.columns:\n",
" # Merge the two tables\n",
" df_merged = df_post_tags.merge(\n",
" df_tags[['id', 'tag']], \n",
" left_on='tag_id', \n",
" right_on='id',\n",
" how='left'\n",
" )\n",
" \n",
" # Count articles per tag\n",
" tag_counts = df_merged['tag'].value_counts().reset_index()\n",
" tag_counts.columns = ['tag', 'article_count']\n",
" \n",
" # Show top 30 tags for readability\n",
" tag_counts_top = tag_counts.head(30).sort_values('article_count', ascending=False)\n",
" \n",
" chart = alt.Chart(tag_counts_top).mark_bar().encode(\n",
" x=alt.X('tag:N', sort='-y', title='Tag', axis=alt.Axis(labelAngle=-45)),\n",
" y=alt.Y('article_count:Q', title='Number of Articles'),\n",
" color=alt.Color('article_count:Q', scale=alt.Scale(scheme='oranges'), legend=None),\n",
" tooltip=['tag', alt.Tooltip('article_count:Q', title='Articles')]\n",
" ).properties(\n",
" title='Distribution of Articles per Tag (Top 30)',\n",
" width=700,\n",
" height=450\n",
" ).interactive()\n",
" \n",
" display(chart)\n",
" \n",
" # Show summary statistics\n",
" print(f\"\\nTotal tags: {len(tag_counts)}\")\n",
" print(f\"Most articles with a tag: {tag_counts['article_count'].max()}\")\n",
" print(f\"Average articles per tag: {tag_counts['article_count'].mean():.2f}\")\n",
" print(f\"Median articles per tag: {tag_counts['article_count'].median():.2f}\")\n",
" else:\n",
" print(\"Could not find required columns for joining tables\")\n",
"else:\n",
" print(\"Need both 'posttags' and 'tags' tables in database\")"
]
},
{
"cell_type": "markdown",
"id": "549e6f38",
"metadata": {},
"source": [
"### Articles per Author\n",
"\n",
"Visualize the distribution of articles across different authors."
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "a49be6f5",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-66148acaf46d499cad8e1b8cfeeef7b6.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-66148acaf46d499cad8e1b8cfeeef7b6.vega-embed details,\n",
" #altair-viz-66148acaf46d499cad8e1b8cfeeef7b6.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-66148acaf46d499cad8e1b8cfeeef7b6\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-66148acaf46d499cad8e1b8cfeeef7b6\") {\n",
" outputDiv = document.getElementById(\"altair-viz-66148acaf46d499cad8e1b8cfeeef7b6\");\n",
" }\n",
"\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@6?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@6.1.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@7?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" let deps = [\"vega-embed\"];\n",
" require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"6\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"6.1.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"7\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"data\": {\"name\": \"data-8a11d99e0e40c7f77ba1d1626e28f92a\"}, \"mark\": {\"type\": \"bar\"}, \"encoding\": {\"color\": {\"field\": \"article_count\", \"legend\": null, \"scale\": {\"scheme\": \"oranges\"}, \"type\": \"quantitative\"}, \"tooltip\": [{\"field\": \"author\", \"type\": \"nominal\"}, {\"field\": \"article_count\", \"title\": \"Articles\", \"type\": \"quantitative\"}], \"x\": {\"axis\": {\"labelAngle\": -45}, \"field\": \"author\", \"sort\": \"-y\", \"title\": \"Author\", \"type\": \"nominal\"}, \"y\": {\"field\": \"article_count\", \"title\": \"Number of Articles\", \"type\": \"quantitative\"}}, \"height\": 450, \"params\": [{\"name\": \"param_1e9efca18e7a2868\", \"select\": {\"type\": \"interval\", \"encodings\": [\"x\", \"y\"]}, \"bind\": \"scales\"}], \"title\": \"Distribution of Articles per Author (Top 30)\", \"width\": 700, \"$schema\": \"https://vega.github.io/schema/vega-lite/v6.1.0.json\", \"datasets\": {\"data-8a11d99e0e40c7f77ba1d1626e28f92a\": [{\"author\": \"LVZ\", \"article_count\": 700}, {\"author\": \"Anonym\", \"article_count\": 309}, {\"author\": \"a\", \"article_count\": 195}, {\"author\": \"Freie Presse\", \"article_count\": 122}, {\"author\": \"taz\", \"article_count\": 107}, {\"author\": \"dpa\", \"article_count\": 97}, {\"author\": \"lvz\", \"article_count\": 92}, {\"author\": \"S\\u00e4chsische Zeitung\", \"article_count\": 73}, {\"author\": \"Frank D\\u00f6ring\", \"article_count\": 70}, {\"author\": \"MDR\", \"article_count\": 69}, {\"author\": \"Antonie Rietzschel\", \"article_count\": 66}, {\"author\": \"Jens Rometsch\", \"article_count\": 62}, {\"author\": \"Denise Peikert\", \"article_count\": 54}, {\"author\": \"ND\", \"article_count\": 44}, {\"author\": \"Kai Kollenberg\", \"article_count\": 43}, {\"author\": \"Matthias Puppe\", \"article_count\": 43}, {\"author\": \"Eric Hofmann\", \"article_count\": 40}, {\"author\": \"Mopo\", \"article_count\": 40}, {\"author\": \"Josa Mania-Schlegel\", \"article_count\": 37}, {\"author\": \"mpu\", \"article_count\": 36}, {\"author\": \"Andreas Debski\", \"article_count\": 34}, {\"author\": \"Leipzig\", \"article_count\": 30}, {\"author\": \"Mark Daniel\", \"article_count\": 29}, {\"author\": \"s\\u00e4chsische Zeitung\", \"article_count\": 28}, {\"author\": \"Zeit\", \"article_count\": 27}, {\"author\": \"Autor\", \"article_count\": 26}, {\"author\": \"Antifaschist\", \"article_count\": 26}, {\"author\": \"Einige\", \"article_count\": 25}, {\"author\": \"Klaus Staeubert\", \"article_count\": 24}, {\"author\": \"Soligruppe\", \"article_count\": 23}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.Chart(...)"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Total authors: 1126\n",
"Most articles with a author: 700\n",
"Average articles per author: 4.38\n",
"Median articles per author: 1.00\n"
]
}
],
"source": [
"# Check if author data exists and create histogram\n",
"if 'post_authors' in dataframes and 'authors' in dataframes:\n",
" df_post_tags = dataframes['post_authors']\n",
" df_tags = dataframes['authors']\n",
" \n",
" # Join posttags with tags to get tag names\n",
" if 'author_id' in df_post_tags.columns and 'id' in df_tags.columns and 'name' in df_tags.columns:\n",
" # Merge the two tables\n",
" df_merged = df_post_tags.merge(\n",
" df_tags[['id', 'name']], \n",
" left_on='author_id', \n",
" right_on='id',\n",
" how='left'\n",
" )\n",
" \n",
" # Count articles per tag\n",
" tag_counts = df_merged['name'].value_counts().reset_index()\n",
" tag_counts.columns = ['author', 'article_count']\n",
" \n",
" # Show top 30 tags for readability\n",
" tag_counts_top = tag_counts.head(30).sort_values('article_count', ascending=False)\n",
" \n",
" chart = alt.Chart(tag_counts_top).mark_bar().encode(\n",
" x=alt.X('author:N', sort='-y', title='Author', axis=alt.Axis(labelAngle=-45)),\n",
" y=alt.Y('article_count:Q', title='Number of Articles'),\n",
" color=alt.Color('article_count:Q', scale=alt.Scale(scheme='oranges'), legend=None),\n",
" tooltip=['author', alt.Tooltip('article_count:Q', title='Articles')]\n",
" ).properties(\n",
" title='Distribution of Articles per Author (Top 30)',\n",
" width=700,\n",
" height=450\n",
" ).interactive()\n",
" \n",
" display(chart)\n",
" \n",
" # Show summary statistics\n",
" print(f\"\\nTotal authors: {len(tag_counts)}\")\n",
" print(f\"Most articles with a author: {tag_counts['article_count'].max()}\")\n",
" print(f\"Average articles per author: {tag_counts['article_count'].mean():.2f}\")\n",
" print(f\"Median articles per author: {tag_counts['article_count'].median():.2f}\")\n",
" else:\n",
" print(\"Could not find required columns for joining tables\")\n",
"else:\n",
" print(\"Need both 'post_authors' and 'authors' tables in database\")"
]
},
{
"cell_type": "markdown",
"id": "7f6f1539",
"metadata": {},
"source": [
"### UMAP Visualization\n",
"\n",
"Visualize the UMAP dimensionality reduction in 2D space."
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "196be503",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Found UMAP coordinates in table: posts\n"
]
},
{
"data": {
"text/html": [
"\n",
"<style>\n",
" #altair-viz-744c7bed86264a8699922a80336231df.vega-embed {\n",
" width: 100%;\n",
" display: flex;\n",
" }\n",
"\n",
" #altair-viz-744c7bed86264a8699922a80336231df.vega-embed details,\n",
" #altair-viz-744c7bed86264a8699922a80336231df.vega-embed details summary {\n",
" position: relative;\n",
" }\n",
"</style>\n",
"<div id=\"altair-viz-744c7bed86264a8699922a80336231df\"></div>\n",
"<script type=\"text/javascript\">\n",
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
" (function(spec, embedOpt){\n",
" let outputDiv = document.currentScript.previousElementSibling;\n",
" if (outputDiv.id !== \"altair-viz-744c7bed86264a8699922a80336231df\") {\n",
" outputDiv = document.getElementById(\"altair-viz-744c7bed86264a8699922a80336231df\");\n",
" }\n",
"\n",
" const paths = {\n",
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@6?noext\",\n",
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/vega-lite@6.1.0?noext\",\n",
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@7?noext\",\n",
" };\n",
"\n",
" function maybeLoadScript(lib, version) {\n",
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
" return (VEGA_DEBUG[key] == version) ?\n",
" Promise.resolve(paths[lib]) :\n",
" new Promise(function(resolve, reject) {\n",
" var s = document.createElement('script');\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" s.async = true;\n",
" s.onload = () => {\n",
" VEGA_DEBUG[key] = version;\n",
" return resolve(paths[lib]);\n",
" };\n",
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
" s.src = paths[lib];\n",
" });\n",
" }\n",
"\n",
" function showError(err) {\n",
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
" throw err;\n",
" }\n",
"\n",
" function displayChart(vegaEmbed) {\n",
" vegaEmbed(outputDiv, spec, embedOpt)\n",
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
" }\n",
"\n",
" if(typeof define === \"function\" && define.amd) {\n",
" requirejs.config({paths});\n",
" let deps = [\"vega-embed\"];\n",
" require(deps, displayChart, err => showError(`Error loading script: ${err.message}`));\n",
" } else {\n",
" maybeLoadScript(\"vega\", \"6\")\n",
" .then(() => maybeLoadScript(\"vega-lite\", \"6.1.0\"))\n",
" .then(() => maybeLoadScript(\"vega-embed\", \"7\"))\n",
" .catch(showError)\n",
" .then(() => displayChart(vegaEmbed));\n",
" }\n",
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"data\": {\"name\": \"data-08d3419d69aaacb182d01fb37f05c491\"}, \"mark\": {\"type\": \"circle\", \"opacity\": 0.7, \"size\": 40}, \"encoding\": {\"color\": {\"field\": \"author_group\", \"scale\": {\"scheme\": \"tableau20\"}, \"title\": \"Author\", \"type\": \"nominal\"}, \"tooltip\": [{\"field\": \"author\", \"type\": \"nominal\"}, {\"field\": \"umap_x\", \"type\": \"quantitative\"}, {\"field\": \"umap_y\", \"type\": \"quantitative\"}], \"x\": {\"field\": \"umap_x\", \"title\": \"UMAP Dimension 1\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"umap_y\", \"title\": \"UMAP Dimension 2\", \"type\": \"quantitative\"}}, \"height\": 600, \"params\": [{\"name\": \"param_1e9efca18e7a2868\", \"select\": {\"type\": \"interval\", \"encodings\": [\"x\", \"y\"]}, \"bind\": \"scales\"}], \"title\": \"UMAP 2D Projection by Author\", \"width\": 800, \"$schema\": \"https://vega.github.io/schema/vega-lite/v6.1.0.json\", \"datasets\": {\"data-08d3419d69aaacb182d01fb37f05c491\": [{\"id_x\": 41, \"umap_x\": 0.0, \"umap_y\": 0.0, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 52, \"umap_x\": 0.0, \"umap_y\": 0.0, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 99, \"umap_x\": 0.0, \"umap_y\": 0.0, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 110, \"umap_x\": -3.1676199436187744, \"umap_y\": 2.67618465423584, \"post_id\": 110.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 115, \"umap_x\": -2.6431844234466553, \"umap_y\": -0.9516412615776062, \"post_id\": 115.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 119, \"umap_x\": -0.6016541719436646, \"umap_y\": 2.311859130859375, \"post_id\": 119.0, \"author_id\": 1.0, \"id_y\": 1.0, \"author\": \"B-Team\", \"author_group\": \"Other\"}, {\"id_x\": 119, \"umap_x\": -0.6016541719436646, \"umap_y\": 2.311859130859375, \"post_id\": 119.0, \"author_id\": 2.0, \"id_y\": 2.0, \"author\": \"bteam\", \"author_group\": \"Other\"}, {\"id_x\": 123, \"umap_x\": -0.19027268886566162, \"umap_y\": 4.271350860595703, \"post_id\": 123.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 127, \"umap_x\": -0.7384243607521057, \"umap_y\": -0.8391469120979309, \"post_id\": 127.0, \"author_id\": 3.0, \"id_y\": 3.0, \"author\": \"Timo Stukenberg\", \"author_group\": \"Other\"}, {\"id_x\": 127, \"umap_x\": -0.7384243607521057, \"umap_y\": -0.8391469120979309, \"post_id\": 127.0, \"author_id\": 4.0, \"id_y\": 4.0, \"author\": \"Olaya Arg\\u00fceso\", \"author_group\": \"Other\"}, {\"id_x\": 133, \"umap_x\": -0.1560070663690567, \"umap_y\": 2.321272850036621, \"post_id\": 133.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 135, \"umap_x\": -1.1845179796218872, \"umap_y\": 4.654286861419678, \"post_id\": 135.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 139, \"umap_x\": -0.31284287571907043, \"umap_y\": 1.7390064001083374, \"post_id\": 139.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 143, \"umap_x\": -0.6286999583244324, \"umap_y\": 3.588747024536133, \"post_id\": 143.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 146, \"umap_x\": -0.2202647626399994, \"umap_y\": 2.6030731201171875, \"post_id\": 146.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 148, \"umap_x\": -1.3873271942138672, \"umap_y\": -1.5831737518310547, \"post_id\": 148.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 152, \"umap_x\": -2.888502597808838, \"umap_y\": -1.3972923755645752, \"post_id\": 152.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 154, \"umap_x\": -1.547231674194336, \"umap_y\": 3.581648588180542, \"post_id\": 154.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 157, \"umap_x\": -3.627056360244751, \"umap_y\": 2.4881644248962402, \"post_id\": 157.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 163, \"umap_x\": -1.4728519916534424, \"umap_y\": -0.4929366707801819, \"post_id\": 163.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 176, \"umap_x\": -2.842000961303711, \"umap_y\": 1.5402742624282837, \"post_id\": 176.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 189, \"umap_x\": -1.058024287223816, \"umap_y\": 0.15650223195552826, \"post_id\": 189.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 193, \"umap_x\": -0.8010870218276978, \"umap_y\": 0.266346275806427, \"post_id\": 193.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 197, \"umap_x\": 0.022880200296640396, \"umap_y\": 3.1586906909942627, \"post_id\": 197.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 212, \"umap_x\": -0.17547109723091125, \"umap_y\": 0.8951833248138428, \"post_id\": 212.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 215, \"umap_x\": -2.337841033935547, \"umap_y\": -0.26349470019340515, \"post_id\": 215.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 218, \"umap_x\": 1.5325278043746948, \"umap_y\": 0.45310285687446594, \"post_id\": 218.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 222, \"umap_x\": -2.060767412185669, \"umap_y\": 4.400458335876465, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 231, \"umap_x\": -1.0238978862762451, \"umap_y\": 3.1686606407165527, \"post_id\": 231.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 235, \"umap_x\": -2.494398832321167, \"umap_y\": 4.633805751800537, \"post_id\": 235.0, \"author_id\": 8.0, \"id_y\": 8.0, \"author\": \"ABC Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 238, \"umap_x\": -0.7921310663223267, \"umap_y\": 3.725102186203003, \"post_id\": 238.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 247, \"umap_x\": -2.013707160949707, \"umap_y\": -0.11963731050491333, \"post_id\": 247.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 254, \"umap_x\": -3.6338016986846924, \"umap_y\": 0.848694384098053, \"post_id\": 254.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 256, \"umap_x\": -2.526097297668457, \"umap_y\": 1.9547066688537598, \"post_id\": 256.0, \"author_id\": 10.0, \"id_y\": 10.0, \"author\": \"jannis grosse\", \"author_group\": \"Other\"}, {\"id_x\": 258, \"umap_x\": -0.6195068955421448, \"umap_y\": 3.110931396484375, \"post_id\": 258.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 260, \"umap_x\": -1.7566404342651367, \"umap_y\": -0.4474278390407562, \"post_id\": 260.0, \"author_id\": 11.0, \"id_y\": 11.0, \"author\": \"FAU\", \"author_group\": \"Other\"}, {\"id_x\": 263, \"umap_x\": 0.2618498206138611, \"umap_y\": 4.0423502922058105, \"post_id\": 263.0, \"author_id\": 12.0, \"id_y\": 12.0, \"author\": \"OAT\", \"author_group\": \"Other\"}, {\"id_x\": 270, \"umap_x\": -3.545482635498047, \"umap_y\": -1.3688632249832153, \"post_id\": 270.0, \"author_id\": 13.0, \"id_y\": 13.0, \"author\": \"Rigaer94\", \"author_group\": \"Other\"}, {\"id_x\": 272, \"umap_x\": -1.8255828619003296, \"umap_y\": 2.9122791290283203, \"post_id\": 272.0, \"author_id\": 14.0, \"id_y\": 14.0, \"author\": \"betriebskampf.org\", \"author_group\": \"Other\"}, {\"id_x\": 274, \"umap_x\": -1.5669933557510376, \"umap_y\": 2.73480224609375, \"post_id\": 274.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 278, \"umap_x\": -0.7927645444869995, \"umap_y\": 4.719499588012695, \"post_id\": 278.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 281, \"umap_x\": -0.14605572819709778, \"umap_y\": -0.8846307396888733, \"post_id\": 281.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 292, \"umap_x\": -0.6647120118141174, \"umap_y\": 2.277661085128784, \"post_id\": 292.0, \"author_id\": 15.0, \"id_y\": 15.0, \"author\": \"Solib\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 298, \"umap_x\": -1.6613993644714355, \"umap_y\": 2.96407151222229, \"post_id\": 298.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 301, \"umap_x\": -0.5203788876533508, \"umap_y\": 3.8261919021606445, \"post_id\": 301.0, \"author_id\": 16.0, \"id_y\": 16.0, \"author\": \"Peter Nowak\", \"author_group\": \"Other\"}, {\"id_x\": 305, \"umap_x\": -1.6380361318588257, \"umap_y\": -0.032806724309921265, \"post_id\": 305.0, \"author_id\": 17.0, \"id_y\": 17.0, \"author\": \"Wolfgang Pomrehn\", \"author_group\": \"Other\"}, {\"id_x\": 321, \"umap_x\": 0.2954724431037903, \"umap_y\": 3.7777059078216553, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 380, \"umap_x\": -0.07582537084817886, \"umap_y\": 3.8906726837158203, \"post_id\": 380.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 389, \"umap_x\": -2.029907703399658, \"umap_y\": 1.560198426246643, \"post_id\": 389.0, \"author_id\": 264.0, \"id_y\": 264.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 392, \"umap_x\": -0.05328555032610893, \"umap_y\": -0.9375473856925964, \"post_id\": 392.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 395, \"umap_x\": -0.5620124936103821, \"umap_y\": 1.2945278882980347, \"post_id\": 395.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 409, \"umap_x\": -2.059068441390991, \"umap_y\": 2.2986817359924316, \"post_id\": 409.0, \"author_id\": 18.0, \"id_y\": 18.0, \"author\": \"Radical Solidarity Coordination\", \"author_group\": \"Other\"}, {\"id_x\": 411, \"umap_x\": -1.9197919368743896, \"umap_y\": 4.124919891357422, \"post_id\": 411.0, \"author_id\": 19.0, \"id_y\": 19.0, \"author\": \"Deutsche Wohnen\", \"author_group\": \"Other\"}, {\"id_x\": 418, \"umap_x\": -2.39341139793396, \"umap_y\": -1.5431398153305054, \"post_id\": 418.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 422, \"umap_x\": -1.2569302320480347, \"umap_y\": 5.094602584838867, \"post_id\": 422.0, \"author_id\": 21.0, \"id_y\": 21.0, \"author\": \"Comisi\\u00f3n Sexta Zapatista\", \"author_group\": \"Other\"}, {\"id_x\": 434, \"umap_x\": -3.3515326976776123, \"umap_y\": 1.375091552734375, \"post_id\": 434.0, \"author_id\": 415.0, \"id_y\": 415.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 438, \"umap_x\": 0.5916643738746643, \"umap_y\": 0.9449852108955383, \"post_id\": 438.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 440, \"umap_x\": 0.6899786591529846, \"umap_y\": 2.0991551876068115, \"post_id\": 440.0, \"author_id\": 24.0, \"id_y\": 24.0, \"author\": \"der Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 448, \"umap_x\": 0.1550595760345459, \"umap_y\": 3.6120572090148926, \"post_id\": 448.0, \"author_id\": 25.0, \"id_y\": 25.0, \"author\": \"Antifa Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 451, \"umap_x\": -1.9361283779144287, \"umap_y\": -0.6216438412666321, \"post_id\": 451.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 455, \"umap_x\": -1.7327725887298584, \"umap_y\": 1.8078323602676392, \"post_id\": 455.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 461, \"umap_x\": -1.5029677152633667, \"umap_y\": 1.918118953704834, \"post_id\": 461.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 465, \"umap_x\": 0.29199376702308655, \"umap_y\": 3.7796688079833984, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 478, \"umap_x\": -2.850304126739502, \"umap_y\": -0.8403680324554443, \"post_id\": 478.0, \"author_id\": 264.0, \"id_y\": 264.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 482, \"umap_x\": -2.3280234336853027, \"umap_y\": 0.670375645160675, \"post_id\": 482.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 484, \"umap_x\": 0.2299271672964096, \"umap_y\": 2.7716078758239746, \"post_id\": 484.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 487, \"umap_x\": 0.03883659467101097, \"umap_y\": 4.435153484344482, \"post_id\": 487.0, \"author_id\": 278.0, \"id_y\": 278.0, \"author\": \"Stern\", \"author_group\": \"Other\"}, {\"id_x\": 490, \"umap_x\": -2.051823854446411, \"umap_y\": 2.800154447555542, \"post_id\": 490.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 498, \"umap_x\": 0.9611502885818481, \"umap_y\": 0.9941798448562622, \"post_id\": 498.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 501, \"umap_x\": -0.030709892511367798, \"umap_y\": 4.334558963775635, \"post_id\": 501.0, \"author_id\": 27.0, \"id_y\": 27.0, \"author\": \"Libert\\u00e4re\", \"author_group\": \"Other\"}, {\"id_x\": 501, \"umap_x\": -0.030709892511367798, \"umap_y\": 4.334558963775635, \"post_id\": 501.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 503, \"umap_x\": -0.360713392496109, \"umap_y\": -0.16648875176906586, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 506, \"umap_x\": -1.9079830646514893, \"umap_y\": 3.8409032821655273, \"post_id\": 506.0, \"author_id\": 29.0, \"id_y\": 29.0, \"author\": \"WAS-IAA\", \"author_group\": \"Other\"}, {\"id_x\": 511, \"umap_x\": 0.43364259600639343, \"umap_y\": 1.4683560132980347, \"post_id\": 511.0, \"author_id\": 30.0, \"id_y\": 30.0, \"author\": \"Neues Deutschland\", \"author_group\": \"Other\"}, {\"id_x\": 511, \"umap_x\": 0.43364259600639343, \"umap_y\": 1.4683560132980347, \"post_id\": 511.0, \"author_id\": 31.0, \"id_y\": 31.0, \"author\": \"Jessica Ramczik\", \"author_group\": \"Other\"}, {\"id_x\": 514, \"umap_x\": -2.602191686630249, \"umap_y\": 2.879390239715576, \"post_id\": 514.0, \"author_id\": 32.0, \"id_y\": 32.0, \"author\": \"Soligruppe 129a\", \"author_group\": \"Other\"}, {\"id_x\": 517, \"umap_x\": -2.7979562282562256, \"umap_y\": 3.132554292678833, \"post_id\": 517.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 520, \"umap_x\": -0.6906072497367859, \"umap_y\": 1.3024746179580688, \"post_id\": 520.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 541, \"umap_x\": 0.3225714862346649, \"umap_y\": 2.8995330333709717, \"post_id\": 541.0, \"author_id\": 33.0, \"id_y\": 33.0, \"author\": \"Leipziger Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 546, \"umap_x\": -2.3968465328216553, \"umap_y\": -1.7521250247955322, \"post_id\": 546.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 554, \"umap_x\": -0.0752490758895874, \"umap_y\": 4.295968532562256, \"post_id\": 554.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 557, \"umap_x\": -1.0574936866760254, \"umap_y\": 4.010081768035889, \"post_id\": 557.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 560, \"umap_x\": 0.40438467264175415, \"umap_y\": 2.557356357574463, \"post_id\": 560.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 564, \"umap_x\": -1.9368723630905151, \"umap_y\": 2.1939315795898438, \"post_id\": 564.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 566, \"umap_x\": -2.568253517150879, \"umap_y\": -0.21790915727615356, \"post_id\": 566.0, \"author_id\": 35.0, \"id_y\": 35.0, \"author\": \"Satanas\", \"author_group\": \"Other\"}, {\"id_x\": 572, \"umap_x\": -1.8358606100082397, \"umap_y\": -0.6719838380813599, \"post_id\": 572.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 581, \"umap_x\": 0.07100216299295425, \"umap_y\": 3.2539265155792236, \"post_id\": 581.0, \"author_id\": 37.0, \"id_y\": 37.0, \"author\": \"Soli-Antifa-Ost\", \"author_group\": \"Other\"}, {\"id_x\": 588, \"umap_x\": -2.813826084136963, \"umap_y\": 3.1615848541259766, \"post_id\": 588.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 591, \"umap_x\": -3.220663547515869, \"umap_y\": 1.646636724472046, \"post_id\": 591.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 591, \"umap_x\": -3.220663547515869, \"umap_y\": 1.646636724472046, \"post_id\": 591.0, \"author_id\": 33.0, \"id_y\": 33.0, \"author\": \"Leipziger Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 596, \"umap_x\": -1.7525547742843628, \"umap_y\": 4.225552082061768, \"post_id\": 596.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 600, \"umap_x\": -2.802534341812134, \"umap_y\": 5.532622337341309, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 610, \"umap_x\": -2.8730759620666504, \"umap_y\": 5.631068229675293, \"post_id\": 610.0, \"author_id\": 18.0, \"id_y\": 18.0, \"author\": \"Radical Solidarity Coordination\", \"author_group\": \"Other\"}, {\"id_x\": 612, \"umap_x\": -1.4020617008209229, \"umap_y\": 2.218395471572876, \"post_id\": 612.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 614, \"umap_x\": -1.4597843885421753, \"umap_y\": 0.9701299071311951, \"post_id\": 614.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 616, \"umap_x\": -2.537437677383423, \"umap_y\": 2.266140937805176, \"post_id\": 616.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 618, \"umap_x\": -0.3916579484939575, \"umap_y\": 0.9671697616577148, \"post_id\": 618.0, \"author_id\": 40.0, \"id_y\": 40.0, \"author\": \"Autonome Chemnitzer\", \"author_group\": \"Other\"}, {\"id_x\": 634, \"umap_x\": -1.2571951150894165, \"umap_y\": 2.260375738143921, \"post_id\": 634.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 636, \"umap_x\": -2.2505056858062744, \"umap_y\": -0.24836547672748566, \"post_id\": 636.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 641, \"umap_x\": 0.15704581141471863, \"umap_y\": 3.1871156692504883, \"post_id\": 641.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 643, \"umap_x\": -1.465796709060669, \"umap_y\": 1.4087213277816772, \"post_id\": 643.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 650, \"umap_x\": -1.8074510097503662, \"umap_y\": 2.83247709274292, \"post_id\": 650.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 652, \"umap_x\": -1.6255892515182495, \"umap_y\": 3.5106313228607178, \"post_id\": 652.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 654, \"umap_x\": -2.899416446685791, \"umap_y\": 3.0588741302490234, \"post_id\": 654.0, \"author_id\": 22.0, \"id_y\": 22.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 659, \"umap_x\": -0.32844096422195435, \"umap_y\": -1.73678719997406, \"post_id\": 659.0, \"author_id\": 41.0, \"id_y\": 41.0, \"author\": \"Kira Ayyadi\", \"author_group\": \"Other\"}, {\"id_x\": 672, \"umap_x\": -0.6258280277252197, \"umap_y\": 2.287864923477173, \"post_id\": 672.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 674, \"umap_x\": -0.4864242374897003, \"umap_y\": 1.7009729146957397, \"post_id\": 674.0, \"author_id\": 42.0, \"id_y\": 42.0, \"author\": \"Michael Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 680, \"umap_x\": -1.0339549779891968, \"umap_y\": 2.1380600929260254, \"post_id\": 680.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 680, \"umap_x\": -1.0339549779891968, \"umap_y\": 2.1380600929260254, \"post_id\": 680.0, \"author_id\": 44.0, \"id_y\": 44.0, \"author\": \"Andreas Speit\", \"author_group\": \"Other\"}, {\"id_x\": 701, \"umap_x\": -0.8334419131278992, \"umap_y\": 3.1903181076049805, \"post_id\": 701.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 703, \"umap_x\": -2.9160714149475098, \"umap_y\": 5.323376178741455, \"post_id\": 703.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 709, \"umap_x\": -0.22735907137393951, \"umap_y\": 3.7657480239868164, \"post_id\": 709.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 712, \"umap_x\": -1.200048565864563, \"umap_y\": 5.30042028427124, \"post_id\": 712.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 718, \"umap_x\": -1.531148076057434, \"umap_y\": 3.728523015975952, \"post_id\": 718.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 722, \"umap_x\": -1.26687490940094, \"umap_y\": 5.262219429016113, \"post_id\": 722.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 724, \"umap_x\": -2.6868107318878174, \"umap_y\": 4.623786926269531, \"post_id\": 724.0, \"author_id\": 45.0, \"id_y\": 45.0, \"author\": \"tribu-x\", \"author_group\": \"Other\"}, {\"id_x\": 727, \"umap_x\": -1.885763168334961, \"umap_y\": 2.8655292987823486, \"post_id\": 727.0, \"author_id\": 46.0, \"id_y\": 46.0, \"author\": \"Copwatch Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 729, \"umap_x\": -2.930900812149048, \"umap_y\": 1.3913533687591553, \"post_id\": 729.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 739, \"umap_x\": -3.0910089015960693, \"umap_y\": 2.4802470207214355, \"post_id\": 739.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 746, \"umap_x\": -1.718663215637207, \"umap_y\": 2.3612194061279297, \"post_id\": 746.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 753, \"umap_x\": -2.5163424015045166, \"umap_y\": 0.07969663292169571, \"post_id\": 753.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 757, \"umap_x\": -2.88720965385437, \"umap_y\": -1.521237850189209, \"post_id\": 757.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 763, \"umap_x\": -2.818681001663208, \"umap_y\": 0.7555767893791199, \"post_id\": 763.0, \"author_id\": 47.0, \"id_y\": 47.0, \"author\": \"Autonome Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 766, \"umap_x\": -1.944150686264038, \"umap_y\": 1.1112732887268066, \"post_id\": 766.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 771, \"umap_x\": 0.26681169867515564, \"umap_y\": 4.159685134887695, \"post_id\": 771.0, \"author_id\": 48.0, \"id_y\": 48.0, \"author\": \"freiheit-fuer-jo.org\", \"author_group\": \"Other\"}, {\"id_x\": 777, \"umap_x\": 0.8061479330062866, \"umap_y\": 2.725419521331787, \"post_id\": 777.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 780, \"umap_x\": -2.222872257232666, \"umap_y\": 3.4647059440612793, \"post_id\": 780.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 785, \"umap_x\": -2.966245412826538, \"umap_y\": -1.4662050008773804, \"post_id\": 785.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 788, \"umap_x\": -2.8946192264556885, \"umap_y\": -1.3010646104812622, \"post_id\": 788.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 791, \"umap_x\": -0.08420141041278839, \"umap_y\": 5.484450817108154, \"post_id\": 791.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 794, \"umap_x\": -1.4788296222686768, \"umap_y\": 3.4457926750183105, \"post_id\": 794.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 797, \"umap_x\": -4.394776344299316, \"umap_y\": 4.360776424407959, \"post_id\": 797.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 805, \"umap_x\": -3.8065125942230225, \"umap_y\": 0.9479629397392273, \"post_id\": 805.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 805, \"umap_x\": -3.8065125942230225, \"umap_y\": 0.9479629397392273, \"post_id\": 805.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 813, \"umap_x\": -2.844853401184082, \"umap_y\": -1.5685079097747803, \"post_id\": 813.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 816, \"umap_x\": -1.55629563331604, \"umap_y\": 0.35076969861984253, \"post_id\": 816.0, \"author_id\": 50.0, \"id_y\": 50.0, \"author\": \"Carina\", \"author_group\": \"Other\"}, {\"id_x\": 819, \"umap_x\": -1.6984871625900269, \"umap_y\": -0.20589850842952728, \"post_id\": 819.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 823, \"umap_x\": -1.312375545501709, \"umap_y\": 3.6729860305786133, \"post_id\": 823.0, \"author_id\": 51.0, \"id_y\": 51.0, \"author\": \"Antikoloniale Aktion\", \"author_group\": \"Other\"}, {\"id_x\": 829, \"umap_x\": -0.6483900547027588, \"umap_y\": 1.882136344909668, \"post_id\": 829.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 829, \"umap_x\": -0.6483900547027588, \"umap_y\": 1.882136344909668, \"post_id\": 829.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 836, \"umap_x\": -3.863741397857666, \"umap_y\": 1.0934511423110962, \"post_id\": 836.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 842, \"umap_x\": -2.5158276557922363, \"umap_y\": -0.3692385256290436, \"post_id\": 842.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 847, \"umap_x\": -2.6929843425750732, \"umap_y\": -1.8732614517211914, \"post_id\": 847.0, \"author_id\": 52.0, \"id_y\": 52.0, \"author\": \"Oury Jalloh\", \"author_group\": \"Other\"}, {\"id_x\": 852, \"umap_x\": -2.2297725677490234, \"umap_y\": -0.31756073236465454, \"post_id\": 852.0, \"author_id\": 53.0, \"id_y\": 53.0, \"author\": \"la-presse\", \"author_group\": \"Other\"}, {\"id_x\": 855, \"umap_x\": -1.7511539459228516, \"umap_y\": 2.8727095127105713, \"post_id\": 855.0, \"author_id\": 54.0, \"id_y\": 54.0, \"author\": \"kreuzer online\", \"author_group\": \"Other\"}, {\"id_x\": 855, \"umap_x\": -1.7511539459228516, \"umap_y\": 2.8727095127105713, \"post_id\": 855.0, \"author_id\": 55.0, \"id_y\": 55.0, \"author\": \"MARCO BR\\u00c1S DOS SANTOS\", \"author_group\": \"Other\"}, {\"id_x\": 857, \"umap_x\": -2.183610200881958, \"umap_y\": 2.68880033493042, \"post_id\": 857.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 859, \"umap_x\": -2.5942575931549072, \"umap_y\": 2.0542006492614746, \"post_id\": 859.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 859, \"umap_x\": -2.5942575931549072, \"umap_y\": 2.0542006492614746, \"post_id\": 859.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 863, \"umap_x\": -0.48667821288108826, \"umap_y\": 1.8957892656326294, \"post_id\": 863.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 868, \"umap_x\": -1.2871390581130981, \"umap_y\": 1.2745215892791748, \"post_id\": 868.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 871, \"umap_x\": -0.9023633003234863, \"umap_y\": 2.409929037094116, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 873, \"umap_x\": -2.825122117996216, \"umap_y\": 2.85064435005188, \"post_id\": 873.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 878, \"umap_x\": -1.6813856363296509, \"umap_y\": 2.6332080364227295, \"post_id\": 878.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 890, \"umap_x\": 1.0740647315979004, \"umap_y\": 0.7043002843856812, \"post_id\": 890.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 894, \"umap_x\": -2.5021886825561523, \"umap_y\": -0.10766284167766571, \"post_id\": 894.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 896, \"umap_x\": 0.19009467959403992, \"umap_y\": 2.678393602371216, \"post_id\": 896.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 898, \"umap_x\": -3.768007445614785e-05, \"umap_y\": 3.2656140327453613, \"post_id\": 898.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 903, \"umap_x\": 0.6000539064407349, \"umap_y\": -0.8629629611968994, \"post_id\": 903.0, \"author_id\": 137.0, \"id_y\": 137.0, \"author\": \"MDR Sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 905, \"umap_x\": -1.6659845113754272, \"umap_y\": 2.657423496246338, \"post_id\": 905.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 907, \"umap_x\": -0.2081308811903, \"umap_y\": 0.17964155972003937, \"post_id\": 907.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 918, \"umap_x\": -3.03537654876709, \"umap_y\": 1.7316138744354248, \"post_id\": 918.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 938, \"umap_x\": -3.4123010635375977, \"umap_y\": 1.4833528995513916, \"post_id\": 938.0, \"author_id\": 57.0, \"id_y\": 57.0, \"author\": \"Jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 938, \"umap_x\": -3.4123010635375977, \"umap_y\": 1.4833528995513916, \"post_id\": 938.0, \"author_id\": 58.0, \"id_y\": 58.0, \"author\": \"Federica Matteoni\", \"author_group\": \"Other\"}, {\"id_x\": 942, \"umap_x\": -0.8858919739723206, \"umap_y\": 2.084188938140869, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 945, \"umap_x\": -2.540187358856201, \"umap_y\": -0.1785624772310257, \"post_id\": 945.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 955, \"umap_x\": -0.3416271507740021, \"umap_y\": -0.1840037703514099, \"post_id\": 955.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 955, \"umap_x\": -0.3416271507740021, \"umap_y\": -0.1840037703514099, \"post_id\": 955.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 961, \"umap_x\": -2.4538896083831787, \"umap_y\": 1.857423186302185, \"post_id\": 961.0, \"author_id\": 60.0, \"id_y\": 60.0, \"author\": \"ANF\", \"author_group\": \"Other\"}, {\"id_x\": 964, \"umap_x\": -2.2352523803710938, \"umap_y\": 4.268074035644531, \"post_id\": 964.0, \"author_id\": 61.0, \"id_y\": 61.0, \"author\": \"Elany\", \"author_group\": \"Other\"}, {\"id_x\": 969, \"umap_x\": 1.0825635194778442, \"umap_y\": -0.76056307554245, \"post_id\": 969.0, \"author_id\": 62.0, \"id_y\": 62.0, \"author\": \"Thomas Meyer\", \"author_group\": \"Other\"}, {\"id_x\": 971, \"umap_x\": -1.1915537118911743, \"umap_y\": 1.3554434776306152, \"post_id\": 971.0, \"author_id\": 674.0, \"id_y\": 674.0, \"author\": \"RAA\", \"author_group\": \"Other\"}, {\"id_x\": 977, \"umap_x\": -1.0427343845367432, \"umap_y\": 1.701149821281433, \"post_id\": 977.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 982, \"umap_x\": -2.332153797149658, \"umap_y\": 1.3088592290878296, \"post_id\": 982.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 987, \"umap_x\": -1.2677603960037231, \"umap_y\": -0.42963677644729614, \"post_id\": 987.0, \"author_id\": 22.0, \"id_y\": 22.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 990, \"umap_x\": -1.334204077720642, \"umap_y\": 2.923603057861328, \"post_id\": 990.0, \"author_id\": 63.0, \"id_y\": 63.0, \"author\": \"Julian Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 1000, \"umap_x\": -0.4945808947086334, \"umap_y\": -1.218188762664795, \"post_id\": 1000.0, \"author_id\": 64.0, \"id_y\": 64.0, \"author\": \"Grupo Internacional\", \"author_group\": \"Other\"}, {\"id_x\": 1006, \"umap_x\": -2.8248348236083984, \"umap_y\": 5.499456405639648, \"post_id\": 1006.0, \"author_id\": 65.0, \"id_y\": 65.0, \"author\": \"ALF\", \"author_group\": \"Other\"}, {\"id_x\": 1006, \"umap_x\": -2.8248348236083984, \"umap_y\": 5.499456405639648, \"post_id\": 1006.0, \"author_id\": 66.0, \"id_y\": 66.0, \"author\": \"ELF\", \"author_group\": \"Other\"}, {\"id_x\": 1010, \"umap_x\": -2.9002909660339355, \"umap_y\": 0.24901548027992249, \"post_id\": 1010.0, \"author_id\": 67.0, \"id_y\": 67.0, \"author\": \"Autonome Stadtgeschichte\", \"author_group\": \"Other\"}, {\"id_x\": 1013, \"umap_x\": -1.2537853717803955, \"umap_y\": 2.2933528423309326, \"post_id\": 1013.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 1015, \"umap_x\": -2.8600475788116455, \"umap_y\": 1.4952467679977417, \"post_id\": 1015.0, \"author_id\": 68.0, \"id_y\": 68.0, \"author\": \"Anonyme\", \"author_group\": \"Other\"}, {\"id_x\": 1022, \"umap_x\": -4.128479480743408, \"umap_y\": 1.1210366487503052, \"post_id\": 1022.0, \"author_id\": 69.0, \"id_y\": 69.0, \"author\": \"ZDF\", \"author_group\": \"Other\"}, {\"id_x\": 1022, \"umap_x\": -4.128479480743408, \"umap_y\": 1.1210366487503052, \"post_id\": 1022.0, \"author_id\": 70.0, \"id_y\": 70.0, \"author\": \"Dominik Rzepka\", \"author_group\": \"Other\"}, {\"id_x\": 1024, \"umap_x\": 0.48586586117744446, \"umap_y\": 0.2705673277378082, \"post_id\": 1024.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 1024, \"umap_x\": 0.48586586117744446, \"umap_y\": 0.2705673277378082, \"post_id\": 1024.0, \"author_id\": 71.0, \"id_y\": 71.0, \"author\": \"Nancy Dietrich\", \"author_group\": \"Other\"}, {\"id_x\": 1024, \"umap_x\": 0.48586586117744446, \"umap_y\": 0.2705673277378082, \"post_id\": 1024.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 1024, \"umap_x\": 0.48586586117744446, \"umap_y\": 0.2705673277378082, \"post_id\": 1024.0, \"author_id\": 73.0, \"id_y\": 73.0, \"author\": \"Frank Hommel\", \"author_group\": \"Other\"}, {\"id_x\": 1024, \"umap_x\": 0.48586586117744446, \"umap_y\": 0.2705673277378082, \"post_id\": 1024.0, \"author_id\": 74.0, \"id_y\": 74.0, \"author\": \"Thomas Mehlhorn\", \"author_group\": \"Other\"}, {\"id_x\": 1026, \"umap_x\": -1.9366207122802734, \"umap_y\": 1.14863121509552, \"post_id\": 1026.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1026, \"umap_x\": -1.9366207122802734, \"umap_y\": 1.14863121509552, \"post_id\": 1026.0, \"author_id\": 76.0, \"id_y\": 76.0, \"author\": \"Jens Hoyer\", \"author_group\": \"Other\"}, {\"id_x\": 1028, \"umap_x\": 0.598150372505188, \"umap_y\": -0.11901096254587173, \"post_id\": 1028.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1028, \"umap_x\": 0.598150372505188, \"umap_y\": -0.11901096254587173, \"post_id\": 1028.0, \"author_id\": 77.0, \"id_y\": 77.0, \"author\": \"Peter Ufer\", \"author_group\": \"Other\"}, {\"id_x\": 1030, \"umap_x\": -3.986515760421753, \"umap_y\": 1.1903139352798462, \"post_id\": 1030.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1030, \"umap_x\": -3.986515760421753, \"umap_y\": 1.1903139352798462, \"post_id\": 1030.0, \"author_id\": 78.0, \"id_y\": 78.0, \"author\": \"Ingo Kramer\", \"author_group\": \"Other\"}, {\"id_x\": 1030, \"umap_x\": -3.986515760421753, \"umap_y\": 1.1903139352798462, \"post_id\": 1030.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 1032, \"umap_x\": -1.7755849361419678, \"umap_y\": 2.2357242107391357, \"post_id\": 1032.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1032, \"umap_x\": -1.7755849361419678, \"umap_y\": 2.2357242107391357, \"post_id\": 1032.0, \"author_id\": 80.0, \"id_y\": 80.0, \"author\": \"Franziska Klemenz\", \"author_group\": \"Other\"}, {\"id_x\": 1034, \"umap_x\": 0.8795042634010315, \"umap_y\": 1.9814773797988892, \"post_id\": 1034.0, \"author_id\": 81.0, \"id_y\": 81.0, \"author\": \"BR\", \"author_group\": \"Other\"}, {\"id_x\": 1034, \"umap_x\": 0.8795042634010315, \"umap_y\": 1.9814773797988892, \"post_id\": 1034.0, \"author_id\": 82.0, \"id_y\": 82.0, \"author\": \"Jonas Miller\", \"author_group\": \"Other\"}, {\"id_x\": 1034, \"umap_x\": 0.8795042634010315, \"umap_y\": 1.9814773797988892, \"post_id\": 1034.0, \"author_id\": 83.0, \"id_y\": 83.0, \"author\": \"Elke Gra\\u00dfer-Reitzner\", \"author_group\": \"Other\"}, {\"id_x\": 1036, \"umap_x\": -3.602543830871582, \"umap_y\": 1.3754745721817017, \"post_id\": 1036.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 1036, \"umap_x\": -3.602543830871582, \"umap_y\": 1.3754745721817017, \"post_id\": 1036.0, \"author_id\": 84.0, \"id_y\": 84.0, \"author\": \"Ronny Hager\", \"author_group\": \"Other\"}, {\"id_x\": 1038, \"umap_x\": -1.289107084274292, \"umap_y\": 2.6910345554351807, \"post_id\": 1038.0, \"author_id\": 85.0, \"id_y\": 85.0, \"author\": \"Pola Staski\", \"author_group\": \"Other\"}, {\"id_x\": 1049, \"umap_x\": -2.304684638977051, \"umap_y\": -1.3418599367141724, \"post_id\": 1049.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 1051, \"umap_x\": -0.4720427095890045, \"umap_y\": -0.267780065536499, \"post_id\": 1051.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 1053, \"umap_x\": -3.594606637954712, \"umap_y\": 1.379564642906189, \"post_id\": 1053.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1053, \"umap_x\": -3.594606637954712, \"umap_y\": 1.379564642906189, \"post_id\": 1053.0, \"author_id\": 87.0, \"id_y\": 87.0, \"author\": \"Friederike Hohmann\", \"author_group\": \"Other\"}, {\"id_x\": 1055, \"umap_x\": -3.7973337173461914, \"umap_y\": 1.286054015159607, \"post_id\": 1055.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1055, \"umap_x\": -3.7973337173461914, \"umap_y\": 1.286054015159607, \"post_id\": 1055.0, \"author_id\": 88.0, \"id_y\": 88.0, \"author\": \"Maximilian Helm\", \"author_group\": \"Other\"}, {\"id_x\": 1055, \"umap_x\": -3.7973337173461914, \"umap_y\": 1.286054015159607, \"post_id\": 1055.0, \"author_id\": 80.0, \"id_y\": 80.0, \"author\": \"Franziska Klemenz\", \"author_group\": \"Other\"}, {\"id_x\": 1055, \"umap_x\": -3.7973337173461914, \"umap_y\": 1.286054015159607, \"post_id\": 1055.0, \"author_id\": 89.0, \"id_y\": 89.0, \"author\": \"Christoph Springer\", \"author_group\": \"Other\"}, {\"id_x\": 1057, \"umap_x\": -2.09320330619812, \"umap_y\": 2.0485196113586426, \"post_id\": 1057.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1057, \"umap_x\": -2.09320330619812, \"umap_y\": 2.0485196113586426, \"post_id\": 1057.0, \"author_id\": 90.0, \"id_y\": 90.0, \"author\": \"Julia Vollmer\", \"author_group\": \"Other\"}, {\"id_x\": 1059, \"umap_x\": -2.9802186489105225, \"umap_y\": 2.6237151622772217, \"post_id\": 1059.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1062, \"umap_x\": -4.246720790863037, \"umap_y\": 1.1621955633163452, \"post_id\": 1062.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 1062, \"umap_x\": -4.246720790863037, \"umap_y\": 1.1621955633163452, \"post_id\": 1062.0, \"author_id\": 91.0, \"id_y\": 91.0, \"author\": \"Ronny Schilder\", \"author_group\": \"Other\"}, {\"id_x\": 1067, \"umap_x\": -4.7165446281433105, \"umap_y\": 4.360024452209473, \"post_id\": 1067.0, \"author_id\": 92.0, \"id_y\": 92.0, \"author\": \"Nick Brauns\", \"author_group\": \"Other\"}, {\"id_x\": 1067, \"umap_x\": -4.7165446281433105, \"umap_y\": 4.360024452209473, \"post_id\": 1067.0, \"author_id\": 93.0, \"id_y\": 93.0, \"author\": \"Junge Welt\", \"author_group\": \"Other\"}, {\"id_x\": 1092, \"umap_x\": -0.7852032780647278, \"umap_y\": 3.0944297313690186, \"post_id\": 1092.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 1094, \"umap_x\": -3.7792465686798096, \"umap_y\": 1.3272031545639038, \"post_id\": 1094.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 1096, \"umap_x\": -0.2595593333244324, \"umap_y\": -0.7119397521018982, \"post_id\": 1096.0, \"author_id\": 94.0, \"id_y\": 94.0, \"author\": \"MIGAZIN\", \"author_group\": \"Other\"}, {\"id_x\": 1098, \"umap_x\": -2.3592417240142822, \"umap_y\": -1.492139220237732, \"post_id\": 1098.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 1098, \"umap_x\": -2.3592417240142822, \"umap_y\": -1.492139220237732, \"post_id\": 1098.0, \"author_id\": 96.0, \"id_y\": 96.0, \"author\": \"Jonas Mueller-T\\u00f6we\", \"author_group\": \"Other\"}, {\"id_x\": 1098, \"umap_x\": -2.3592417240142822, \"umap_y\": -1.492139220237732, \"post_id\": 1098.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 1100, \"umap_x\": -1.1208903789520264, \"umap_y\": 2.7205305099487305, \"post_id\": 1100.0, \"author_id\": 278.0, \"id_y\": 278.0, \"author\": \"Stern\", \"author_group\": \"Other\"}, {\"id_x\": 1102, \"umap_x\": 0.48943567276000977, \"umap_y\": 0.3526208698749542, \"post_id\": 1102.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1102, \"umap_x\": 0.48943567276000977, \"umap_y\": 0.3526208698749542, \"post_id\": 1102.0, \"author_id\": 80.0, \"id_y\": 80.0, \"author\": \"Franziska Klemenz\", \"author_group\": \"Other\"}, {\"id_x\": 1104, \"umap_x\": -0.2892158627510071, \"umap_y\": 1.9922528266906738, \"post_id\": 1104.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1104, \"umap_x\": -0.2892158627510071, \"umap_y\": 1.9922528266906738, \"post_id\": 1104.0, \"author_id\": 98.0, \"id_y\": 98.0, \"author\": \"Markus van Appeldorn\", \"author_group\": \"Other\"}, {\"id_x\": 1106, \"umap_x\": -0.279342383146286, \"umap_y\": -0.1003727838397026, \"post_id\": 1106.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1106, \"umap_x\": -0.279342383146286, \"umap_y\": -0.1003727838397026, \"post_id\": 1106.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 1129, \"umap_x\": -3.893580198287964, \"umap_y\": 0.8310848474502563, \"post_id\": 1129.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1129, \"umap_x\": -3.893580198287964, \"umap_y\": 0.8310848474502563, \"post_id\": 1129.0, \"author_id\": 100.0, \"id_y\": 100.0, \"author\": \"Yvonne Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 1131, \"umap_x\": -2.468163013458252, \"umap_y\": 0.3696194291114807, \"post_id\": 1131.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 1136, \"umap_x\": -1.7581676244735718, \"umap_y\": 1.5931888818740845, \"post_id\": 1136.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 1147, \"umap_x\": 0.6091712713241577, \"umap_y\": -0.8447806239128113, \"post_id\": 1147.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1147, \"umap_x\": 0.6091712713241577, \"umap_y\": -0.8447806239128113, \"post_id\": 1147.0, \"author_id\": 101.0, \"id_y\": 101.0, \"author\": \"Annette Binninger\", \"author_group\": \"Other\"}, {\"id_x\": 1149, \"umap_x\": 0.5738397240638733, \"umap_y\": 0.47132834792137146, \"post_id\": 1149.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1149, \"umap_x\": 0.5738397240638733, \"umap_y\": 0.47132834792137146, \"post_id\": 1149.0, \"author_id\": 101.0, \"id_y\": 101.0, \"author\": \"Annette Binninger\", \"author_group\": \"Other\"}, {\"id_x\": 1154, \"umap_x\": -3.381873369216919, \"umap_y\": 4.345111846923828, \"post_id\": 1154.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1160, \"umap_x\": -3.769958257675171, \"umap_y\": 1.3427640199661255, \"post_id\": 1160.0, \"author_id\": 102.0, \"id_y\": 102.0, \"author\": \"Annika Leister\", \"author_group\": \"Other\"}, {\"id_x\": 1160, \"umap_x\": -3.769958257675171, \"umap_y\": 1.3427640199661255, \"post_id\": 1160.0, \"author_id\": 96.0, \"id_y\": 96.0, \"author\": \"Jonas Mueller-T\\u00f6we\", \"author_group\": \"Other\"}, {\"id_x\": 1164, \"umap_x\": 0.19446250796318054, \"umap_y\": 0.007095424458384514, \"post_id\": 1164.0, \"author_id\": 102.0, \"id_y\": 102.0, \"author\": \"Annika Leister\", \"author_group\": \"Other\"}, {\"id_x\": 1190, \"umap_x\": -3.8884496688842773, \"umap_y\": 1.260918378829956, \"post_id\": 1190.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1190, \"umap_x\": -3.8884496688842773, \"umap_y\": 1.260918378829956, \"post_id\": 1190.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 1190, \"umap_x\": -3.8884496688842773, \"umap_y\": 1.260918378829956, \"post_id\": 1190.0, \"author_id\": 104.0, \"id_y\": 104.0, \"author\": \"Theresa Hellwig\", \"author_group\": \"Other\"}, {\"id_x\": 1192, \"umap_x\": -0.8121128082275391, \"umap_y\": 0.3430740535259247, \"post_id\": 1192.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1196, \"umap_x\": -2.9542856216430664, \"umap_y\": 1.4446099996566772, \"post_id\": 1196.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 1196, \"umap_x\": -2.9542856216430664, \"umap_y\": 1.4446099996566772, \"post_id\": 1196.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 1212, \"umap_x\": -0.34607386589050293, \"umap_y\": -0.2238883227109909, \"post_id\": 1212.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1216, \"umap_x\": -2.462031841278076, \"umap_y\": -0.6543143391609192, \"post_id\": 1216.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1216, \"umap_x\": -2.462031841278076, \"umap_y\": -0.6543143391609192, \"post_id\": 1216.0, \"author_id\": 106.0, \"id_y\": 106.0, \"author\": \"Claudia Carell\", \"author_group\": \"Other\"}, {\"id_x\": 1218, \"umap_x\": -2.392110586166382, \"umap_y\": -0.48719701170921326, \"post_id\": 1218.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1218, \"umap_x\": -2.392110586166382, \"umap_y\": -0.48719701170921326, \"post_id\": 1218.0, \"author_id\": 106.0, \"id_y\": 106.0, \"author\": \"Claudia Carell\", \"author_group\": \"Other\"}, {\"id_x\": 1222, \"umap_x\": -2.558549404144287, \"umap_y\": 1.278463363647461, \"post_id\": 1222.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1222, \"umap_x\": -2.558549404144287, \"umap_y\": 1.278463363647461, \"post_id\": 1222.0, \"author_id\": 106.0, \"id_y\": 106.0, \"author\": \"Claudia Carell\", \"author_group\": \"Other\"}, {\"id_x\": 1226, \"umap_x\": -0.9592850208282471, \"umap_y\": 0.23706495761871338, \"post_id\": 1226.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 1231, \"umap_x\": -0.9326865673065186, \"umap_y\": 1.721487283706665, \"post_id\": 1231.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1233, \"umap_x\": -1.1051758527755737, \"umap_y\": 1.0583405494689941, \"post_id\": 1233.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1235, \"umap_x\": -0.11974728852510452, \"umap_y\": 0.5351220369338989, \"post_id\": 1235.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1235, \"umap_x\": -0.11974728852510452, \"umap_y\": 0.5351220369338989, \"post_id\": 1235.0, \"author_id\": 107.0, \"id_y\": 107.0, \"author\": \"Frank Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 1237, \"umap_x\": -2.8504414558410645, \"umap_y\": -0.9392204284667969, \"post_id\": 1237.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 1250, \"umap_x\": -2.3553731441497803, \"umap_y\": 1.4043431282043457, \"post_id\": 1250.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 1250, \"umap_x\": -2.3553731441497803, \"umap_y\": 1.4043431282043457, \"post_id\": 1250.0, \"author_id\": 108.0, \"id_y\": 108.0, \"author\": \"Michael Stellner\", \"author_group\": \"Other\"}, {\"id_x\": 1254, \"umap_x\": -0.9782413244247437, \"umap_y\": 2.216603994369507, \"post_id\": 1254.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1256, \"umap_x\": -1.0235031843185425, \"umap_y\": 1.2178685665130615, \"post_id\": 1256.0, \"author_id\": 109.0, \"id_y\": 109.0, \"author\": \"WDR\", \"author_group\": \"Other\"}, {\"id_x\": 1256, \"umap_x\": -1.0235031843185425, \"umap_y\": 1.2178685665130615, \"post_id\": 1256.0, \"author_id\": 110.0, \"id_y\": 110.0, \"author\": \"Christof Voigt\", \"author_group\": \"Other\"}, {\"id_x\": 1278, \"umap_x\": -0.7110917568206787, \"umap_y\": 5.2518696784973145, \"post_id\": 1278.0, \"author_id\": 8.0, \"id_y\": 8.0, \"author\": \"ABC Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 1289, \"umap_x\": -2.694732666015625, \"umap_y\": 1.1844590902328491, \"post_id\": 1289.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1289, \"umap_x\": -2.694732666015625, \"umap_y\": 1.1844590902328491, \"post_id\": 1289.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 1291, \"umap_x\": -3.0083107948303223, \"umap_y\": -0.8234575986862183, \"post_id\": 1291.0, \"author_id\": 111.0, \"id_y\": 111.0, \"author\": \"TAG24\", \"author_group\": \"Other\"}, {\"id_x\": 1297, \"umap_x\": -2.9050610065460205, \"umap_y\": 0.04506374150514603, \"post_id\": 1297.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 1301, \"umap_x\": -0.9848108887672424, \"umap_y\": 0.8466897010803223, \"post_id\": 1301.0, \"author_id\": 113.0, \"id_y\": 113.0, \"author\": \"Grenz\\u00fcberschreitendes Solikomitee\", \"author_group\": \"Other\"}, {\"id_x\": 1313, \"umap_x\": -0.07615184038877487, \"umap_y\": 2.4231438636779785, \"post_id\": 1313.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1315, \"umap_x\": -1.1352202892303467, \"umap_y\": 3.0048022270202637, \"post_id\": 1315.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1319, \"umap_x\": 1.09769868850708, \"umap_y\": 0.5788496136665344, \"post_id\": 1319.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 1322, \"umap_x\": -1.127727746963501, \"umap_y\": 0.09082990139722824, \"post_id\": 1322.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1322, \"umap_x\": -1.127727746963501, \"umap_y\": 0.09082990139722824, \"post_id\": 1322.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 1324, \"umap_x\": -4.279201984405518, \"umap_y\": 1.185941219329834, \"post_id\": 1324.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 1324, \"umap_x\": -4.279201984405518, \"umap_y\": 1.185941219329834, \"post_id\": 1324.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 1328, \"umap_x\": 0.42646196484565735, \"umap_y\": 0.33472269773483276, \"post_id\": 1328.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1330, \"umap_x\": -2.4195172786712646, \"umap_y\": 0.8187230825424194, \"post_id\": 1330.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1330, \"umap_x\": -2.4195172786712646, \"umap_y\": 0.8187230825424194, \"post_id\": 1330.0, \"author_id\": 115.0, \"id_y\": 115.0, \"author\": \"Frank D\\u00f6hring\", \"author_group\": \"Other\"}, {\"id_x\": 1332, \"umap_x\": -2.0311121940612793, \"umap_y\": 0.03970849886536598, \"post_id\": 1332.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1335, \"umap_x\": 0.9177570343017578, \"umap_y\": 1.8801898956298828, \"post_id\": 1335.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1338, \"umap_x\": -1.9232701063156128, \"umap_y\": 1.8034625053405762, \"post_id\": 1338.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1338, \"umap_x\": -1.9232701063156128, \"umap_y\": 1.8034625053405762, \"post_id\": 1338.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 1356, \"umap_x\": -2.7299575805664062, \"umap_y\": -1.6603384017944336, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 1365, \"umap_x\": -1.7724316120147705, \"umap_y\": 1.139237642288208, \"post_id\": 1365.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1368, \"umap_x\": -0.3541366457939148, \"umap_y\": 2.9459259510040283, \"post_id\": 1368.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1371, \"umap_x\": -0.26048970222473145, \"umap_y\": 1.2459841966629028, \"post_id\": 1371.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 1373, \"umap_x\": -0.7466537356376648, \"umap_y\": 3.0181210041046143, \"post_id\": 1373.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 1384, \"umap_x\": -2.9135429859161377, \"umap_y\": -1.3803240060806274, \"post_id\": 1384.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1393, \"umap_x\": -2.6658854484558105, \"umap_y\": -1.8146705627441406, \"post_id\": 1393.0, \"author_id\": 116.0, \"id_y\": 116.0, \"author\": \"oury jalloh\", \"author_group\": \"Other\"}, {\"id_x\": 1395, \"umap_x\": -3.0148963928222656, \"umap_y\": -0.599047839641571, \"post_id\": 1395.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 1397, \"umap_x\": -0.8638452291488647, \"umap_y\": 2.845102310180664, \"post_id\": 1397.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1408, \"umap_x\": -2.8331661224365234, \"umap_y\": -0.07748356461524963, \"post_id\": 1408.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 1434, \"umap_x\": -1.931139349937439, \"umap_y\": 2.8657455444335938, \"post_id\": 1434.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1448, \"umap_x\": -2.3589694499969482, \"umap_y\": 2.2973554134368896, \"post_id\": 1448.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 1448, \"umap_x\": -2.3589694499969482, \"umap_y\": 2.2973554134368896, \"post_id\": 1448.0, \"author_id\": 119.0, \"id_y\": 119.0, \"author\": \"Christian Bangel\", \"author_group\": \"Other\"}, {\"id_x\": 1452, \"umap_x\": -2.0326850414276123, \"umap_y\": -0.00757167162373662, \"post_id\": 1452.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1463, \"umap_x\": -2.8603515625, \"umap_y\": 5.599580764770508, \"post_id\": 1463.0, \"author_id\": 120.0, \"id_y\": 120.0, \"author\": \"alarmphone.org\", \"author_group\": \"Other\"}, {\"id_x\": 1469, \"umap_x\": -0.10479506850242615, \"umap_y\": 4.155336380004883, \"post_id\": 1469.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1474, \"umap_x\": -2.097803831100464, \"umap_y\": 2.964437961578369, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 1486, \"umap_x\": -2.176548480987549, \"umap_y\": 3.231023073196411, \"post_id\": 1486.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1490, \"umap_x\": -1.7857166528701782, \"umap_y\": 2.8707942962646484, \"post_id\": 1490.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1493, \"umap_x\": -0.3739623725414276, \"umap_y\": 0.1383369415998459, \"post_id\": 1493.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1502, \"umap_x\": -1.3004204034805298, \"umap_y\": 3.3586652278900146, \"post_id\": 1502.0, \"author_id\": 67.0, \"id_y\": 67.0, \"author\": \"Autonome Stadtgeschichte\", \"author_group\": \"Other\"}, {\"id_x\": 1510, \"umap_x\": -2.0813181400299072, \"umap_y\": 1.9208953380584717, \"post_id\": 1510.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 1513, \"umap_x\": -2.449542999267578, \"umap_y\": 0.9616267681121826, \"post_id\": 1513.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1528, \"umap_x\": -0.985215961933136, \"umap_y\": -0.30511289834976196, \"post_id\": 1528.0, \"author_id\": 121.0, \"id_y\": 121.0, \"author\": \"Chronik\", \"author_group\": \"Other\"}, {\"id_x\": 1530, \"umap_x\": -2.0641465187072754, \"umap_y\": 2.7719736099243164, \"post_id\": 1530.0, \"author_id\": 122.0, \"id_y\": 122.0, \"author\": \"Forum gegen Polizeigewalt und Repression NRW\", \"author_group\": \"Other\"}, {\"id_x\": 1536, \"umap_x\": -1.488136649131775, \"umap_y\": 5.334665298461914, \"post_id\": 1536.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1544, \"umap_x\": -0.07473855465650558, \"umap_y\": 1.5849336385726929, \"post_id\": 1544.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1550, \"umap_x\": -0.5949240326881409, \"umap_y\": 4.966556549072266, \"post_id\": 1550.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 1556, \"umap_x\": 0.2779863774776459, \"umap_y\": 2.549180269241333, \"post_id\": 1556.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1559, \"umap_x\": 0.31106919050216675, \"umap_y\": 2.702054500579834, \"post_id\": 1559.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1562, \"umap_x\": 0.09552967548370361, \"umap_y\": 2.417518377304077, \"post_id\": 1562.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1565, \"umap_x\": -0.1423596888780594, \"umap_y\": 2.1813173294067383, \"post_id\": 1565.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1569, \"umap_x\": -0.07998524606227875, \"umap_y\": 2.12294340133667, \"post_id\": 1569.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1574, \"umap_x\": 1.211503505706787, \"umap_y\": 0.3719521462917328, \"post_id\": 1574.0, \"author_id\": 124.0, \"id_y\": 124.0, \"author\": \"Kersten Augustin\", \"author_group\": \"Other\"}, {\"id_x\": 1574, \"umap_x\": 1.211503505706787, \"umap_y\": 0.3719521462917328, \"post_id\": 1574.0, \"author_id\": 125.0, \"id_y\": 125.0, \"author\": \"Christian Jakob\", \"author_group\": \"Other\"}, {\"id_x\": 1581, \"umap_x\": -0.7299373745918274, \"umap_y\": 1.498141884803772, \"post_id\": 1581.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 1583, \"umap_x\": -3.3769338130950928, \"umap_y\": 3.5904006958007812, \"post_id\": 1583.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1593, \"umap_x\": -0.7915841937065125, \"umap_y\": 4.988982200622559, \"post_id\": 1593.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1595, \"umap_x\": -0.34137874841690063, \"umap_y\": 2.075495481491089, \"post_id\": 1595.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 1598, \"umap_x\": -3.933321952819824, \"umap_y\": 1.0176101922988892, \"post_id\": 1598.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1600, \"umap_x\": -2.1251847743988037, \"umap_y\": 1.4795856475830078, \"post_id\": 1600.0, \"author_id\": 264.0, \"id_y\": 264.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 127.0, \"id_y\": 127.0, \"author\": \"Mirko Jakubowsky\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 128.0, \"id_y\": 128.0, \"author\": \"Kay Haufe\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 88.0, \"id_y\": 88.0, \"author\": \"Maximilian Helm\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 80.0, \"id_y\": 80.0, \"author\": \"Franziska Klemenz\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 129.0, \"id_y\": 129.0, \"author\": \"Erik-Holm Langhof\", \"author_group\": \"Other\"}, {\"id_x\": 1605, \"umap_x\": -3.8201351165771484, \"umap_y\": 1.2789084911346436, \"post_id\": 1605.0, \"author_id\": 130.0, \"id_y\": 130.0, \"author\": \"Levin Kubeth\", \"author_group\": \"Other\"}, {\"id_x\": 1611, \"umap_x\": -0.4209592640399933, \"umap_y\": -1.7473208904266357, \"post_id\": 1611.0, \"author_id\": 264.0, \"id_y\": 264.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 1614, \"umap_x\": -0.7770095467567444, \"umap_y\": 2.2419745922088623, \"post_id\": 1614.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1617, \"umap_x\": 0.02657911740243435, \"umap_y\": 0.507616400718689, \"post_id\": 1617.0, \"author_id\": 53.0, \"id_y\": 53.0, \"author\": \"la-presse\", \"author_group\": \"Other\"}, {\"id_x\": 1625, \"umap_x\": -1.0019720792770386, \"umap_y\": 6.2176337242126465, \"post_id\": 1625.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1630, \"umap_x\": -0.7488124966621399, \"umap_y\": 3.2296717166900635, \"post_id\": 1630.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1633, \"umap_x\": 1.0331006050109863, \"umap_y\": 0.7542059421539307, \"post_id\": 1633.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 1639, \"umap_x\": 0.29435768723487854, \"umap_y\": 3.083357334136963, \"post_id\": 1639.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1641, \"umap_x\": -2.550536632537842, \"umap_y\": -0.9552770853042603, \"post_id\": 1641.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 1647, \"umap_x\": -1.9705592393875122, \"umap_y\": 0.3598702847957611, \"post_id\": 1647.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1652, \"umap_x\": -0.6058237552642822, \"umap_y\": 4.783895492553711, \"post_id\": 1652.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 1660, \"umap_x\": -3.9506821632385254, \"umap_y\": 1.1079808473587036, \"post_id\": 1660.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 1665, \"umap_x\": -0.2298431098461151, \"umap_y\": 4.578317642211914, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 1669, \"umap_x\": -0.26448172330856323, \"umap_y\": 1.9391714334487915, \"post_id\": 1669.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 1672, \"umap_x\": -0.1122329831123352, \"umap_y\": 1.7304174900054932, \"post_id\": 1672.0, \"author_id\": 133.0, \"id_y\": 133.0, \"author\": \"netzpolitik.org\", \"author_group\": \"Other\"}, {\"id_x\": 1672, \"umap_x\": -0.1122329831123352, \"umap_y\": 1.7304174900054932, \"post_id\": 1672.0, \"author_id\": 134.0, \"id_y\": 134.0, \"author\": \"Anna Biselli\", \"author_group\": \"Other\"}, {\"id_x\": 1679, \"umap_x\": -0.150146022439003, \"umap_y\": 2.193751811981201, \"post_id\": 1679.0, \"author_id\": 135.0, \"id_y\": 135.0, \"author\": \"No Querfront\", \"author_group\": \"Other\"}, {\"id_x\": 1686, \"umap_x\": -0.9540782570838928, \"umap_y\": 6.250823497772217, \"post_id\": 1686.0, \"author_id\": 53.0, \"id_y\": 53.0, \"author\": \"la-presse\", \"author_group\": \"Other\"}, {\"id_x\": 1688, \"umap_x\": -2.3241944313049316, \"umap_y\": 0.45480024814605713, \"post_id\": 1688.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1693, \"umap_x\": -1.0046930313110352, \"umap_y\": 6.217751979827881, \"post_id\": 1693.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1700, \"umap_x\": -2.8160853385925293, \"umap_y\": 0.5815540552139282, \"post_id\": 1700.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1703, \"umap_x\": 0.7602202892303467, \"umap_y\": 1.8734714984893799, \"post_id\": 1703.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 1708, \"umap_x\": -1.2381848096847534, \"umap_y\": 3.4540951251983643, \"post_id\": 1708.0, \"author_id\": 136.0, \"id_y\": 136.0, \"author\": \"SoligruppeB34\", \"author_group\": \"Other\"}, {\"id_x\": 1711, \"umap_x\": -1.0128945112228394, \"umap_y\": 6.072160243988037, \"post_id\": 1711.0, \"author_id\": 136.0, \"id_y\": 136.0, \"author\": \"SoligruppeB34\", \"author_group\": \"Other\"}, {\"id_x\": 1730, \"umap_x\": -2.941159963607788, \"umap_y\": -1.4904311895370483, \"post_id\": 1730.0, \"author_id\": 137.0, \"id_y\": 137.0, \"author\": \"MDR Sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 1735, \"umap_x\": -2.3282997608184814, \"umap_y\": -0.12275154143571854, \"post_id\": 1735.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1740, \"umap_x\": -1.598641276359558, \"umap_y\": 1.3944907188415527, \"post_id\": 1740.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1745, \"umap_x\": -2.9705615043640137, \"umap_y\": -1.1802541017532349, \"post_id\": 1745.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 1751, \"umap_x\": -3.840752601623535, \"umap_y\": 0.9475803375244141, \"post_id\": 1751.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 1761, \"umap_x\": 0.054760806262493134, \"umap_y\": -0.20930102467536926, \"post_id\": 1761.0, \"author_id\": 60.0, \"id_y\": 60.0, \"author\": \"ANF\", \"author_group\": \"Other\"}, {\"id_x\": 1764, \"umap_x\": -2.2433903217315674, \"umap_y\": -0.6870936751365662, \"post_id\": 1764.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 1766, \"umap_x\": 0.27095910906791687, \"umap_y\": 1.9645730257034302, \"post_id\": 1766.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 1776, \"umap_x\": -2.076960563659668, \"umap_y\": 2.527254819869995, \"post_id\": 1776.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1778, \"umap_x\": -0.12659715116024017, \"umap_y\": 2.529787063598633, \"post_id\": 1778.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 1780, \"umap_x\": -2.184357166290283, \"umap_y\": 2.5899295806884766, \"post_id\": 1780.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 1790, \"umap_x\": -1.0800120830535889, \"umap_y\": 3.5013620853424072, \"post_id\": 1790.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 1793, \"umap_x\": -0.6897484064102173, \"umap_y\": 2.7479331493377686, \"post_id\": 1793.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1796, \"umap_x\": -1.0547856092453003, \"umap_y\": 3.256620168685913, \"post_id\": 1796.0, \"author_id\": 67.0, \"id_y\": 67.0, \"author\": \"Autonome Stadtgeschichte\", \"author_group\": \"Other\"}, {\"id_x\": 1804, \"umap_x\": -2.227889060974121, \"umap_y\": 3.0814781188964844, \"post_id\": 1804.0, \"author_id\": 138.0, \"id_y\": 138.0, \"author\": \"Utopie & Praxis Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1812, \"umap_x\": -1.8663678169250488, \"umap_y\": 1.6167196035385132, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 1818, \"umap_x\": 0.817990779876709, \"umap_y\": 0.08243753761053085, \"post_id\": 1818.0, \"author_id\": 264.0, \"id_y\": 264.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 1821, \"umap_x\": -2.99711537361145, \"umap_y\": -1.0240397453308105, \"post_id\": 1821.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 1823, \"umap_x\": 0.045750901103019714, \"umap_y\": 2.175971746444702, \"post_id\": 1823.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1826, \"umap_x\": -0.919068455696106, \"umap_y\": 6.185063362121582, \"post_id\": 1826.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 1829, \"umap_x\": -2.9825572967529297, \"umap_y\": 1.2052083015441895, \"post_id\": 1829.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 1835, \"umap_x\": -2.704599142074585, \"umap_y\": 1.3585699796676636, \"post_id\": 1835.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1837, \"umap_x\": -2.9559922218322754, \"umap_y\": -1.4061052799224854, \"post_id\": 1837.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1848, \"umap_x\": -0.7433257699012756, \"umap_y\": 3.3150339126586914, \"post_id\": 1848.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 1850, \"umap_x\": -0.7818943858146667, \"umap_y\": 4.8796892166137695, \"post_id\": 1850.0, \"author_id\": 139.0, \"id_y\": 139.0, \"author\": \"Autonome FLINTA\", \"author_group\": \"Other\"}, {\"id_x\": 1853, \"umap_x\": -1.0004438161849976, \"umap_y\": 4.81131649017334, \"post_id\": 1853.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 1856, \"umap_x\": -1.6300636529922485, \"umap_y\": 3.9979324340820312, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 1876, \"umap_x\": -4.424449920654297, \"umap_y\": 4.410057544708252, \"post_id\": 1876.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1879, \"umap_x\": -1.1919819116592407, \"umap_y\": 3.163215160369873, \"post_id\": 1879.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1882, \"umap_x\": -1.245895266532898, \"umap_y\": 5.148597717285156, \"post_id\": 1882.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 1885, \"umap_x\": -2.0905916690826416, \"umap_y\": 4.533963203430176, \"post_id\": 1885.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 1892, \"umap_x\": -1.8119945526123047, \"umap_y\": 3.337841749191284, \"post_id\": 1892.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1899, \"umap_x\": -1.4901460409164429, \"umap_y\": 2.06648850440979, \"post_id\": 1899.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1902, \"umap_x\": -1.708467960357666, \"umap_y\": 3.262798309326172, \"post_id\": 1902.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1904, \"umap_x\": -1.4225473403930664, \"umap_y\": 5.12749719619751, \"post_id\": 1904.0, \"author_id\": 8.0, \"id_y\": 8.0, \"author\": \"ABC Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 1915, \"umap_x\": -1.254301905632019, \"umap_y\": 3.2476260662078857, \"post_id\": 1915.0, \"author_id\": 140.0, \"id_y\": 140.0, \"author\": \"Anarchistische Tage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1917, \"umap_x\": -1.1023132801055908, \"umap_y\": 1.0771429538726807, \"post_id\": 1917.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 1930, \"umap_x\": -1.143677830696106, \"umap_y\": 4.098881721496582, \"post_id\": 1930.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1934, \"umap_x\": -0.1323106437921524, \"umap_y\": 4.202675819396973, \"post_id\": 1934.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1944, \"umap_x\": -1.1588886976242065, \"umap_y\": 5.093690395355225, \"post_id\": 1944.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1948, \"umap_x\": -0.8182937502861023, \"umap_y\": 4.100440502166748, \"post_id\": 1948.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1955, \"umap_x\": -0.015292531810700893, \"umap_y\": -0.321516752243042, \"post_id\": 1955.0, \"author_id\": 141.0, \"id_y\": 141.0, \"author\": \"Alexander M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 1955, \"umap_x\": -0.015292531810700893, \"umap_y\": -0.321516752243042, \"post_id\": 1955.0, \"author_id\": 142.0, \"id_y\": 142.0, \"author\": \"apotheke-adhoc\", \"author_group\": \"Other\"}, {\"id_x\": 1957, \"umap_x\": -0.4710176885128021, \"umap_y\": 2.93900465965271, \"post_id\": 1957.0, \"author_id\": 143.0, \"id_y\": 143.0, \"author\": \"wirsindalle129\", \"author_group\": \"Other\"}, {\"id_x\": 1960, \"umap_x\": -2.9034059047698975, \"umap_y\": -1.4941781759262085, \"post_id\": 1960.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 1965, \"umap_x\": -2.0941264629364014, \"umap_y\": 2.7919392585754395, \"post_id\": 1965.0, \"author_id\": 46.0, \"id_y\": 46.0, \"author\": \"Copwatch Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 1971, \"umap_x\": -1.4061373472213745, \"umap_y\": 0.47286880016326904, \"post_id\": 1971.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 1973, \"umap_x\": -0.027726389467716217, \"umap_y\": 4.877406120300293, \"post_id\": 1973.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 1976, \"umap_x\": -1.24952232837677, \"umap_y\": 2.7105729579925537, \"post_id\": 1976.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 1995, \"umap_x\": -2.910179615020752, \"umap_y\": 4.322065830230713, \"post_id\": 1995.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2014, \"umap_x\": -2.9542934894561768, \"umap_y\": 4.27617073059082, \"post_id\": 2014.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2017, \"umap_x\": 0.025119617581367493, \"umap_y\": 2.1188278198242188, \"post_id\": 2017.0, \"author_id\": 37.0, \"id_y\": 37.0, \"author\": \"Soli-Antifa-Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2021, \"umap_x\": -1.906459927558899, \"umap_y\": 3.9999635219573975, \"post_id\": 2021.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 2024, \"umap_x\": -2.0422563552856445, \"umap_y\": -0.9043954014778137, \"post_id\": 2024.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2035, \"umap_x\": -1.341550350189209, \"umap_y\": 5.284346580505371, \"post_id\": 2035.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2042, \"umap_x\": -2.192375659942627, \"umap_y\": 3.274268865585327, \"post_id\": 2042.0, \"author_id\": 144.0, \"id_y\": 144.0, \"author\": \"Anarchafeministinnen\", \"author_group\": \"Other\"}, {\"id_x\": 2046, \"umap_x\": -2.4035964012145996, \"umap_y\": 1.5729628801345825, \"post_id\": 2046.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2050, \"umap_x\": -3.2491657733917236, \"umap_y\": 4.358895778656006, \"post_id\": 2050.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2055, \"umap_x\": -2.945540189743042, \"umap_y\": -0.9975593686103821, \"post_id\": 2055.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2060, \"umap_x\": -2.249678611755371, \"umap_y\": 0.9251575469970703, \"post_id\": 2060.0, \"author_id\": 145.0, \"id_y\": 145.0, \"author\": \"St\\u00f6tteritz Nazifrei\", \"author_group\": \"Other\"}, {\"id_x\": 2064, \"umap_x\": -3.0561001300811768, \"umap_y\": 4.3194260597229, \"post_id\": 2064.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2067, \"umap_x\": 0.6085590720176697, \"umap_y\": 0.5565537214279175, \"post_id\": 2067.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2069, \"umap_x\": -2.2067763805389404, \"umap_y\": 1.8283207416534424, \"post_id\": 2069.0, \"author_id\": 146.0, \"id_y\": 146.0, \"author\": \"Katarina Gust\", \"author_group\": \"Other\"}, {\"id_x\": 2069, \"umap_x\": -2.2067763805389404, \"umap_y\": 1.8283207416534424, \"post_id\": 2069.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2071, \"umap_x\": -1.739269733428955, \"umap_y\": 0.7353320121765137, \"post_id\": 2071.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2074, \"umap_x\": -0.9282659292221069, \"umap_y\": 5.253839015960693, \"post_id\": 2074.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2076, \"umap_x\": -0.49537238478660583, \"umap_y\": 4.543938159942627, \"post_id\": 2076.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 2086, \"umap_x\": -0.6891918182373047, \"umap_y\": 5.007511138916016, \"post_id\": 2086.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 2089, \"umap_x\": 0.9569816589355469, \"umap_y\": 0.5549080967903137, \"post_id\": 2089.0, \"author_id\": 147.0, \"id_y\": 147.0, \"author\": \"Gunnar Saft\", \"author_group\": \"Other\"}, {\"id_x\": 2089, \"umap_x\": 0.9569816589355469, \"umap_y\": 0.5549080967903137, \"post_id\": 2089.0, \"author_id\": 148.0, \"id_y\": 148.0, \"author\": \"Tim Ruben Weimer\", \"author_group\": \"Other\"}, {\"id_x\": 2089, \"umap_x\": 0.9569816589355469, \"umap_y\": 0.5549080967903137, \"post_id\": 2089.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2097, \"umap_x\": -1.3453688621520996, \"umap_y\": 2.581371784210205, \"post_id\": 2097.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2101, \"umap_x\": 0.9190965294837952, \"umap_y\": 0.8316215872764587, \"post_id\": 2101.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 2101, \"umap_x\": 0.9190965294837952, \"umap_y\": 0.8316215872764587, \"post_id\": 2101.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2103, \"umap_x\": -3.306971311569214, \"umap_y\": 2.6075568199157715, \"post_id\": 2103.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 2108, \"umap_x\": -0.9237210154533386, \"umap_y\": 6.323334693908691, \"post_id\": 2108.0, \"author_id\": 149.0, \"id_y\": 149.0, \"author\": \"b34soli\", \"author_group\": \"Other\"}, {\"id_x\": 2116, \"umap_x\": -2.4570441246032715, \"umap_y\": 4.00695276260376, \"post_id\": 2116.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 2121, \"umap_x\": -3.383885622024536, \"umap_y\": 2.8066937923431396, \"post_id\": 2121.0, \"author_id\": 150.0, \"id_y\": 150.0, \"author\": \"Prosfygika Squat\", \"author_group\": \"Other\"}, {\"id_x\": 2126, \"umap_x\": 0.04137825593352318, \"umap_y\": 3.588930606842041, \"post_id\": 2126.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2129, \"umap_x\": -1.296245813369751, \"umap_y\": 4.085113525390625, \"post_id\": 2129.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2136, \"umap_x\": -1.313887596130371, \"umap_y\": -1.6913429498672485, \"post_id\": 2136.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2140, \"umap_x\": -0.08302482962608337, \"umap_y\": 2.265381097793579, \"post_id\": 2140.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 2146, \"umap_x\": 0.37446579337120056, \"umap_y\": 3.9290904998779297, \"post_id\": 2146.0, \"author_id\": 15.0, \"id_y\": 15.0, \"author\": \"Solib\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2170, \"umap_x\": -2.1362342834472656, \"umap_y\": 1.564205288887024, \"post_id\": 2170.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2170, \"umap_x\": -2.1362342834472656, \"umap_y\": 1.564205288887024, \"post_id\": 2170.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 2173, \"umap_x\": -3.7026429176330566, \"umap_y\": 1.0238195657730103, \"post_id\": 2173.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2178, \"umap_x\": -1.3313926458358765, \"umap_y\": 0.37905776500701904, \"post_id\": 2178.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2178, \"umap_x\": -1.3313926458358765, \"umap_y\": 0.37905776500701904, \"post_id\": 2178.0, \"author_id\": 152.0, \"id_y\": 152.0, \"author\": \"Frank H\\u00f6r\\u00fcgel\", \"author_group\": \"Other\"}, {\"id_x\": 2181, \"umap_x\": -1.5710703134536743, \"umap_y\": 4.370018005371094, \"post_id\": 2181.0, \"author_id\": 153.0, \"id_y\": 153.0, \"author\": \"Solidarit\\u00e4tsnetzwerk Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 2193, \"umap_x\": 0.36691609025001526, \"umap_y\": 0.7617804408073425, \"post_id\": 2193.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 2193, \"umap_x\": 0.36691609025001526, \"umap_y\": 0.7617804408073425, \"post_id\": 2193.0, \"author_id\": 154.0, \"id_y\": 154.0, \"author\": \"MICHAEL DEUTSCHMANN\", \"author_group\": \"Other\"}, {\"id_x\": 2193, \"umap_x\": 0.36691609025001526, \"umap_y\": 0.7617804408073425, \"post_id\": 2193.0, \"author_id\": 155.0, \"id_y\": 155.0, \"author\": \"THOMAS FISCHER\", \"author_group\": \"Other\"}, {\"id_x\": 2195, \"umap_x\": -3.7297449111938477, \"umap_y\": 0.9959829449653625, \"post_id\": 2195.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2203, \"umap_x\": -2.5815529823303223, \"umap_y\": 1.5565173625946045, \"post_id\": 2203.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2206, \"umap_x\": -2.067776918411255, \"umap_y\": 1.5952131748199463, \"post_id\": 2206.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2209, \"umap_x\": 0.012765445746481419, \"umap_y\": 3.8634238243103027, \"post_id\": 2209.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 2209, \"umap_x\": 0.012765445746481419, \"umap_y\": 3.8634238243103027, \"post_id\": 2209.0, \"author_id\": 157.0, \"id_y\": 157.0, \"author\": \"Berliner Angeklagten\", \"author_group\": \"Other\"}, {\"id_x\": 2212, \"umap_x\": -0.8022788763046265, \"umap_y\": 1.9997584819793701, \"post_id\": 2212.0, \"author_id\": 158.0, \"id_y\": 158.0, \"author\": \"Von Denise Peikert\", \"author_group\": \"Other\"}, {\"id_x\": 2212, \"umap_x\": -0.8022788763046265, \"umap_y\": 1.9997584819793701, \"post_id\": 2212.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2215, \"umap_x\": -1.1212884187698364, \"umap_y\": 4.573651313781738, \"post_id\": 2215.0, \"author_id\": 159.0, \"id_y\": 159.0, \"author\": \"Autonome Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 2227, \"umap_x\": -1.1624882221221924, \"umap_y\": 3.1668925285339355, \"post_id\": 2227.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 2229, \"umap_x\": -1.1581408977508545, \"umap_y\": 4.028606414794922, \"post_id\": 2229.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2234, \"umap_x\": -1.8473824262619019, \"umap_y\": 3.473790407180786, \"post_id\": 2234.0, \"author_id\": 161.0, \"id_y\": 161.0, \"author\": \"Initiative\", \"author_group\": \"Other\"}, {\"id_x\": 2237, \"umap_x\": -2.7697441577911377, \"umap_y\": 3.2192585468292236, \"post_id\": 2237.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2240, \"umap_x\": 0.1548503339290619, \"umap_y\": 0.6085940003395081, \"post_id\": 2240.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 2242, \"umap_x\": -1.338529109954834, \"umap_y\": 2.3549137115478516, \"post_id\": 2242.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2252, \"umap_x\": 0.039187729358673096, \"umap_y\": 2.4187231063842773, \"post_id\": 2252.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2255, \"umap_x\": -0.8824113607406616, \"umap_y\": 4.8234686851501465, \"post_id\": 2255.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 2266, \"umap_x\": -1.7409372329711914, \"umap_y\": 1.3446974754333496, \"post_id\": 2266.0, \"author_id\": 162.0, \"id_y\": 162.0, \"author\": \"B\\u00fcndnis f\\u00fcr Selbstbestimmung\", \"author_group\": \"Other\"}, {\"id_x\": 2270, \"umap_x\": -2.753737688064575, \"umap_y\": 3.6723737716674805, \"post_id\": 2270.0, \"author_id\": 140.0, \"id_y\": 140.0, \"author\": \"Anarchistische Tage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 2276, \"umap_x\": -1.259691596031189, \"umap_y\": 3.903578042984009, \"post_id\": 2276.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2279, \"umap_x\": -1.1947957277297974, \"umap_y\": 2.885344982147217, \"post_id\": 2279.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 2284, \"umap_x\": -1.471087098121643, \"umap_y\": 0.032288044691085815, \"post_id\": 2284.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2289, \"umap_x\": -2.1926772594451904, \"umap_y\": 3.772568464279175, \"post_id\": 2289.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2293, \"umap_x\": -2.1896286010742188, \"umap_y\": -0.3095727562904358, \"post_id\": 2293.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2297, \"umap_x\": -1.074374794960022, \"umap_y\": 1.270765781402588, \"post_id\": 2297.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2300, \"umap_x\": -0.41218408942222595, \"umap_y\": -1.7940315008163452, \"post_id\": 2300.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 2302, \"umap_x\": -2.412533760070801, \"umap_y\": -0.4356139004230499, \"post_id\": 2302.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 2306, \"umap_x\": -2.765047788619995, \"umap_y\": 0.7966284155845642, \"post_id\": 2306.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2309, \"umap_x\": -2.885040044784546, \"umap_y\": -1.3655385971069336, \"post_id\": 2309.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2312, \"umap_x\": -2.2577786445617676, \"umap_y\": 4.119019031524658, \"post_id\": 2312.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2319, \"umap_x\": -1.2466025352478027, \"umap_y\": 3.4806675910949707, \"post_id\": 2319.0, \"author_id\": 163.0, \"id_y\": 163.0, \"author\": \"Kappa Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 2324, \"umap_x\": 0.3468737304210663, \"umap_y\": 4.2613444328308105, \"post_id\": 2324.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2328, \"umap_x\": -1.544952154159546, \"umap_y\": 0.04245706647634506, \"post_id\": 2328.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2330, \"umap_x\": -2.9053564071655273, \"umap_y\": 0.3013192117214203, \"post_id\": 2330.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2330, \"umap_x\": -2.9053564071655273, \"umap_y\": 0.3013192117214203, \"post_id\": 2330.0, \"author_id\": 164.0, \"id_y\": 164.0, \"author\": \"Von Lilly G\\u00fcnthner\", \"author_group\": \"Other\"}, {\"id_x\": 2341, \"umap_x\": 1.3499946594238281, \"umap_y\": 1.0170429944992065, \"post_id\": 2341.0, \"author_id\": 165.0, \"id_y\": 165.0, \"author\": \"spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 2343, \"umap_x\": -3.7161617279052734, \"umap_y\": 3.9535739421844482, \"post_id\": 2343.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2346, \"umap_x\": -4.391181468963623, \"umap_y\": 4.679696083068848, \"post_id\": 2346.0, \"author_id\": 166.0, \"id_y\": 166.0, \"author\": \"Civaka Azad\", \"author_group\": \"Other\"}, {\"id_x\": 2352, \"umap_x\": 0.17906658351421356, \"umap_y\": 1.0142078399658203, \"post_id\": 2352.0, \"author_id\": 181.0, \"id_y\": 181.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 2360, \"umap_x\": -3.0937204360961914, \"umap_y\": 0.05148685351014137, \"post_id\": 2360.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 2364, \"umap_x\": 1.0349124670028687, \"umap_y\": 0.8334692716598511, \"post_id\": 2364.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2366, \"umap_x\": 0.4408600330352783, \"umap_y\": 0.18611279129981995, \"post_id\": 2366.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 2372, \"umap_x\": -2.8680336475372314, \"umap_y\": 2.0872790813446045, \"post_id\": 2372.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2375, \"umap_x\": -2.0197463035583496, \"umap_y\": 1.186956524848938, \"post_id\": 2375.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 2378, \"umap_x\": 0.3762904107570648, \"umap_y\": 1.415458083152771, \"post_id\": 2378.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2381, \"umap_x\": -0.38246771693229675, \"umap_y\": -0.15903182327747345, \"post_id\": 2381.0, \"author_id\": 167.0, \"id_y\": 167.0, \"author\": \"FOCUS-Reporter\", \"author_group\": \"Other\"}, {\"id_x\": 2381, \"umap_x\": -0.38246771693229675, \"umap_y\": -0.15903182327747345, \"post_id\": 2381.0, \"author_id\": 168.0, \"id_y\": 168.0, \"author\": \"Josef Hufelschulte\", \"author_group\": \"Other\"}, {\"id_x\": 2385, \"umap_x\": -2.447313070297241, \"umap_y\": 2.1169373989105225, \"post_id\": 2385.0, \"author_id\": 169.0, \"id_y\": 169.0, \"author\": \"freiepresse\", \"author_group\": \"Other\"}, {\"id_x\": 2385, \"umap_x\": -2.447313070297241, \"umap_y\": 2.1169373989105225, \"post_id\": 2385.0, \"author_id\": 170.0, \"id_y\": 170.0, \"author\": \"Johannes P\\u00f6hlandt\", \"author_group\": \"Other\"}, {\"id_x\": 2392, \"umap_x\": -1.3157038688659668, \"umap_y\": 2.8868179321289062, \"post_id\": 2392.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2397, \"umap_x\": -2.2936906814575195, \"umap_y\": 4.000376224517822, \"post_id\": 2397.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2401, \"umap_x\": -0.3080703616142273, \"umap_y\": -0.8776033520698547, \"post_id\": 2401.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2411, \"umap_x\": -0.8138428330421448, \"umap_y\": 3.3879246711730957, \"post_id\": 2411.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2413, \"umap_x\": -1.0264832973480225, \"umap_y\": 1.1180776357650757, \"post_id\": 2413.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2422, \"umap_x\": -0.0967014878988266, \"umap_y\": 2.03128981590271, \"post_id\": 2422.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 2424, \"umap_x\": -0.9295092225074768, \"umap_y\": 0.5550950169563293, \"post_id\": 2424.0, \"author_id\": 172.0, \"id_y\": 172.0, \"author\": \"AK-Distomo\", \"author_group\": \"Other\"}, {\"id_x\": 2427, \"umap_x\": -2.2923901081085205, \"umap_y\": -0.10240140557289124, \"post_id\": 2427.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2432, \"umap_x\": -1.0600087642669678, \"umap_y\": 5.2477521896362305, \"post_id\": 2432.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 2437, \"umap_x\": -3.0626919269561768, \"umap_y\": -0.06291043013334274, \"post_id\": 2437.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2440, \"umap_x\": -1.0478856563568115, \"umap_y\": 1.0850422382354736, \"post_id\": 2440.0, \"author_id\": 173.0, \"id_y\": 173.0, \"author\": \"netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 2445, \"umap_x\": -3.1929359436035156, \"umap_y\": -0.23085230588912964, \"post_id\": 2445.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 2449, \"umap_x\": -3.0625853538513184, \"umap_y\": -0.05989351496100426, \"post_id\": 2449.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2453, \"umap_x\": 5.590410232543945, \"umap_y\": 3.3744285106658936, \"post_id\": 2453.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2458, \"umap_x\": -2.1429519653320312, \"umap_y\": 3.5742130279541016, \"post_id\": 2458.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2460, \"umap_x\": -1.1243274211883545, \"umap_y\": 2.4870667457580566, \"post_id\": 2460.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2466, \"umap_x\": -2.1096127033233643, \"umap_y\": 1.2943878173828125, \"post_id\": 2466.0, \"author_id\": 174.0, \"id_y\": 174.0, \"author\": \"Von Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 2466, \"umap_x\": -2.1096127033233643, \"umap_y\": 1.2943878173828125, \"post_id\": 2466.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2470, \"umap_x\": -0.6355027556419373, \"umap_y\": 3.4288759231567383, \"post_id\": 2470.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2473, \"umap_x\": -2.076700448989868, \"umap_y\": 3.078580379486084, \"post_id\": 2473.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 2482, \"umap_x\": 5.614463806152344, \"umap_y\": 3.3744566440582275, \"post_id\": 2482.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2485, \"umap_x\": 1.1783943176269531, \"umap_y\": 0.18864184617996216, \"post_id\": 2485.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 2485, \"umap_x\": 1.1783943176269531, \"umap_y\": 0.18864184617996216, \"post_id\": 2485.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 2485, \"umap_x\": 1.1783943176269531, \"umap_y\": 0.18864184617996216, \"post_id\": 2485.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 2487, \"umap_x\": 1.2990506887435913, \"umap_y\": 0.21115799248218536, \"post_id\": 2487.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 2487, \"umap_x\": 1.2990506887435913, \"umap_y\": 0.21115799248218536, \"post_id\": 2487.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 2487, \"umap_x\": 1.2990506887435913, \"umap_y\": 0.21115799248218536, \"post_id\": 2487.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 2489, \"umap_x\": -0.3480437695980072, \"umap_y\": 2.307460308074951, \"post_id\": 2489.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2491, \"umap_x\": -3.549267292022705, \"umap_y\": -0.9356998205184937, \"post_id\": 2491.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2493, \"umap_x\": -0.9988686442375183, \"umap_y\": 0.5120342373847961, \"post_id\": 2493.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2496, \"umap_x\": -0.7122974991798401, \"umap_y\": 2.947049140930176, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 2498, \"umap_x\": -1.7723548412322998, \"umap_y\": 0.47961950302124023, \"post_id\": 2498.0, \"author_id\": 176.0, \"id_y\": 176.0, \"author\": \"Comrade\", \"author_group\": \"Other\"}, {\"id_x\": 2511, \"umap_x\": -0.2662493586540222, \"umap_y\": 3.6339962482452393, \"post_id\": 2511.0, \"author_id\": 177.0, \"id_y\": 177.0, \"author\": \"Autonome Erwerbslosen Initiative\", \"author_group\": \"Other\"}, {\"id_x\": 2519, \"umap_x\": 0.15623846650123596, \"umap_y\": 2.6356775760650635, \"post_id\": 2519.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2524, \"umap_x\": 5.614572525024414, \"umap_y\": 3.374516010284424, \"post_id\": 2524.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2528, \"umap_x\": -1.695047378540039, \"umap_y\": 1.3991190195083618, \"post_id\": 2528.0, \"author_id\": 178.0, \"id_y\": 178.0, \"author\": \"Von Maximilian Helm\", \"author_group\": \"Other\"}, {\"id_x\": 2528, \"umap_x\": -1.695047378540039, \"umap_y\": 1.3991190195083618, \"post_id\": 2528.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2530, \"umap_x\": 0.33042454719543457, \"umap_y\": 2.121945381164551, \"post_id\": 2530.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2537, \"umap_x\": -2.8594563007354736, \"umap_y\": 5.582025051116943, \"post_id\": 2537.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2542, \"umap_x\": 1.2029623985290527, \"umap_y\": 0.1442572921514511, \"post_id\": 2542.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 2544, \"umap_x\": -2.6586713790893555, \"umap_y\": -0.959475576877594, \"post_id\": 2544.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2547, \"umap_x\": -1.6551463603973389, \"umap_y\": 3.021287679672241, \"post_id\": 2547.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 2549, \"umap_x\": -0.7223535180091858, \"umap_y\": 0.17553596198558807, \"post_id\": 2549.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 2551, \"umap_x\": 1.0992515087127686, \"umap_y\": 0.001748005743138492, \"post_id\": 2551.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2553, \"umap_x\": 0.4644777178764343, \"umap_y\": 0.12838540971279144, \"post_id\": 2553.0, \"author_id\": 180.0, \"id_y\": 180.0, \"author\": \"Von Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 2553, \"umap_x\": 0.4644777178764343, \"umap_y\": 0.12838540971279144, \"post_id\": 2553.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 2555, \"umap_x\": -0.7532213926315308, \"umap_y\": 0.7852106690406799, \"post_id\": 2555.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 2555, \"umap_x\": -0.7532213926315308, \"umap_y\": 0.7852106690406799, \"post_id\": 2555.0, \"author_id\": 182.0, \"id_y\": 182.0, \"author\": \"Jan Oechsner\", \"author_group\": \"Other\"}, {\"id_x\": 2558, \"umap_x\": -4.2360520362854, \"umap_y\": 4.607446193695068, \"post_id\": 2558.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2570, \"umap_x\": -0.7734970450401306, \"umap_y\": -0.12565211951732635, \"post_id\": 2570.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 2570, \"umap_x\": -0.7734970450401306, \"umap_y\": -0.12565211951732635, \"post_id\": 2570.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2572, \"umap_x\": -0.1752619743347168, \"umap_y\": -0.03198790177702904, \"post_id\": 2572.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 2572, \"umap_x\": -0.1752619743347168, \"umap_y\": -0.03198790177702904, \"post_id\": 2572.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 2572, \"umap_x\": -0.1752619743347168, \"umap_y\": -0.03198790177702904, \"post_id\": 2572.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2575, \"umap_x\": 1.2985609769821167, \"umap_y\": 0.04190506786108017, \"post_id\": 2575.0, \"author_id\": 42.0, \"id_y\": 42.0, \"author\": \"Michael Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 2575, \"umap_x\": 1.2985609769821167, \"umap_y\": 0.04190506786108017, \"post_id\": 2575.0, \"author_id\": 184.0, \"id_y\": 184.0, \"author\": \"Wilhelm Bold\", \"author_group\": \"Other\"}, {\"id_x\": 2575, \"umap_x\": 1.2985609769821167, \"umap_y\": 0.04190506786108017, \"post_id\": 2575.0, \"author_id\": 185.0, \"id_y\": 185.0, \"author\": \"Gregor W\\u00fcnsch\", \"author_group\": \"Other\"}, {\"id_x\": 2575, \"umap_x\": 1.2985609769821167, \"umap_y\": 0.04190506786108017, \"post_id\": 2575.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 2577, \"umap_x\": 1.623706579208374, \"umap_y\": 0.23170578479766846, \"post_id\": 2577.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 2577, \"umap_x\": 1.623706579208374, \"umap_y\": 0.23170578479766846, \"post_id\": 2577.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 2579, \"umap_x\": -0.3079569935798645, \"umap_y\": 0.18108370900154114, \"post_id\": 2579.0, \"author_id\": 187.0, \"id_y\": 187.0, \"author\": \"Jean-Philipp Baeck\", \"author_group\": \"Other\"}, {\"id_x\": 2579, \"umap_x\": -0.3079569935798645, \"umap_y\": 0.18108370900154114, \"post_id\": 2579.0, \"author_id\": 44.0, \"id_y\": 44.0, \"author\": \"Andreas Speit\", \"author_group\": \"Other\"}, {\"id_x\": 2581, \"umap_x\": -0.6500422358512878, \"umap_y\": -0.33677929639816284, \"post_id\": 2581.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2596, \"umap_x\": -0.9087671041488647, \"umap_y\": 3.9960169792175293, \"post_id\": 2596.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2602, \"umap_x\": -0.591233491897583, \"umap_y\": 0.5483392477035522, \"post_id\": 2602.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2608, \"umap_x\": -2.6732418537139893, \"umap_y\": 0.5529652833938599, \"post_id\": 2608.0, \"author_id\": 188.0, \"id_y\": 188.0, \"author\": \"Rundfunk Berlin-Brandenburg\", \"author_group\": \"Other\"}, {\"id_x\": 2612, \"umap_x\": 5.614663124084473, \"umap_y\": 3.3745133876800537, \"post_id\": 2612.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2614, \"umap_x\": 1.0500842332839966, \"umap_y\": -0.10870369523763657, \"post_id\": 2614.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2616, \"umap_x\": -4.564093589782715, \"umap_y\": 4.516371250152588, \"post_id\": 2616.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 2620, \"umap_x\": -2.2197647094726562, \"umap_y\": 1.5777474641799927, \"post_id\": 2620.0, \"author_id\": 189.0, \"id_y\": 189.0, \"author\": \"Frankfurter Rundschau\", \"author_group\": \"Other\"}, {\"id_x\": 2622, \"umap_x\": -1.1703683137893677, \"umap_y\": 1.9687092304229736, \"post_id\": 2622.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2622, \"umap_x\": -1.1703683137893677, \"umap_y\": 1.9687092304229736, \"post_id\": 2622.0, \"author_id\": 190.0, \"id_y\": 190.0, \"author\": \"RND\", \"author_group\": \"Other\"}, {\"id_x\": 2622, \"umap_x\": -1.1703683137893677, \"umap_y\": 1.9687092304229736, \"post_id\": 2622.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2626, \"umap_x\": 0.054502587765455246, \"umap_y\": 3.2838294506073, \"post_id\": 2626.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2629, \"umap_x\": -2.1059579849243164, \"umap_y\": 3.9887280464172363, \"post_id\": 2629.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2632, \"umap_x\": 0.08934938162565231, \"umap_y\": 3.870549440383911, \"post_id\": 2632.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2635, \"umap_x\": -2.865903377532959, \"umap_y\": -1.0458850860595703, \"post_id\": 2635.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2639, \"umap_x\": -4.280404567718506, \"umap_y\": 4.7204508781433105, \"post_id\": 2639.0, \"author_id\": 191.0, \"id_y\": 191.0, \"author\": \"defendrojava\", \"author_group\": \"Other\"}, {\"id_x\": 2644, \"umap_x\": 0.7831386923789978, \"umap_y\": 0.878208577632904, \"post_id\": 2644.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2644, \"umap_x\": 0.7831386923789978, \"umap_y\": 0.878208577632904, \"post_id\": 2644.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 2652, \"umap_x\": 0.2589591145515442, \"umap_y\": 3.781493902206421, \"post_id\": 2652.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 2654, \"umap_x\": 0.034582171589136124, \"umap_y\": 2.128689765930176, \"post_id\": 2654.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 2656, \"umap_x\": 0.01482673641294241, \"umap_y\": 2.2014217376708984, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 2660, \"umap_x\": 5.614767551422119, \"umap_y\": 3.3746232986450195, \"post_id\": 2660.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2662, \"umap_x\": -1.8729361295700073, \"umap_y\": 0.9116880297660828, \"post_id\": 2662.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2671, \"umap_x\": -0.696090579032898, \"umap_y\": 2.088773488998413, \"post_id\": 2671.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2671, \"umap_x\": -0.696090579032898, \"umap_y\": 2.088773488998413, \"post_id\": 2671.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 2676, \"umap_x\": -0.933475911617279, \"umap_y\": 6.172626972198486, \"post_id\": 2676.0, \"author_id\": 193.0, \"id_y\": 193.0, \"author\": \"soli-antifa-ost.org\", \"author_group\": \"Other\"}, {\"id_x\": 2682, \"umap_x\": -2.1423134803771973, \"umap_y\": 1.1911780834197998, \"post_id\": 2682.0, \"author_id\": 194.0, \"id_y\": 194.0, \"author\": \"Ulrich Riedel\", \"author_group\": \"Other\"}, {\"id_x\": 2682, \"umap_x\": -2.1423134803771973, \"umap_y\": 1.1911780834197998, \"post_id\": 2682.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 2684, \"umap_x\": -0.737399160861969, \"umap_y\": 2.1065993309020996, \"post_id\": 2684.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 2684, \"umap_x\": -0.737399160861969, \"umap_y\": 2.1065993309020996, \"post_id\": 2684.0, \"author_id\": 196.0, \"id_y\": 196.0, \"author\": \"S\\u00fcddeutsche Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2688, \"umap_x\": -1.8628298044204712, \"umap_y\": 3.5938401222229004, \"post_id\": 2688.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2694, \"umap_x\": -0.5561798214912415, \"umap_y\": 3.2506816387176514, \"post_id\": 2694.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 2698, \"umap_x\": -1.4787839651107788, \"umap_y\": 2.8184139728546143, \"post_id\": 2698.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2708, \"umap_x\": -0.31094491481781006, \"umap_y\": 4.0439372062683105, \"post_id\": 2708.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2711, \"umap_x\": 5.6150336265563965, \"umap_y\": 3.3745718002319336, \"post_id\": 2711.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2713, \"umap_x\": -2.4170877933502197, \"umap_y\": 0.787407398223877, \"post_id\": 2713.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2719, \"umap_x\": -0.40566080808639526, \"umap_y\": 3.866356134414673, \"post_id\": 2719.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2726, \"umap_x\": 0.652413010597229, \"umap_y\": 0.9404684901237488, \"post_id\": 2726.0, \"author_id\": 155.0, \"id_y\": 155.0, \"author\": \"THOMAS FISCHER\", \"author_group\": \"Other\"}, {\"id_x\": 2726, \"umap_x\": 0.652413010597229, \"umap_y\": 0.9404684901237488, \"post_id\": 2726.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 2728, \"umap_x\": -2.4480230808258057, \"umap_y\": 2.3797333240509033, \"post_id\": 2728.0, \"author_id\": 197.0, \"id_y\": 197.0, \"author\": \"Claudia Karmanova\", \"author_group\": \"Other\"}, {\"id_x\": 2728, \"umap_x\": -2.4480230808258057, \"umap_y\": 2.3797333240509033, \"post_id\": 2728.0, \"author_id\": 198.0, \"id_y\": 198.0, \"author\": \"Antonia Weber\", \"author_group\": \"Other\"}, {\"id_x\": 2728, \"umap_x\": -2.4480230808258057, \"umap_y\": 2.3797333240509033, \"post_id\": 2728.0, \"author_id\": 199.0, \"id_y\": 199.0, \"author\": \"Lena Eggert\", \"author_group\": \"Other\"}, {\"id_x\": 2728, \"umap_x\": -2.4480230808258057, \"umap_y\": 2.3797333240509033, \"post_id\": 2728.0, \"author_id\": 200.0, \"id_y\": 200.0, \"author\": \"Jakob Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 2728, \"umap_x\": -2.4480230808258057, \"umap_y\": 2.3797333240509033, \"post_id\": 2728.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 2730, \"umap_x\": -3.502495050430298, \"umap_y\": 2.6440372467041016, \"post_id\": 2730.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2741, \"umap_x\": -2.058192014694214, \"umap_y\": 0.347202330827713, \"post_id\": 2741.0, \"author_id\": 198.0, \"id_y\": 198.0, \"author\": \"Antonia Weber\", \"author_group\": \"Other\"}, {\"id_x\": 2744, \"umap_x\": -2.8068909645080566, \"umap_y\": -1.5794572830200195, \"post_id\": 2744.0, \"author_id\": 201.0, \"id_y\": 201.0, \"author\": \"Polizeidirektion Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 2752, \"umap_x\": 0.11927275359630585, \"umap_y\": 3.7904741764068604, \"post_id\": 2752.0, \"author_id\": 202.0, \"id_y\": 202.0, \"author\": \"Rote Hilfe Ortsgruppe Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 2755, \"umap_x\": -1.8024569749832153, \"umap_y\": 1.1084617376327515, \"post_id\": 2755.0, \"author_id\": 203.0, \"id_y\": 203.0, \"author\": \"g20redak\", \"author_group\": \"Other\"}, {\"id_x\": 2762, \"umap_x\": -1.3735843896865845, \"umap_y\": 4.083193778991699, \"post_id\": 2762.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2766, \"umap_x\": -1.9663466215133667, \"umap_y\": 2.6486713886260986, \"post_id\": 2766.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 2766, \"umap_x\": -1.9663466215133667, \"umap_y\": 2.6486713886260986, \"post_id\": 2766.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 2771, \"umap_x\": -1.9115980863571167, \"umap_y\": 3.6658823490142822, \"post_id\": 2771.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 2773, \"umap_x\": -1.438946008682251, \"umap_y\": 0.711829662322998, \"post_id\": 2773.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2779, \"umap_x\": -2.7839419841766357, \"umap_y\": 1.9712077379226685, \"post_id\": 2779.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2782, \"umap_x\": -2.9187445640563965, \"umap_y\": 1.738572597503662, \"post_id\": 2782.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2785, \"umap_x\": -2.7171616554260254, \"umap_y\": 1.6121959686279297, \"post_id\": 2785.0, \"author_id\": 204.0, \"id_y\": 204.0, \"author\": \"Saft e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 2790, \"umap_x\": -0.32619428634643555, \"umap_y\": 2.094937801361084, \"post_id\": 2790.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 2794, \"umap_x\": -1.3946223258972168, \"umap_y\": 4.007792949676514, \"post_id\": 2794.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 2801, \"umap_x\": -1.4362516403198242, \"umap_y\": 3.5883843898773193, \"post_id\": 2801.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 2809, \"umap_x\": -3.015108346939087, \"umap_y\": 1.6309608221054077, \"post_id\": 2809.0, \"author_id\": 204.0, \"id_y\": 204.0, \"author\": \"Saft e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 2814, \"umap_x\": -3.8316023349761963, \"umap_y\": 4.492452621459961, \"post_id\": 2814.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2816, \"umap_x\": -2.6415719985961914, \"umap_y\": 5.642251968383789, \"post_id\": 2816.0, \"author_id\": 206.0, \"id_y\": 206.0, \"author\": \"Comrades of Milan\", \"author_group\": \"Other\"}, {\"id_x\": 2818, \"umap_x\": -4.291053295135498, \"umap_y\": 4.680968761444092, \"post_id\": 2818.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 2821, \"umap_x\": -2.8385519981384277, \"umap_y\": -1.6763391494750977, \"post_id\": 2821.0, \"author_id\": 450.0, \"id_y\": 450.0, \"author\": \"Bild\", \"author_group\": \"Other\"}, {\"id_x\": 2824, \"umap_x\": -1.369597315788269, \"umap_y\": 1.8912897109985352, \"post_id\": 2824.0, \"author_id\": 208.0, \"id_y\": 208.0, \"author\": \"M. Kynast\", \"author_group\": \"Other\"}, {\"id_x\": 2833, \"umap_x\": -3.4486777782440186, \"umap_y\": 1.3558589220046997, \"post_id\": 2833.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2836, \"umap_x\": -0.6771761178970337, \"umap_y\": 3.2442467212677, \"post_id\": 2836.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 2846, \"umap_x\": 5.615030765533447, \"umap_y\": 3.3746023178100586, \"post_id\": 2846.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2849, \"umap_x\": 0.47740092873573303, \"umap_y\": 1.9851516485214233, \"post_id\": 2849.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 2851, \"umap_x\": -1.2301101684570312, \"umap_y\": 4.470553874969482, \"post_id\": 2851.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 2854, \"umap_x\": -0.2697601914405823, \"umap_y\": 2.8269240856170654, \"post_id\": 2854.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2856, \"umap_x\": -2.037121295928955, \"umap_y\": 4.307696342468262, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 2858, \"umap_x\": 0.9910312294960022, \"umap_y\": -0.790501058101654, \"post_id\": 2858.0, \"author_id\": 209.0, \"id_y\": 209.0, \"author\": \"Gilles Dauv\\u00e9\", \"author_group\": \"Other\"}, {\"id_x\": 2868, \"umap_x\": -2.8925206661224365, \"umap_y\": 0.9410342574119568, \"post_id\": 2868.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2871, \"umap_x\": -0.021088186651468277, \"umap_y\": 3.917170286178589, \"post_id\": 2871.0, \"author_id\": 210.0, \"id_y\": 210.0, \"author\": \"Rote Hilfe Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 2874, \"umap_x\": -3.067042589187622, \"umap_y\": 4.315401077270508, \"post_id\": 2874.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2877, \"umap_x\": -2.818209648132324, \"umap_y\": 1.7737458944320679, \"post_id\": 2877.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 2889, \"umap_x\": -1.7800872325897217, \"umap_y\": 0.6574949026107788, \"post_id\": 2889.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2894, \"umap_x\": -2.2160613536834717, \"umap_y\": 1.6367874145507812, \"post_id\": 2894.0, \"author_id\": 211.0, \"id_y\": 211.0, \"author\": \"inventati.org\", \"author_group\": \"Other\"}, {\"id_x\": 2897, \"umap_x\": -0.1933930367231369, \"umap_y\": 3.4644594192504883, \"post_id\": 2897.0, \"author_id\": 212.0, \"id_y\": 212.0, \"author\": \"Giannis Michailidis\", \"author_group\": \"Other\"}, {\"id_x\": 2907, \"umap_x\": 0.11877227574586868, \"umap_y\": 3.009979724884033, \"post_id\": 2907.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2912, \"umap_x\": -2.539644718170166, \"umap_y\": 0.618156909942627, \"post_id\": 2912.0, \"author_id\": 213.0, \"id_y\": 213.0, \"author\": \"Katharina Jacob\", \"author_group\": \"Other\"}, {\"id_x\": 2912, \"umap_x\": -2.539644718170166, \"umap_y\": 0.618156909942627, \"post_id\": 2912.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 2917, \"umap_x\": 0.18065327405929565, \"umap_y\": 3.9115726947784424, \"post_id\": 2917.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2922, \"umap_x\": -0.02711397409439087, \"umap_y\": 2.060166597366333, \"post_id\": 2922.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2925, \"umap_x\": -0.538338303565979, \"umap_y\": 1.7659162282943726, \"post_id\": 2925.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 2925, \"umap_x\": -0.538338303565979, \"umap_y\": 1.7659162282943726, \"post_id\": 2925.0, \"author_id\": 215.0, \"id_y\": 215.0, \"author\": \"MDR AKTUELL\", \"author_group\": \"Other\"}, {\"id_x\": 2927, \"umap_x\": -0.7747355699539185, \"umap_y\": 1.5816248655319214, \"post_id\": 2927.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 2935, \"umap_x\": -2.716278553009033, \"umap_y\": 5.625727653503418, \"post_id\": 2935.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 2943, \"umap_x\": -0.15118741989135742, \"umap_y\": 3.851735830307007, \"post_id\": 2943.0, \"author_id\": 211.0, \"id_y\": 211.0, \"author\": \"inventati.org\", \"author_group\": \"Other\"}, {\"id_x\": 2948, \"umap_x\": -3.1858599185943604, \"umap_y\": 2.717869758605957, \"post_id\": 2948.0, \"author_id\": 216.0, \"id_y\": 216.0, \"author\": \"Solidaritaetsversammlung\", \"author_group\": \"Other\"}, {\"id_x\": 2948, \"umap_x\": -3.1858599185943604, \"umap_y\": 2.717869758605957, \"post_id\": 2948.0, \"author_id\": 212.0, \"id_y\": 212.0, \"author\": \"Giannis Michailidis\", \"author_group\": \"Other\"}, {\"id_x\": 2960, \"umap_x\": -1.8443315029144287, \"umap_y\": 2.904477834701538, \"post_id\": 2960.0, \"author_id\": 217.0, \"id_y\": 217.0, \"author\": \"Von Antonie Rietzschel\", \"author_group\": \"Other\"}, {\"id_x\": 2964, \"umap_x\": -0.5628907680511475, \"umap_y\": 4.9052324295043945, \"post_id\": 2964.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 2972, \"umap_x\": 0.21429181098937988, \"umap_y\": 0.2847317159175873, \"post_id\": 2972.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 2972, \"umap_x\": 0.21429181098937988, \"umap_y\": 0.2847317159175873, \"post_id\": 2972.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 2974, \"umap_x\": -3.0073962211608887, \"umap_y\": 0.27306312322616577, \"post_id\": 2974.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 2976, \"umap_x\": -1.365984559059143, \"umap_y\": 4.3861918449401855, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 2979, \"umap_x\": -1.3987897634506226, \"umap_y\": 1.5700135231018066, \"post_id\": 2979.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 2991, \"umap_x\": -2.171499490737915, \"umap_y\": 1.9709707498550415, \"post_id\": 2991.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 2999, \"umap_x\": -1.4327445030212402, \"umap_y\": 2.224825859069824, \"post_id\": 2999.0, \"author_id\": 220.0, \"id_y\": 220.0, \"author\": \"Gr\\u00fcne Jugend Forst\", \"author_group\": \"Other\"}, {\"id_x\": 3003, \"umap_x\": -1.4953175783157349, \"umap_y\": 1.967039704322815, \"post_id\": 3003.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3003, \"umap_x\": -1.4953175783157349, \"umap_y\": 1.967039704322815, \"post_id\": 3003.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3005, \"umap_x\": -2.198078155517578, \"umap_y\": 4.409033298492432, \"post_id\": 3005.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 3013, \"umap_x\": -1.1218743324279785, \"umap_y\": 2.0195658206939697, \"post_id\": 3013.0, \"author_id\": 221.0, \"id_y\": 221.0, \"author\": \"Netzpolitik.org\", \"author_group\": \"Other\"}, {\"id_x\": 3017, \"umap_x\": -0.5221816897392273, \"umap_y\": -0.10858262330293655, \"post_id\": 3017.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3017, \"umap_x\": -0.5221816897392273, \"umap_y\": -0.10858262330293655, \"post_id\": 3017.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3019, \"umap_x\": -1.880615234375, \"umap_y\": 1.4429771900177002, \"post_id\": 3019.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3019, \"umap_x\": -1.880615234375, \"umap_y\": 1.4429771900177002, \"post_id\": 3019.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3021, \"umap_x\": 0.18058156967163086, \"umap_y\": 1.0906076431274414, \"post_id\": 3021.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 3021, \"umap_x\": 0.18058156967163086, \"umap_y\": 1.0906076431274414, \"post_id\": 3021.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3023, \"umap_x\": -1.5897530317306519, \"umap_y\": 3.5621955394744873, \"post_id\": 3023.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3031, \"umap_x\": 0.09312105178833008, \"umap_y\": 3.939746379852295, \"post_id\": 3031.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3033, \"umap_x\": -2.517082691192627, \"umap_y\": -0.3670065701007843, \"post_id\": 3033.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 3037, \"umap_x\": 0.8491635918617249, \"umap_y\": 0.6935691237449646, \"post_id\": 3037.0, \"author_id\": 190.0, \"id_y\": 190.0, \"author\": \"RND\", \"author_group\": \"Other\"}, {\"id_x\": 3037, \"umap_x\": 0.8491635918617249, \"umap_y\": 0.6935691237449646, \"post_id\": 3037.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 3040, \"umap_x\": -0.4194999635219574, \"umap_y\": 1.9600768089294434, \"post_id\": 3040.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 3040, \"umap_x\": -0.4194999635219574, \"umap_y\": 1.9600768089294434, \"post_id\": 3040.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3042, \"umap_x\": -0.21792107820510864, \"umap_y\": 0.2397196888923645, \"post_id\": 3042.0, \"author_id\": 223.0, \"id_y\": 223.0, \"author\": \"ATAT\", \"author_group\": \"Other\"}, {\"id_x\": 3075, \"umap_x\": -0.7099087238311768, \"umap_y\": 3.6091463565826416, \"post_id\": 3075.0, \"author_id\": 224.0, \"id_y\": 224.0, \"author\": \"Anonyme Aktion Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3078, \"umap_x\": -2.198223114013672, \"umap_y\": 4.042195796966553, \"post_id\": 3078.0, \"author_id\": 153.0, \"id_y\": 153.0, \"author\": \"Solidarit\\u00e4tsnetzwerk Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3087, \"umap_x\": -1.650057315826416, \"umap_y\": 1.737294316291809, \"post_id\": 3087.0, \"author_id\": 46.0, \"id_y\": 46.0, \"author\": \"Copwatch Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3087, \"umap_x\": -1.650057315826416, \"umap_y\": 1.737294316291809, \"post_id\": 3087.0, \"author_id\": 225.0, \"id_y\": 225.0, \"author\": \"Aktion Antifa Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3091, \"umap_x\": -2.217353582382202, \"umap_y\": 2.460371494293213, \"post_id\": 3091.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 3094, \"umap_x\": 1.3671356439590454, \"umap_y\": -0.03574911132454872, \"post_id\": 3094.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 3094, \"umap_x\": 1.3671356439590454, \"umap_y\": -0.03574911132454872, \"post_id\": 3094.0, \"author_id\": 226.0, \"id_y\": 226.0, \"author\": \"Hannah Suppa\", \"author_group\": \"Other\"}, {\"id_x\": 3094, \"umap_x\": 1.3671356439590454, \"umap_y\": -0.03574911132454872, \"post_id\": 3094.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3102, \"umap_x\": -0.23192299902439117, \"umap_y\": 2.462890386581421, \"post_id\": 3102.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 3104, \"umap_x\": -0.37002578377723694, \"umap_y\": 1.4287970066070557, \"post_id\": 3104.0, \"author_id\": 96.0, \"id_y\": 96.0, \"author\": \"Jonas Mueller-T\\u00f6we\", \"author_group\": \"Other\"}, {\"id_x\": 3109, \"umap_x\": -2.6517043113708496, \"umap_y\": -1.3542345762252808, \"post_id\": 3109.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3112, \"umap_x\": -2.549865245819092, \"umap_y\": 0.9758399724960327, \"post_id\": 3112.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3115, \"umap_x\": -1.36402428150177, \"umap_y\": -0.39064347743988037, \"post_id\": 3115.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 3117, \"umap_x\": -1.499915361404419, \"umap_y\": 0.9874916076660156, \"post_id\": 3117.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 3117, \"umap_x\": -1.499915361404419, \"umap_y\": 0.9874916076660156, \"post_id\": 3117.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3119, \"umap_x\": -1.285881757736206, \"umap_y\": 1.98041832447052, \"post_id\": 3119.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 3119, \"umap_x\": -1.285881757736206, \"umap_y\": 1.98041832447052, \"post_id\": 3119.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3121, \"umap_x\": -0.9997459053993225, \"umap_y\": 1.6475859880447388, \"post_id\": 3121.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 3121, \"umap_x\": -0.9997459053993225, \"umap_y\": 1.6475859880447388, \"post_id\": 3121.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3125, \"umap_x\": 0.691605269908905, \"umap_y\": -0.14343315362930298, \"post_id\": 3125.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3127, \"umap_x\": 0.44097498059272766, \"umap_y\": 1.3961739540100098, \"post_id\": 3127.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 3127, \"umap_x\": 0.44097498059272766, \"umap_y\": 1.3961739540100098, \"post_id\": 3127.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3131, \"umap_x\": -2.173482656478882, \"umap_y\": 2.726547956466675, \"post_id\": 3131.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 3131, \"umap_x\": -2.173482656478882, \"umap_y\": 2.726547956466675, \"post_id\": 3131.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3133, \"umap_x\": 0.7652137279510498, \"umap_y\": 0.7282199859619141, \"post_id\": 3133.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 3133, \"umap_x\": 0.7652137279510498, \"umap_y\": 0.7282199859619141, \"post_id\": 3133.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3135, \"umap_x\": 0.7534658312797546, \"umap_y\": -0.6229241490364075, \"post_id\": 3135.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3137, \"umap_x\": 1.030353307723999, \"umap_y\": 0.3980068564414978, \"post_id\": 3137.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3139, \"umap_x\": 0.6099087595939636, \"umap_y\": 0.4723348915576935, \"post_id\": 3139.0, \"author_id\": 147.0, \"id_y\": 147.0, \"author\": \"Gunnar Saft\", \"author_group\": \"Other\"}, {\"id_x\": 3139, \"umap_x\": 0.6099087595939636, \"umap_y\": 0.4723348915576935, \"post_id\": 3139.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3141, \"umap_x\": -3.1112685203552246, \"umap_y\": 0.7924705743789673, \"post_id\": 3141.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3187, \"umap_x\": -0.3260301351547241, \"umap_y\": 2.8878703117370605, \"post_id\": 3187.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 3191, \"umap_x\": -0.715161919593811, \"umap_y\": 1.985542893409729, \"post_id\": 3191.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3197, \"umap_x\": -3.2038304805755615, \"umap_y\": 1.5652629137039185, \"post_id\": 3197.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 3200, \"umap_x\": -2.2779505252838135, \"umap_y\": 0.001806992688216269, \"post_id\": 3200.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3200, \"umap_x\": -2.2779505252838135, \"umap_y\": 0.001806992688216269, \"post_id\": 3200.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3202, \"umap_x\": -2.1844606399536133, \"umap_y\": 4.433816909790039, \"post_id\": 3202.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3204, \"umap_x\": -0.4210065007209778, \"umap_y\": 3.5969274044036865, \"post_id\": 3204.0, \"author_id\": 230.0, \"id_y\": 230.0, \"author\": \"Internationale Jugend Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3215, \"umap_x\": 0.44334352016448975, \"umap_y\": 1.6663789749145508, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 3218, \"umap_x\": -1.0206470489501953, \"umap_y\": 2.524545669555664, \"post_id\": 3218.0, \"author_id\": 231.0, \"id_y\": 231.0, \"author\": \"radikal.news\", \"author_group\": \"Other\"}, {\"id_x\": 3224, \"umap_x\": -0.7089223265647888, \"umap_y\": -0.23663809895515442, \"post_id\": 3224.0, \"author_id\": 232.0, \"id_y\": 232.0, \"author\": \"Ivan Tuw\", \"author_group\": \"Other\"}, {\"id_x\": 3226, \"umap_x\": -2.6275155544281006, \"umap_y\": 5.58643102645874, \"post_id\": 3226.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3239, \"umap_x\": -2.7063868045806885, \"umap_y\": -1.6602057218551636, \"post_id\": 3239.0, \"author_id\": 233.0, \"id_y\": 233.0, \"author\": \"Matthias Roth\", \"author_group\": \"Other\"}, {\"id_x\": 3239, \"umap_x\": -2.7063868045806885, \"umap_y\": -1.6602057218551636, \"post_id\": 3239.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3247, \"umap_x\": -2.7992305755615234, \"umap_y\": -1.5927542448043823, \"post_id\": 3247.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 3250, \"umap_x\": -0.2827020287513733, \"umap_y\": 2.8872315883636475, \"post_id\": 3250.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3252, \"umap_x\": -0.8458176851272583, \"umap_y\": 5.271566390991211, \"post_id\": 3252.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 3255, \"umap_x\": 0.15622089803218842, \"umap_y\": 4.001944541931152, \"post_id\": 3255.0, \"author_id\": 234.0, \"id_y\": 234.0, \"author\": \"Bilke Schnibbe\", \"author_group\": \"Other\"}, {\"id_x\": 3259, \"umap_x\": -1.712525486946106, \"umap_y\": 2.223531723022461, \"post_id\": 3259.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3259, \"umap_x\": -1.712525486946106, \"umap_y\": 2.223531723022461, \"post_id\": 3259.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3265, \"umap_x\": -0.5443633794784546, \"umap_y\": 0.9835749864578247, \"post_id\": 3265.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3268, \"umap_x\": -3.0034520626068115, \"umap_y\": -0.6604054570198059, \"post_id\": 3268.0, \"author_id\": 235.0, \"id_y\": 235.0, \"author\": \"Leipziger Verkehrsbetriebe\", \"author_group\": \"Other\"}, {\"id_x\": 3272, \"umap_x\": -1.7755653858184814, \"umap_y\": 4.174524784088135, \"post_id\": 3272.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 3274, \"umap_x\": -0.6188182234764099, \"umap_y\": -0.12063557654619217, \"post_id\": 3274.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 3274, \"umap_x\": -0.6188182234764099, \"umap_y\": -0.12063557654619217, \"post_id\": 3274.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3283, \"umap_x\": -1.8027448654174805, \"umap_y\": 4.2969889640808105, \"post_id\": 3283.0, \"author_id\": 12.0, \"id_y\": 12.0, \"author\": \"OAT\", \"author_group\": \"Other\"}, {\"id_x\": 3288, \"umap_x\": -1.0273696184158325, \"umap_y\": 4.1970744132995605, \"post_id\": 3288.0, \"author_id\": 237.0, \"id_y\": 237.0, \"author\": \"G.I.\", \"author_group\": \"Other\"}, {\"id_x\": 3292, \"umap_x\": -2.7108359336853027, \"umap_y\": 2.5628585815429688, \"post_id\": 3292.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 3294, \"umap_x\": -1.9463465213775635, \"umap_y\": 0.817162275314331, \"post_id\": 3294.0, \"author_id\": 238.0, \"id_y\": 238.0, \"author\": \"Luwi71-Soli\", \"author_group\": \"Other\"}, {\"id_x\": 3297, \"umap_x\": -1.898646593093872, \"umap_y\": 4.135903358459473, \"post_id\": 3297.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 3300, \"umap_x\": -3.007878541946411, \"umap_y\": 1.0465357303619385, \"post_id\": 3300.0, \"author_id\": 239.0, \"id_y\": 239.0, \"author\": \"Kay W\\u00fcrker\", \"author_group\": \"Other\"}, {\"id_x\": 3303, \"umap_x\": -2.797132968902588, \"umap_y\": 0.7476236820220947, \"post_id\": 3303.0, \"author_id\": 240.0, \"id_y\": 240.0, \"author\": \"Nico Zei\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 3310, \"umap_x\": -2.3778491020202637, \"umap_y\": 1.1816610097885132, \"post_id\": 3310.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3312, \"umap_x\": 1.1058013439178467, \"umap_y\": 0.7814436554908752, \"post_id\": 3312.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 3315, \"umap_x\": -2.2956736087799072, \"umap_y\": 0.9508703947067261, \"post_id\": 3315.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3319, \"umap_x\": -2.2324068546295166, \"umap_y\": 4.484185695648193, \"post_id\": 3319.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3331, \"umap_x\": -2.3752968311309814, \"umap_y\": 3.7702553272247314, \"post_id\": 3331.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 3333, \"umap_x\": 0.9318661689758301, \"umap_y\": -0.8332047462463379, \"post_id\": 3333.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3336, \"umap_x\": -0.9508400559425354, \"umap_y\": 2.299663782119751, \"post_id\": 3336.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3343, \"umap_x\": -2.1660375595092773, \"umap_y\": 0.45431846380233765, \"post_id\": 3343.0, \"author_id\": 242.0, \"id_y\": 242.0, \"author\": \"J. NUSSBAUM\", \"author_group\": \"Other\"}, {\"id_x\": 3343, \"umap_x\": -2.1660375595092773, \"umap_y\": 0.45431846380233765, \"post_id\": 3343.0, \"author_id\": 243.0, \"id_y\": 243.0, \"author\": \"M. KYNAST\", \"author_group\": \"Other\"}, {\"id_x\": 3343, \"umap_x\": -2.1660375595092773, \"umap_y\": 0.45431846380233765, \"post_id\": 3343.0, \"author_id\": 244.0, \"id_y\": 244.0, \"author\": \"M. LANGNER\", \"author_group\": \"Other\"}, {\"id_x\": 3343, \"umap_x\": -2.1660375595092773, \"umap_y\": 0.45431846380233765, \"post_id\": 3343.0, \"author_id\": 245.0, \"id_y\": 245.0, \"author\": \"S. B\\u00dcRGER\", \"author_group\": \"Other\"}, {\"id_x\": 3351, \"umap_x\": -2.4573144912719727, \"umap_y\": 2.1897189617156982, \"post_id\": 3351.0, \"author_id\": 73.0, \"id_y\": 73.0, \"author\": \"Frank Hommel\", \"author_group\": \"Other\"}, {\"id_x\": 3351, \"umap_x\": -2.4573144912719727, \"umap_y\": 2.1897189617156982, \"post_id\": 3351.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3353, \"umap_x\": 0.19384650886058807, \"umap_y\": -0.7218458652496338, \"post_id\": 3353.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 3353, \"umap_x\": 0.19384650886058807, \"umap_y\": -0.7218458652496338, \"post_id\": 3353.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3355, \"umap_x\": 0.7907823920249939, \"umap_y\": -0.20581333339214325, \"post_id\": 3355.0, \"author_id\": 246.0, \"id_y\": 246.0, \"author\": \"Ingolf Rosendahl\", \"author_group\": \"Other\"}, {\"id_x\": 3355, \"umap_x\": 0.7907823920249939, \"umap_y\": -0.20581333339214325, \"post_id\": 3355.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3357, \"umap_x\": -1.761591911315918, \"umap_y\": 2.183685302734375, \"post_id\": 3357.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3363, \"umap_x\": 0.4771427810192108, \"umap_y\": 2.074930429458618, \"post_id\": 3363.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 3363, \"umap_x\": 0.4771427810192108, \"umap_y\": 2.074930429458618, \"post_id\": 3363.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3365, \"umap_x\": -2.950774669647217, \"umap_y\": -1.0844401121139526, \"post_id\": 3365.0, \"author_id\": 248.0, \"id_y\": 248.0, \"author\": \"schwi\", \"author_group\": \"Other\"}, {\"id_x\": 3367, \"umap_x\": 0.21307532489299774, \"umap_y\": 3.586055040359497, \"post_id\": 3367.0, \"author_id\": 249.0, \"id_y\": 249.0, \"author\": \"Antirepressionsplattform Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 3371, \"umap_x\": -2.106473207473755, \"umap_y\": 0.668817400932312, \"post_id\": 3371.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 3373, \"umap_x\": -0.9559726715087891, \"umap_y\": 6.285778999328613, \"post_id\": 3373.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3379, \"umap_x\": -3.9960763454437256, \"umap_y\": -0.5100501775741577, \"post_id\": 3379.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 3383, \"umap_x\": -2.652996063232422, \"umap_y\": 1.8951328992843628, \"post_id\": 3383.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 3383, \"umap_x\": -2.652996063232422, \"umap_y\": 1.8951328992843628, \"post_id\": 3383.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3385, \"umap_x\": -1.7980695962905884, \"umap_y\": 3.984271287918091, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 3387, \"umap_x\": -1.191310167312622, \"umap_y\": -1.5095607042312622, \"post_id\": 3387.0, \"author_id\": 252.0, \"id_y\": 252.0, \"author\": \"Andre Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 3387, \"umap_x\": -1.191310167312622, \"umap_y\": -1.5095607042312622, \"post_id\": 3387.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3389, \"umap_x\": -3.73584246635437, \"umap_y\": 2.5571417808532715, \"post_id\": 3389.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 3393, \"umap_x\": -0.9633098244667053, \"umap_y\": 6.2965006828308105, \"post_id\": 3393.0, \"author_id\": 253.0, \"id_y\": 253.0, \"author\": \"Soligruppe B34\", \"author_group\": \"Other\"}, {\"id_x\": 3399, \"umap_x\": -0.9674152731895447, \"umap_y\": 6.224914073944092, \"post_id\": 3399.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3408, \"umap_x\": -3.854606866836548, \"umap_y\": 1.1968268156051636, \"post_id\": 3408.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 3408, \"umap_x\": -3.854606866836548, \"umap_y\": 1.1968268156051636, \"post_id\": 3408.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3410, \"umap_x\": -0.16691972315311432, \"umap_y\": 1.4219642877578735, \"post_id\": 3410.0, \"author_id\": 194.0, \"id_y\": 194.0, \"author\": \"Ulrich Riedel\", \"author_group\": \"Other\"}, {\"id_x\": 3410, \"umap_x\": -0.16691972315311432, \"umap_y\": 1.4219642877578735, \"post_id\": 3410.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3412, \"umap_x\": -1.8943085670471191, \"umap_y\": 0.8862958550453186, \"post_id\": 3412.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 3412, \"umap_x\": -1.8943085670471191, \"umap_y\": 0.8862958550453186, \"post_id\": 3412.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3412, \"umap_x\": -1.8943085670471191, \"umap_y\": 0.8862958550453186, \"post_id\": 3412.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3414, \"umap_x\": -3.4225494861602783, \"umap_y\": 1.2918425798416138, \"post_id\": 3414.0, \"author_id\": 256.0, \"id_y\": 256.0, \"author\": \"Thomas Haegeler\", \"author_group\": \"Other\"}, {\"id_x\": 3414, \"umap_x\": -3.4225494861602783, \"umap_y\": 1.2918425798416138, \"post_id\": 3414.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3423, \"umap_x\": -1.7852003574371338, \"umap_y\": 0.8961569666862488, \"post_id\": 3423.0, \"author_id\": 257.0, \"id_y\": 257.0, \"author\": \"Josephine Heinze\", \"author_group\": \"Other\"}, {\"id_x\": 3423, \"umap_x\": -1.7852003574371338, \"umap_y\": 0.8961569666862488, \"post_id\": 3423.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 3423, \"umap_x\": -1.7852003574371338, \"umap_y\": 0.8961569666862488, \"post_id\": 3423.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3423, \"umap_x\": -1.7852003574371338, \"umap_y\": 0.8961569666862488, \"post_id\": 3423.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3425, \"umap_x\": 1.6765961647033691, \"umap_y\": 0.3026844561100006, \"post_id\": 3425.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 3425, \"umap_x\": 1.6765961647033691, \"umap_y\": 0.3026844561100006, \"post_id\": 3425.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3427, \"umap_x\": -1.2269198894500732, \"umap_y\": -1.6027045249938965, \"post_id\": 3427.0, \"author_id\": 252.0, \"id_y\": 252.0, \"author\": \"Andre Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 3427, \"umap_x\": -1.2269198894500732, \"umap_y\": -1.6027045249938965, \"post_id\": 3427.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3429, \"umap_x\": -1.4805114269256592, \"umap_y\": 4.823038578033447, \"post_id\": 3429.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 3429, \"umap_x\": -1.4805114269256592, \"umap_y\": 4.823038578033447, \"post_id\": 3429.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3431, \"umap_x\": -2.2240710258483887, \"umap_y\": -1.3122615814208984, \"post_id\": 3431.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 3431, \"umap_x\": -2.2240710258483887, \"umap_y\": -1.3122615814208984, \"post_id\": 3431.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3433, \"umap_x\": -3.0241434574127197, \"umap_y\": -1.20380437374115, \"post_id\": 3433.0, \"author_id\": 259.0, \"id_y\": 259.0, \"author\": \"Patrick Herrl\", \"author_group\": \"Other\"}, {\"id_x\": 3433, \"umap_x\": -3.0241434574127197, \"umap_y\": -1.20380437374115, \"post_id\": 3433.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3435, \"umap_x\": -1.7435989379882812, \"umap_y\": 2.8677234649658203, \"post_id\": 3435.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3438, \"umap_x\": -1.1112339496612549, \"umap_y\": 1.5070089101791382, \"post_id\": 3438.0, \"author_id\": 260.0, \"id_y\": 260.0, \"author\": \"Berliner Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 3440, \"umap_x\": -2.399674415588379, \"umap_y\": 4.443813323974609, \"post_id\": 3440.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3449, \"umap_x\": -3.233503580093384, \"umap_y\": -0.4735516607761383, \"post_id\": 3449.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 3454, \"umap_x\": -1.7683252096176147, \"umap_y\": 0.8072233200073242, \"post_id\": 3454.0, \"author_id\": 261.0, \"id_y\": 261.0, \"author\": \"Lilly G\\u00fcnthner\", \"author_group\": \"Other\"}, {\"id_x\": 3454, \"umap_x\": -1.7683252096176147, \"umap_y\": 0.8072233200073242, \"post_id\": 3454.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3456, \"umap_x\": -3.7853035926818848, \"umap_y\": 0.422741562128067, \"post_id\": 3456.0, \"author_id\": 262.0, \"id_y\": 262.0, \"author\": \"Nicole Eyberger\", \"author_group\": \"Other\"}, {\"id_x\": 3456, \"umap_x\": -3.7853035926818848, \"umap_y\": 0.422741562128067, \"post_id\": 3456.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3462, \"umap_x\": -2.0082857608795166, \"umap_y\": -0.028611520305275917, \"post_id\": 3462.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 3468, \"umap_x\": -2.9357635974884033, \"umap_y\": 0.3566036820411682, \"post_id\": 3468.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3472, \"umap_x\": -2.4725403785705566, \"umap_y\": 0.049528565257787704, \"post_id\": 3472.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 3472, \"umap_x\": -2.4725403785705566, \"umap_y\": 0.049528565257787704, \"post_id\": 3472.0, \"author_id\": 353.0, \"id_y\": 353.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 3475, \"umap_x\": -0.10661602020263672, \"umap_y\": 3.68986177444458, \"post_id\": 3475.0, \"author_id\": 265.0, \"id_y\": 265.0, \"author\": \"EA Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 3487, \"umap_x\": -1.4994032382965088, \"umap_y\": -0.9081718921661377, \"post_id\": 3487.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 3487, \"umap_x\": -1.4994032382965088, \"umap_y\": -0.9081718921661377, \"post_id\": 3487.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3489, \"umap_x\": -0.3199770748615265, \"umap_y\": 3.7154438495635986, \"post_id\": 3489.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 3491, \"umap_x\": 0.9031971096992493, \"umap_y\": 0.7855237722396851, \"post_id\": 3491.0, \"author_id\": 266.0, \"id_y\": 266.0, \"author\": \"Annett Honscha\", \"author_group\": \"Other\"}, {\"id_x\": 3491, \"umap_x\": 0.9031971096992493, \"umap_y\": 0.7855237722396851, \"post_id\": 3491.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3493, \"umap_x\": -2.958405017852783, \"umap_y\": 1.037765622138977, \"post_id\": 3493.0, \"author_id\": 267.0, \"id_y\": 267.0, \"author\": \"Verena Belzer\", \"author_group\": \"Other\"}, {\"id_x\": 3493, \"umap_x\": -2.958405017852783, \"umap_y\": 1.037765622138977, \"post_id\": 3493.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3495, \"umap_x\": -1.7084505558013916, \"umap_y\": 0.7373696565628052, \"post_id\": 3495.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3495, \"umap_x\": -1.7084505558013916, \"umap_y\": 0.7373696565628052, \"post_id\": 3495.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 3495, \"umap_x\": -1.7084505558013916, \"umap_y\": 0.7373696565628052, \"post_id\": 3495.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3497, \"umap_x\": -2.1831510066986084, \"umap_y\": -0.7768253684043884, \"post_id\": 3497.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 3497, \"umap_x\": -2.1831510066986084, \"umap_y\": -0.7768253684043884, \"post_id\": 3497.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3499, \"umap_x\": -3.0439023971557617, \"umap_y\": 0.6479835510253906, \"post_id\": 3499.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 3499, \"umap_x\": -3.0439023971557617, \"umap_y\": 0.6479835510253906, \"post_id\": 3499.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3501, \"umap_x\": -2.9300780296325684, \"umap_y\": -0.25830137729644775, \"post_id\": 3501.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 3501, \"umap_x\": -2.9300780296325684, \"umap_y\": -0.25830137729644775, \"post_id\": 3501.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3503, \"umap_x\": -0.4049697816371918, \"umap_y\": 0.6555415987968445, \"post_id\": 3503.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 3503, \"umap_x\": -0.4049697816371918, \"umap_y\": 0.6555415987968445, \"post_id\": 3503.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3505, \"umap_x\": -2.052595853805542, \"umap_y\": 0.9826439619064331, \"post_id\": 3505.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 3505, \"umap_x\": -2.052595853805542, \"umap_y\": 0.9826439619064331, \"post_id\": 3505.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3505, \"umap_x\": -2.052595853805542, \"umap_y\": 0.9826439619064331, \"post_id\": 3505.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3507, \"umap_x\": -0.789746105670929, \"umap_y\": 2.1757819652557373, \"post_id\": 3507.0, \"author_id\": 170.0, \"id_y\": 170.0, \"author\": \"Johannes P\\u00f6hlandt\", \"author_group\": \"Other\"}, {\"id_x\": 3507, \"umap_x\": -0.789746105670929, \"umap_y\": 2.1757819652557373, \"post_id\": 3507.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3509, \"umap_x\": 0.2896110415458679, \"umap_y\": 1.533820390701294, \"post_id\": 3509.0, \"author_id\": 271.0, \"id_y\": 271.0, \"author\": \"Deike Diening\", \"author_group\": \"Other\"}, {\"id_x\": 3509, \"umap_x\": 0.2896110415458679, \"umap_y\": 1.533820390701294, \"post_id\": 3509.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3511, \"umap_x\": -1.1672840118408203, \"umap_y\": 1.3384560346603394, \"post_id\": 3511.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 3513, \"umap_x\": 0.2946111559867859, \"umap_y\": 2.7269935607910156, \"post_id\": 3513.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 3520, \"umap_x\": -2.9106223583221436, \"umap_y\": 0.3192548453807831, \"post_id\": 3520.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 3520, \"umap_x\": -2.9106223583221436, \"umap_y\": 0.3192548453807831, \"post_id\": 3520.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3524, \"umap_x\": 0.6220526099205017, \"umap_y\": -0.5038314461708069, \"post_id\": 3524.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 3524, \"umap_x\": 0.6220526099205017, \"umap_y\": -0.5038314461708069, \"post_id\": 3524.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3528, \"umap_x\": -1.3360155820846558, \"umap_y\": 2.3293910026550293, \"post_id\": 3528.0, \"author_id\": 272.0, \"id_y\": 272.0, \"author\": \"Andreas Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 3528, \"umap_x\": -1.3360155820846558, \"umap_y\": 2.3293910026550293, \"post_id\": 3528.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 3532, \"umap_x\": -1.2983644008636475, \"umap_y\": 1.8662298917770386, \"post_id\": 3532.0, \"author_id\": 274.0, \"id_y\": 274.0, \"author\": \"Wiebke Ramm\", \"author_group\": \"Other\"}, {\"id_x\": 3532, \"umap_x\": -1.2983644008636475, \"umap_y\": 1.8662298917770386, \"post_id\": 3532.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 3534, \"umap_x\": -2.3890860080718994, \"umap_y\": 0.11521933972835541, \"post_id\": 3534.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3540, \"umap_x\": -0.5706470012664795, \"umap_y\": 1.9285264015197754, \"post_id\": 3540.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3540, \"umap_x\": -0.5706470012664795, \"umap_y\": 1.9285264015197754, \"post_id\": 3540.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3540, \"umap_x\": -0.5706470012664795, \"umap_y\": 1.9285264015197754, \"post_id\": 3540.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3553, \"umap_x\": -1.275016188621521, \"umap_y\": 2.920912265777588, \"post_id\": 3553.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 3560, \"umap_x\": -2.951313018798828, \"umap_y\": 0.8384499549865723, \"post_id\": 3560.0, \"author_id\": 275.0, \"id_y\": 275.0, \"author\": \"Steffi Robak\", \"author_group\": \"Other\"}, {\"id_x\": 3560, \"umap_x\": -2.951313018798828, \"umap_y\": 0.8384499549865723, \"post_id\": 3560.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3562, \"umap_x\": -3.0709288120269775, \"umap_y\": 4.288615703582764, \"post_id\": 3562.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3562, \"umap_x\": -3.0709288120269775, \"umap_y\": 4.288615703582764, \"post_id\": 3562.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3566, \"umap_x\": -3.27018141746521, \"umap_y\": 1.3119920492172241, \"post_id\": 3566.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3574, \"umap_x\": -0.6705259680747986, \"umap_y\": -0.40101858973503113, \"post_id\": 3574.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 3576, \"umap_x\": -1.1345645189285278, \"umap_y\": 0.3382384181022644, \"post_id\": 3576.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 3584, \"umap_x\": -2.938969135284424, \"umap_y\": 1.354325532913208, \"post_id\": 3584.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 3587, \"umap_x\": 0.24952247738838196, \"umap_y\": 2.86511492729187, \"post_id\": 3587.0, \"author_id\": 193.0, \"id_y\": 193.0, \"author\": \"soli-antifa-ost.org\", \"author_group\": \"Other\"}, {\"id_x\": 3589, \"umap_x\": -0.7321880459785461, \"umap_y\": 4.8180718421936035, \"post_id\": 3589.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3591, \"umap_x\": -1.8941280841827393, \"umap_y\": -0.44774454832077026, \"post_id\": 3591.0, \"author_id\": 276.0, \"id_y\": 276.0, \"author\": \"Unfreiwillige Feuerwehr\", \"author_group\": \"Other\"}, {\"id_x\": 3601, \"umap_x\": -0.8021802306175232, \"umap_y\": -1.4932819604873657, \"post_id\": 3601.0, \"author_id\": 277.0, \"id_y\": 277.0, \"author\": \"Luisa Schwebel\", \"author_group\": \"Other\"}, {\"id_x\": 3601, \"umap_x\": -0.8021802306175232, \"umap_y\": -1.4932819604873657, \"post_id\": 3601.0, \"author_id\": 278.0, \"id_y\": 278.0, \"author\": \"Stern\", \"author_group\": \"Other\"}, {\"id_x\": 3603, \"umap_x\": -0.8275183439254761, \"umap_y\": -1.4624431133270264, \"post_id\": 3603.0, \"author_id\": 279.0, \"id_y\": 279.0, \"author\": \"Focus\", \"author_group\": \"Other\"}, {\"id_x\": 3608, \"umap_x\": 0.03808578848838806, \"umap_y\": 3.610072374343872, \"post_id\": 3608.0, \"author_id\": 42.0, \"id_y\": 42.0, \"author\": \"Michael Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 3611, \"umap_x\": -2.9796435832977295, \"umap_y\": 1.9940803050994873, \"post_id\": 3611.0, \"author_id\": 42.0, \"id_y\": 42.0, \"author\": \"Michael Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 3614, \"umap_x\": -0.5299001932144165, \"umap_y\": 3.0063023567199707, \"post_id\": 3614.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3616, \"umap_x\": -2.442221164703369, \"umap_y\": -0.17764239013195038, \"post_id\": 3616.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 3618, \"umap_x\": 1.1949795484542847, \"umap_y\": -0.43426042795181274, \"post_id\": 3618.0, \"author_id\": 71.0, \"id_y\": 71.0, \"author\": \"Nancy Dietrich\", \"author_group\": \"Other\"}, {\"id_x\": 3618, \"umap_x\": 1.1949795484542847, \"umap_y\": -0.43426042795181274, \"post_id\": 3618.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3620, \"umap_x\": -4.43131160736084, \"umap_y\": 4.231911659240723, \"post_id\": 3620.0, \"author_id\": 280.0, \"id_y\": 280.0, \"author\": \"ANDR\\u00c9 SCHMIDT\", \"author_group\": \"Other\"}, {\"id_x\": 3651, \"umap_x\": -1.801256775856018, \"umap_y\": 4.054515361785889, \"post_id\": 3651.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3654, \"umap_x\": -2.8673510551452637, \"umap_y\": 1.593324899673462, \"post_id\": 3654.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 3664, \"umap_x\": -2.6179656982421875, \"umap_y\": 1.5845433473587036, \"post_id\": 3664.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 3667, \"umap_x\": -1.168968677520752, \"umap_y\": 3.829057455062866, \"post_id\": 3667.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 3673, \"umap_x\": -2.783095598220825, \"umap_y\": 4.573641777038574, \"post_id\": 3673.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3680, \"umap_x\": -0.5909839272499084, \"umap_y\": -0.8721491694450378, \"post_id\": 3680.0, \"author_id\": 281.0, \"id_y\": 281.0, \"author\": \"MDR Th\\u00fcringenn\", \"author_group\": \"Other\"}, {\"id_x\": 3682, \"umap_x\": -3.5018372535705566, \"umap_y\": 2.610100746154785, \"post_id\": 3682.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 3687, \"umap_x\": -1.9193332195281982, \"umap_y\": -0.9129045605659485, \"post_id\": 3687.0, \"author_id\": 282.0, \"id_y\": 282.0, \"author\": \"Mathias Orbeck\", \"author_group\": \"Other\"}, {\"id_x\": 3687, \"umap_x\": -1.9193332195281982, \"umap_y\": -0.9129045605659485, \"post_id\": 3687.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3689, \"umap_x\": -2.9034082889556885, \"umap_y\": 0.03904535248875618, \"post_id\": 3689.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 3689, \"umap_x\": -2.9034082889556885, \"umap_y\": 0.03904535248875618, \"post_id\": 3689.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3691, \"umap_x\": 0.047058433294296265, \"umap_y\": 2.151306629180908, \"post_id\": 3691.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3693, \"umap_x\": -2.605184555053711, \"umap_y\": -1.2714906930923462, \"post_id\": 3693.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 3693, \"umap_x\": -2.605184555053711, \"umap_y\": -1.2714906930923462, \"post_id\": 3693.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3696, \"umap_x\": 1.008379340171814, \"umap_y\": 0.5976117253303528, \"post_id\": 3696.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3696, \"umap_x\": 1.008379340171814, \"umap_y\": 0.5976117253303528, \"post_id\": 3696.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3698, \"umap_x\": 0.09548810124397278, \"umap_y\": 4.689208984375, \"post_id\": 3698.0, \"author_id\": 285.0, \"id_y\": 285.0, \"author\": \"Klaas Mokgomole\", \"author_group\": \"Other\"}, {\"id_x\": 3700, \"umap_x\": -1.3901920318603516, \"umap_y\": 2.790804862976074, \"post_id\": 3700.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3702, \"umap_x\": -0.40071797370910645, \"umap_y\": 1.838777780532837, \"post_id\": 3702.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 3706, \"umap_x\": -2.009212017059326, \"umap_y\": 1.5843548774719238, \"post_id\": 3706.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 3706, \"umap_x\": -2.009212017059326, \"umap_y\": 1.5843548774719238, \"post_id\": 3706.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3728, \"umap_x\": 0.37812840938568115, \"umap_y\": 3.731632947921753, \"post_id\": 3728.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 3731, \"umap_x\": 1.2605422735214233, \"umap_y\": -0.14492616057395935, \"post_id\": 3731.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3731, \"umap_x\": 1.2605422735214233, \"umap_y\": -0.14492616057395935, \"post_id\": 3731.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3733, \"umap_x\": 0.426317036151886, \"umap_y\": 0.23083780705928802, \"post_id\": 3733.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3735, \"umap_x\": -0.7426449060440063, \"umap_y\": 1.6581236124038696, \"post_id\": 3735.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3735, \"umap_x\": -0.7426449060440063, \"umap_y\": 1.6581236124038696, \"post_id\": 3735.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3739, \"umap_x\": -2.0110607147216797, \"umap_y\": -0.8350973129272461, \"post_id\": 3739.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 3739, \"umap_x\": -2.0110607147216797, \"umap_y\": -0.8350973129272461, \"post_id\": 3739.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3741, \"umap_x\": -3.792724847793579, \"umap_y\": 2.3906338214874268, \"post_id\": 3741.0, \"author_id\": 252.0, \"id_y\": 252.0, \"author\": \"Andre Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 3741, \"umap_x\": -3.792724847793579, \"umap_y\": 2.3906338214874268, \"post_id\": 3741.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3749, \"umap_x\": -2.8871963024139404, \"umap_y\": 2.5825321674346924, \"post_id\": 3749.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 3749, \"umap_x\": -2.8871963024139404, \"umap_y\": 2.5825321674346924, \"post_id\": 3749.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3753, \"umap_x\": -3.0519847869873047, \"umap_y\": 1.6781924962997437, \"post_id\": 3753.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 3753, \"umap_x\": -3.0519847869873047, \"umap_y\": 1.6781924962997437, \"post_id\": 3753.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3757, \"umap_x\": -3.0390779972076416, \"umap_y\": 4.323764801025391, \"post_id\": 3757.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 3757, \"umap_x\": -3.0390779972076416, \"umap_y\": 4.323764801025391, \"post_id\": 3757.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 3759, \"umap_x\": -0.7628540396690369, \"umap_y\": 0.21674281358718872, \"post_id\": 3759.0, \"author_id\": 288.0, \"id_y\": 288.0, \"author\": \"Julian Feldmann\", \"author_group\": \"Other\"}, {\"id_x\": 3759, \"umap_x\": -0.7628540396690369, \"umap_y\": 0.21674281358718872, \"post_id\": 3759.0, \"author_id\": 289.0, \"id_y\": 289.0, \"author\": \"Sebastian Heidelberger\", \"author_group\": \"Other\"}, {\"id_x\": 3759, \"umap_x\": -0.7628540396690369, \"umap_y\": 0.21674281358718872, \"post_id\": 3759.0, \"author_id\": 290.0, \"id_y\": 290.0, \"author\": \"Timo Robben\", \"author_group\": \"Other\"}, {\"id_x\": 3759, \"umap_x\": -0.7628540396690369, \"umap_y\": 0.21674281358718872, \"post_id\": 3759.0, \"author_id\": 291.0, \"id_y\": 291.0, \"author\": \"NDR\", \"author_group\": \"Other\"}, {\"id_x\": 3761, \"umap_x\": -3.0552690029144287, \"umap_y\": 1.8404021263122559, \"post_id\": 3761.0, \"author_id\": 108.0, \"id_y\": 108.0, \"author\": \"Michael Stellner\", \"author_group\": \"Other\"}, {\"id_x\": 3761, \"umap_x\": -3.0552690029144287, \"umap_y\": 1.8404021263122559, \"post_id\": 3761.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3763, \"umap_x\": -1.5980838537216187, \"umap_y\": -0.6119228601455688, \"post_id\": 3763.0, \"author_id\": 292.0, \"id_y\": 292.0, \"author\": \"Uwe Bl\\u00fcmel\", \"author_group\": \"Other\"}, {\"id_x\": 3763, \"umap_x\": -1.5980838537216187, \"umap_y\": -0.6119228601455688, \"post_id\": 3763.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 3765, \"umap_x\": -2.3596246242523193, \"umap_y\": 1.9369548559188843, \"post_id\": 3765.0, \"author_id\": 294.0, \"id_y\": 294.0, \"author\": \"MOPO\", \"author_group\": \"Other\"}, {\"id_x\": 3776, \"umap_x\": -2.7559051513671875, \"umap_y\": -1.6811562776565552, \"post_id\": 3776.0, \"author_id\": 208.0, \"id_y\": 208.0, \"author\": \"M. Kynast\", \"author_group\": \"Other\"}, {\"id_x\": 3780, \"umap_x\": -3.854750871658325, \"umap_y\": -0.41766658425331116, \"post_id\": 3780.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 3780, \"umap_x\": -3.854750871658325, \"umap_y\": -0.41766658425331116, \"post_id\": 3780.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3783, \"umap_x\": -2.641387939453125, \"umap_y\": -1.5342415571212769, \"post_id\": 3783.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3790, \"umap_x\": -0.7984812259674072, \"umap_y\": -0.38799038529396057, \"post_id\": 3790.0, \"author_id\": 296.0, \"id_y\": 296.0, \"author\": \"Ekkehard Schulreich\", \"author_group\": \"Other\"}, {\"id_x\": 3792, \"umap_x\": -1.228442668914795, \"umap_y\": 0.8931266069412231, \"post_id\": 3792.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3795, \"umap_x\": -1.5631664991378784, \"umap_y\": -0.09735623747110367, \"post_id\": 3795.0, \"author_id\": 282.0, \"id_y\": 282.0, \"author\": \"Mathias Orbeck\", \"author_group\": \"Other\"}, {\"id_x\": 3795, \"umap_x\": -1.5631664991378784, \"umap_y\": -0.09735623747110367, \"post_id\": 3795.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3797, \"umap_x\": -3.124187469482422, \"umap_y\": 1.754821538925171, \"post_id\": 3797.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 3797, \"umap_x\": -3.124187469482422, \"umap_y\": 1.754821538925171, \"post_id\": 3797.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3799, \"umap_x\": 0.23327352106571198, \"umap_y\": 2.5971882343292236, \"post_id\": 3799.0, \"author_id\": 193.0, \"id_y\": 193.0, \"author\": \"soli-antifa-ost.org\", \"author_group\": \"Other\"}, {\"id_x\": 3802, \"umap_x\": 0.6250754594802856, \"umap_y\": 0.9703957438468933, \"post_id\": 3802.0, \"author_id\": 297.0, \"id_y\": 297.0, \"author\": \"J\\u00fcrgen Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 3802, \"umap_x\": 0.6250754594802856, \"umap_y\": 0.9703957438468933, \"post_id\": 3802.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3804, \"umap_x\": -2.4376468658447266, \"umap_y\": 1.0064400434494019, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 3807, \"umap_x\": -0.8369917273521423, \"umap_y\": 3.429501533508301, \"post_id\": 3807.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3809, \"umap_x\": -1.0778732299804688, \"umap_y\": 2.9609534740448, \"post_id\": 3809.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 3812, \"umap_x\": -1.2443870306015015, \"umap_y\": 1.553843379020691, \"post_id\": 3812.0, \"author_id\": 298.0, \"id_y\": 298.0, \"author\": \"Donna Crawallio\", \"author_group\": \"Other\"}, {\"id_x\": 3824, \"umap_x\": 0.2500978410243988, \"umap_y\": 3.090144157409668, \"post_id\": 3824.0, \"author_id\": 193.0, \"id_y\": 193.0, \"author\": \"soli-antifa-ost.org\", \"author_group\": \"Other\"}, {\"id_x\": 3829, \"umap_x\": -3.650283098220825, \"umap_y\": 1.7249324321746826, \"post_id\": 3829.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3829, \"umap_x\": -3.650283098220825, \"umap_y\": 1.7249324321746826, \"post_id\": 3829.0, \"author_id\": 299.0, \"id_y\": 299.0, \"author\": \"Reik Anton\", \"author_group\": \"Other\"}, {\"id_x\": 3829, \"umap_x\": -3.650283098220825, \"umap_y\": 1.7249324321746826, \"post_id\": 3829.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3833, \"umap_x\": -4.776216983795166, \"umap_y\": 4.329850196838379, \"post_id\": 3833.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 3836, \"umap_x\": -4.255967140197754, \"umap_y\": 1.2059029340744019, \"post_id\": 3836.0, \"author_id\": 275.0, \"id_y\": 275.0, \"author\": \"Steffi Robak\", \"author_group\": \"Other\"}, {\"id_x\": 3836, \"umap_x\": -4.255967140197754, \"umap_y\": 1.2059029340744019, \"post_id\": 3836.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3838, \"umap_x\": -1.9050706624984741, \"umap_y\": 2.71921443939209, \"post_id\": 3838.0, \"author_id\": 300.0, \"id_y\": 300.0, \"author\": \"Georgios Zantiotis\", \"author_group\": \"Other\"}, {\"id_x\": 3854, \"umap_x\": -0.3829207122325897, \"umap_y\": 1.8364803791046143, \"post_id\": 3854.0, \"author_id\": 274.0, \"id_y\": 274.0, \"author\": \"Wiebke Ramm\", \"author_group\": \"Other\"}, {\"id_x\": 3854, \"umap_x\": -0.3829207122325897, \"umap_y\": 1.8364803791046143, \"post_id\": 3854.0, \"author_id\": 165.0, \"id_y\": 165.0, \"author\": \"spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 3856, \"umap_x\": -1.1899563074111938, \"umap_y\": 0.48269325494766235, \"post_id\": 3856.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 3861, \"umap_x\": -0.8620685935020447, \"umap_y\": 5.1737565994262695, \"post_id\": 3861.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3873, \"umap_x\": -0.5578395128250122, \"umap_y\": 0.35275256633758545, \"post_id\": 3873.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 3873, \"umap_x\": -0.5578395128250122, \"umap_y\": 0.35275256633758545, \"post_id\": 3873.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3877, \"umap_x\": -1.8145596981048584, \"umap_y\": 0.6284309029579163, \"post_id\": 3877.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 3880, \"umap_x\": 0.6392866969108582, \"umap_y\": 3.6056339740753174, \"post_id\": 3880.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 3886, \"umap_x\": -2.2665860652923584, \"umap_y\": -1.0720562934875488, \"post_id\": 3886.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 3888, \"umap_x\": 0.8585913777351379, \"umap_y\": 0.3869641423225403, \"post_id\": 3888.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 3888, \"umap_x\": 0.8585913777351379, \"umap_y\": 0.3869641423225403, \"post_id\": 3888.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3890, \"umap_x\": -2.7235264778137207, \"umap_y\": -0.25413191318511963, \"post_id\": 3890.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3892, \"umap_x\": -2.0222668647766113, \"umap_y\": 2.0298311710357666, \"post_id\": 3892.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3894, \"umap_x\": -0.16430173814296722, \"umap_y\": 0.6329989433288574, \"post_id\": 3894.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 3894, \"umap_x\": -0.16430173814296722, \"umap_y\": 0.6329989433288574, \"post_id\": 3894.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3896, \"umap_x\": -2.8465566635131836, \"umap_y\": 2.1573545932769775, \"post_id\": 3896.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 3896, \"umap_x\": -2.8465566635131836, \"umap_y\": 2.1573545932769775, \"post_id\": 3896.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3900, \"umap_x\": 1.024015188217163, \"umap_y\": -0.7031915783882141, \"post_id\": 3900.0, \"author_id\": 302.0, \"id_y\": 302.0, \"author\": \"Konrad R\\u00fcdiger\", \"author_group\": \"Other\"}, {\"id_x\": 3900, \"umap_x\": 1.024015188217163, \"umap_y\": -0.7031915783882141, \"post_id\": 3900.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 3902, \"umap_x\": -1.0969617366790771, \"umap_y\": 5.2813496589660645, \"post_id\": 3902.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3907, \"umap_x\": 0.20657433569431305, \"umap_y\": 2.095726728439331, \"post_id\": 3907.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 3909, \"umap_x\": -1.1815719604492188, \"umap_y\": 0.5504710674285889, \"post_id\": 3909.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 3911, \"umap_x\": -2.3827481269836426, \"umap_y\": 3.7773609161376953, \"post_id\": 3911.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3913, \"umap_x\": -2.4368293285369873, \"umap_y\": 4.447761535644531, \"post_id\": 3913.0, \"author_id\": 303.0, \"id_y\": 303.0, \"author\": \"Offene anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 3930, \"umap_x\": -2.314701795578003, \"umap_y\": 4.047804355621338, \"post_id\": 3930.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3932, \"umap_x\": -2.791918992996216, \"umap_y\": 2.140178680419922, \"post_id\": 3932.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3934, \"umap_x\": 1.0969936847686768, \"umap_y\": 0.12611225247383118, \"post_id\": 3934.0, \"author_id\": 87.0, \"id_y\": 87.0, \"author\": \"Friederike Hohmann\", \"author_group\": \"Other\"}, {\"id_x\": 3934, \"umap_x\": 1.0969936847686768, \"umap_y\": 0.12611225247383118, \"post_id\": 3934.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 3942, \"umap_x\": -2.0194201469421387, \"umap_y\": 0.42258504033088684, \"post_id\": 3942.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 3948, \"umap_x\": -2.9107210636138916, \"umap_y\": -0.6706836819648743, \"post_id\": 3948.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 3952, \"umap_x\": -3.8776395320892334, \"umap_y\": 1.1797969341278076, \"post_id\": 3952.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3952, \"umap_x\": -3.8776395320892334, \"umap_y\": 1.1797969341278076, \"post_id\": 3952.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3954, \"umap_x\": -3.0596442222595215, \"umap_y\": 1.2626373767852783, \"post_id\": 3954.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3958, \"umap_x\": 1.2419437170028687, \"umap_y\": 0.11678857356309891, \"post_id\": 3958.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 3958, \"umap_x\": 1.2419437170028687, \"umap_y\": 0.11678857356309891, \"post_id\": 3958.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3960, \"umap_x\": -2.340139865875244, \"umap_y\": -1.755616307258606, \"post_id\": 3960.0, \"author_id\": 304.0, \"id_y\": 304.0, \"author\": \"J\\u00fcrgen Kasek\", \"author_group\": \"Other\"}, {\"id_x\": 3962, \"umap_x\": -2.7239153385162354, \"umap_y\": 5.298120498657227, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 3965, \"umap_x\": -1.4225940704345703, \"umap_y\": 0.940884530544281, \"post_id\": 3965.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3968, \"umap_x\": -1.1322497129440308, \"umap_y\": 3.783615827560425, \"post_id\": 3968.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 3971, \"umap_x\": -1.589966058731079, \"umap_y\": -1.0967915058135986, \"post_id\": 3971.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 3974, \"umap_x\": -3.1238622665405273, \"umap_y\": -0.09552379697561264, \"post_id\": 3974.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 3977, \"umap_x\": -2.6854469776153564, \"umap_y\": -1.4456684589385986, \"post_id\": 3977.0, \"author_id\": 450.0, \"id_y\": 450.0, \"author\": \"Bild\", \"author_group\": \"Other\"}, {\"id_x\": 3980, \"umap_x\": 1.3176974058151245, \"umap_y\": 1.766068935394287, \"post_id\": 3980.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 3993, \"umap_x\": -1.3116800785064697, \"umap_y\": -0.12569740414619446, \"post_id\": 3993.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 3999, \"umap_x\": -3.2471230030059814, \"umap_y\": 1.1130738258361816, \"post_id\": 3999.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4002, \"umap_x\": -2.8126187324523926, \"umap_y\": 3.683960437774658, \"post_id\": 4002.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4004, \"umap_x\": -2.8708438873291016, \"umap_y\": 1.6579220294952393, \"post_id\": 4004.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 4016, \"umap_x\": -1.7203013896942139, \"umap_y\": -1.187300205230713, \"post_id\": 4016.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4018, \"umap_x\": -2.6680104732513428, \"umap_y\": -1.1249561309814453, \"post_id\": 4018.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4020, \"umap_x\": -2.7294702529907227, \"umap_y\": -1.7541546821594238, \"post_id\": 4020.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4023, \"umap_x\": -4.696304798126221, \"umap_y\": 4.398349761962891, \"post_id\": 4023.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4025, \"umap_x\": -1.0518757104873657, \"umap_y\": 0.8270705342292786, \"post_id\": 4025.0, \"author_id\": 305.0, \"id_y\": 305.0, \"author\": \"Lea Heilmann\", \"author_group\": \"Other\"}, {\"id_x\": 4025, \"umap_x\": -1.0518757104873657, \"umap_y\": 0.8270705342292786, \"post_id\": 4025.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4028, \"umap_x\": -2.9623498916625977, \"umap_y\": -1.1548110246658325, \"post_id\": 4028.0, \"author_id\": 111.0, \"id_y\": 111.0, \"author\": \"TAG24\", \"author_group\": \"Other\"}, {\"id_x\": 4028, \"umap_x\": -2.9623498916625977, \"umap_y\": -1.1548110246658325, \"post_id\": 4028.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 4030, \"umap_x\": -2.676708698272705, \"umap_y\": -1.1750667095184326, \"post_id\": 4030.0, \"author_id\": 111.0, \"id_y\": 111.0, \"author\": \"TAG24\", \"author_group\": \"Other\"}, {\"id_x\": 4030, \"umap_x\": -2.676708698272705, \"umap_y\": -1.1750667095184326, \"post_id\": 4030.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 4032, \"umap_x\": -2.417776584625244, \"umap_y\": -0.09520020335912704, \"post_id\": 4032.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 4032, \"umap_x\": -2.417776584625244, \"umap_y\": -0.09520020335912704, \"post_id\": 4032.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4034, \"umap_x\": -1.9096688032150269, \"umap_y\": -0.019020991399884224, \"post_id\": 4034.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 4034, \"umap_x\": -1.9096688032150269, \"umap_y\": -0.019020991399884224, \"post_id\": 4034.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4036, \"umap_x\": 1.2488335371017456, \"umap_y\": -0.1579311490058899, \"post_id\": 4036.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4036, \"umap_x\": 1.2488335371017456, \"umap_y\": -0.1579311490058899, \"post_id\": 4036.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4038, \"umap_x\": -0.06820164620876312, \"umap_y\": 1.0847679376602173, \"post_id\": 4038.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 4038, \"umap_x\": -0.06820164620876312, \"umap_y\": 1.0847679376602173, \"post_id\": 4038.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 4038, \"umap_x\": -0.06820164620876312, \"umap_y\": 1.0847679376602173, \"post_id\": 4038.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4040, \"umap_x\": 0.19245469570159912, \"umap_y\": 2.3624331951141357, \"post_id\": 4040.0, \"author_id\": 108.0, \"id_y\": 108.0, \"author\": \"Michael Stellner\", \"author_group\": \"Other\"}, {\"id_x\": 4040, \"umap_x\": 0.19245469570159912, \"umap_y\": 2.3624331951141357, \"post_id\": 4040.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4042, \"umap_x\": 1.08956778049469, \"umap_y\": 0.16852635145187378, \"post_id\": 4042.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 4042, \"umap_x\": 1.08956778049469, \"umap_y\": 0.16852635145187378, \"post_id\": 4042.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4044, \"umap_x\": 0.1507992297410965, \"umap_y\": 0.5430686473846436, \"post_id\": 4044.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4044, \"umap_x\": 0.1507992297410965, \"umap_y\": 0.5430686473846436, \"post_id\": 4044.0, \"author_id\": 307.0, \"id_y\": 307.0, \"author\": \"Jan Sternberg\", \"author_group\": \"Other\"}, {\"id_x\": 4044, \"umap_x\": 0.1507992297410965, \"umap_y\": 0.5430686473846436, \"post_id\": 4044.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 4044, \"umap_x\": 0.1507992297410965, \"umap_y\": 0.5430686473846436, \"post_id\": 4044.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4046, \"umap_x\": -2.9511630535125732, \"umap_y\": 2.079998016357422, \"post_id\": 4046.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4046, \"umap_x\": -2.9511630535125732, \"umap_y\": 2.079998016357422, \"post_id\": 4046.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4048, \"umap_x\": -2.5118355751037598, \"umap_y\": -1.0045735836029053, \"post_id\": 4048.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 4048, \"umap_x\": -2.5118355751037598, \"umap_y\": -1.0045735836029053, \"post_id\": 4048.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4054, \"umap_x\": -2.293109655380249, \"umap_y\": -0.3199816644191742, \"post_id\": 4054.0, \"author_id\": 308.0, \"id_y\": 308.0, \"author\": \"Alfredo\", \"author_group\": \"Other\"}, {\"id_x\": 4056, \"umap_x\": -1.0390926599502563, \"umap_y\": 5.215456485748291, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 4071, \"umap_x\": -4.820786952972412, \"umap_y\": 4.274631977081299, \"post_id\": 4071.0, \"author_id\": 309.0, \"id_y\": 309.0, \"author\": \"PKKverbotaufheben\", \"author_group\": \"Other\"}, {\"id_x\": 4074, \"umap_x\": -4.498711109161377, \"umap_y\": 4.563475131988525, \"post_id\": 4074.0, \"author_id\": 310.0, \"id_y\": 310.0, \"author\": \"Rojava Soli B\\u00fcndniss\", \"author_group\": \"Other\"}, {\"id_x\": 4077, \"umap_x\": -4.580239295959473, \"umap_y\": 4.506605625152588, \"post_id\": 4077.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 4092, \"umap_x\": -2.3187313079833984, \"umap_y\": -0.4193652272224426, \"post_id\": 4092.0, \"author_id\": 312.0, \"id_y\": 312.0, \"author\": \"Autonome Gruppen\", \"author_group\": \"Other\"}, {\"id_x\": 4095, \"umap_x\": -0.6798056364059448, \"umap_y\": 4.595963954925537, \"post_id\": 4095.0, \"author_id\": 313.0, \"id_y\": 313.0, \"author\": \"S\\u016bnz\\u01d0 B\\u012bngf\\u01ce\", \"author_group\": \"Other\"}, {\"id_x\": 4098, \"umap_x\": -3.088528633117676, \"umap_y\": 4.307847023010254, \"post_id\": 4098.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4112, \"umap_x\": -2.853088617324829, \"umap_y\": 5.524032115936279, \"post_id\": 4112.0, \"author_id\": 314.0, \"id_y\": 314.0, \"author\": \"FQZ\", \"author_group\": \"Other\"}, {\"id_x\": 4116, \"umap_x\": -3.0995142459869385, \"umap_y\": 1.2692418098449707, \"post_id\": 4116.0, \"author_id\": 47.0, \"id_y\": 47.0, \"author\": \"Autonome Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 4124, \"umap_x\": -3.2716288566589355, \"umap_y\": 1.3006662130355835, \"post_id\": 4124.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 4129, \"umap_x\": -4.45842981338501, \"umap_y\": 4.498743057250977, \"post_id\": 4129.0, \"author_id\": 339.0, \"id_y\": 339.0, \"author\": \"Woman\", \"author_group\": \"Other\"}, {\"id_x\": 4132, \"umap_x\": -3.3642120361328125, \"umap_y\": 1.47836172580719, \"post_id\": 4132.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4135, \"umap_x\": -3.2663073539733887, \"umap_y\": 1.2344279289245605, \"post_id\": 4135.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 4135, \"umap_x\": -3.2663073539733887, \"umap_y\": 1.2344279289245605, \"post_id\": 4135.0, \"author_id\": 316.0, \"id_y\": 316.0, \"author\": \"Kommunistische Gruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4144, \"umap_x\": -3.1237335205078125, \"umap_y\": 2.4755523204803467, \"post_id\": 4144.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4147, \"umap_x\": -0.49675530195236206, \"umap_y\": 1.9701108932495117, \"post_id\": 4147.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 4147, \"umap_x\": -0.49675530195236206, \"umap_y\": 1.9701108932495117, \"post_id\": 4147.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4152, \"umap_x\": -4.361639022827148, \"umap_y\": 4.725358486175537, \"post_id\": 4152.0, \"author_id\": 317.0, \"id_y\": 317.0, \"author\": \"riseup4rojava\", \"author_group\": \"Other\"}, {\"id_x\": 4159, \"umap_x\": -4.483880519866943, \"umap_y\": 4.556707382202148, \"post_id\": 4159.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4163, \"umap_x\": -4.5402631759643555, \"umap_y\": 4.483863353729248, \"post_id\": 4163.0, \"author_id\": 310.0, \"id_y\": 310.0, \"author\": \"Rojava Soli B\\u00fcndniss\", \"author_group\": \"Other\"}, {\"id_x\": 4168, \"umap_x\": -2.848139762878418, \"umap_y\": 0.912925124168396, \"post_id\": 4168.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 4174, \"umap_x\": -4.31998872756958, \"umap_y\": 4.672181129455566, \"post_id\": 4174.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 4181, \"umap_x\": -1.1799863576889038, \"umap_y\": 3.2003636360168457, \"post_id\": 4181.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4183, \"umap_x\": -4.509603023529053, \"umap_y\": 4.580219745635986, \"post_id\": 4183.0, \"author_id\": 318.0, \"id_y\": 318.0, \"author\": \"ANF-Ankara\", \"author_group\": \"Other\"}, {\"id_x\": 4185, \"umap_x\": -4.468756198883057, \"umap_y\": 4.619477272033691, \"post_id\": 4185.0, \"author_id\": 166.0, \"id_y\": 166.0, \"author\": \"Civaka Azad\", \"author_group\": \"Other\"}, {\"id_x\": 4187, \"umap_x\": -4.508125305175781, \"umap_y\": 4.605546951293945, \"post_id\": 4187.0, \"author_id\": 319.0, \"id_y\": 319.0, \"author\": \"Elke Dangeleit\", \"author_group\": \"Other\"}, {\"id_x\": 4187, \"umap_x\": -4.508125305175781, \"umap_y\": 4.605546951293945, \"post_id\": 4187.0, \"author_id\": 320.0, \"id_y\": 320.0, \"author\": \"Telepolis\", \"author_group\": \"Other\"}, {\"id_x\": 4189, \"umap_x\": 0.8219680786132812, \"umap_y\": 2.743717670440674, \"post_id\": 4189.0, \"author_id\": 321.0, \"id_y\": 321.0, \"author\": \"Alternative Dresden News\", \"author_group\": \"Other\"}, {\"id_x\": 4191, \"umap_x\": -3.8098556995391846, \"umap_y\": 2.7467734813690186, \"post_id\": 4191.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4194, \"umap_x\": -1.3465715646743774, \"umap_y\": 3.6745617389678955, \"post_id\": 4194.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4197, \"umap_x\": -1.7042875289916992, \"umap_y\": 1.5454634428024292, \"post_id\": 4197.0, \"author_id\": 322.0, \"id_y\": 322.0, \"author\": \"Prosfygika\", \"author_group\": \"Other\"}, {\"id_x\": 4215, \"umap_x\": -2.530141830444336, \"umap_y\": 1.453204870223999, \"post_id\": 4215.0, \"author_id\": 256.0, \"id_y\": 256.0, \"author\": \"Thomas Haegeler\", \"author_group\": \"Other\"}, {\"id_x\": 4215, \"umap_x\": -2.530141830444336, \"umap_y\": 1.453204870223999, \"post_id\": 4215.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4223, \"umap_x\": -4.266792297363281, \"umap_y\": 4.571741580963135, \"post_id\": 4223.0, \"author_id\": 323.0, \"id_y\": 323.0, \"author\": \"ANF-Redaktion\", \"author_group\": \"Other\"}, {\"id_x\": 4225, \"umap_x\": 1.234010934829712, \"umap_y\": -0.7031520009040833, \"post_id\": 4225.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4225, \"umap_x\": 1.234010934829712, \"umap_y\": -0.7031520009040833, \"post_id\": 4225.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4227, \"umap_x\": -4.466396331787109, \"umap_y\": 4.612236022949219, \"post_id\": 4227.0, \"author_id\": 324.0, \"id_y\": 324.0, \"author\": \"ANF-Deutsch\", \"author_group\": \"Other\"}, {\"id_x\": 4229, \"umap_x\": -0.9660908579826355, \"umap_y\": 0.7778693437576294, \"post_id\": 4229.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4229, \"umap_x\": -0.9660908579826355, \"umap_y\": 0.7778693437576294, \"post_id\": 4229.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4229, \"umap_x\": -0.9660908579826355, \"umap_y\": 0.7778693437576294, \"post_id\": 4229.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4231, \"umap_x\": -3.1793196201324463, \"umap_y\": 1.1726984977722168, \"post_id\": 4231.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4231, \"umap_x\": -3.1793196201324463, \"umap_y\": 1.1726984977722168, \"post_id\": 4231.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4233, \"umap_x\": -2.431729793548584, \"umap_y\": 0.5864377021789551, \"post_id\": 4233.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4236, \"umap_x\": -3.053677797317505, \"umap_y\": 1.195102572441101, \"post_id\": 4236.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4241, \"umap_x\": -1.5451854467391968, \"umap_y\": 0.6981086134910583, \"post_id\": 4241.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4241, \"umap_x\": -1.5451854467391968, \"umap_y\": 0.6981086134910583, \"post_id\": 4241.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4243, \"umap_x\": -2.1104960441589355, \"umap_y\": 1.6518535614013672, \"post_id\": 4243.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 4243, \"umap_x\": -2.1104960441589355, \"umap_y\": 1.6518535614013672, \"post_id\": 4243.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4245, \"umap_x\": -4.345187187194824, \"umap_y\": 4.647175312042236, \"post_id\": 4245.0, \"author_id\": 325.0, \"id_y\": 325.0, \"author\": \"Hubert Maulhofer\", \"author_group\": \"Other\"}, {\"id_x\": 4245, \"umap_x\": -4.345187187194824, \"umap_y\": 4.647175312042236, \"post_id\": 4245.0, \"author_id\": 326.0, \"id_y\": 326.0, \"author\": \"Lowerclass Magazine\", \"author_group\": \"Other\"}, {\"id_x\": 4247, \"umap_x\": -4.380596160888672, \"umap_y\": 4.555484771728516, \"post_id\": 4247.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 4250, \"umap_x\": -3.266303539276123, \"umap_y\": 1.196698784828186, \"post_id\": 4250.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4250, \"umap_x\": -3.266303539276123, \"umap_y\": 1.196698784828186, \"post_id\": 4250.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4270, \"umap_x\": -3.2929537296295166, \"umap_y\": 1.140479564666748, \"post_id\": 4270.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4272, \"umap_x\": -3.0266010761260986, \"umap_y\": 1.3453835248947144, \"post_id\": 4272.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4272, \"umap_x\": -3.0266010761260986, \"umap_y\": 1.3453835248947144, \"post_id\": 4272.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4274, \"umap_x\": -1.5326647758483887, \"umap_y\": 1.942154049873352, \"post_id\": 4274.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 4274, \"umap_x\": -1.5326647758483887, \"umap_y\": 1.942154049873352, \"post_id\": 4274.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 4276, \"umap_x\": -2.8044891357421875, \"umap_y\": -0.12134301662445068, \"post_id\": 4276.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 4282, \"umap_x\": -3.3085055351257324, \"umap_y\": 1.0089455842971802, \"post_id\": 4282.0, \"author_id\": 450.0, \"id_y\": 450.0, \"author\": \"Bild\", \"author_group\": \"Other\"}, {\"id_x\": 4285, \"umap_x\": -2.857368230819702, \"umap_y\": 5.602567672729492, \"post_id\": 4285.0, \"author_id\": 327.0, \"id_y\": 327.0, \"author\": \"Sy.Ka.Pro\", \"author_group\": \"Other\"}, {\"id_x\": 4294, \"umap_x\": -3.304713487625122, \"umap_y\": 1.1184452772140503, \"post_id\": 4294.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 4294, \"umap_x\": -3.304713487625122, \"umap_y\": 1.1184452772140503, \"post_id\": 4294.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4294, \"umap_x\": -3.304713487625122, \"umap_y\": 1.1184452772140503, \"post_id\": 4294.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4299, \"umap_x\": -0.8973053693771362, \"umap_y\": 2.7159464359283447, \"post_id\": 4299.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 4304, \"umap_x\": -2.3962788581848145, \"umap_y\": 0.8815510869026184, \"post_id\": 4304.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 4304, \"umap_x\": -2.3962788581848145, \"umap_y\": 0.8815510869026184, \"post_id\": 4304.0, \"author_id\": 328.0, \"id_y\": 328.0, \"author\": \"Inga Jahn\", \"author_group\": \"Other\"}, {\"id_x\": 4308, \"umap_x\": -3.2822089195251465, \"umap_y\": 0.09990203380584717, \"post_id\": 4308.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 4308, \"umap_x\": -3.2822089195251465, \"umap_y\": 0.09990203380584717, \"post_id\": 4308.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4310, \"umap_x\": 1.564274549484253, \"umap_y\": 1.5448225736618042, \"post_id\": 4310.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 4312, \"umap_x\": -1.7743223905563354, \"umap_y\": 1.407318353652954, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 4316, \"umap_x\": -3.2014453411102295, \"umap_y\": 2.1923158168792725, \"post_id\": 4316.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4316, \"umap_x\": -3.2014453411102295, \"umap_y\": 2.1923158168792725, \"post_id\": 4316.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4320, \"umap_x\": -1.0437045097351074, \"umap_y\": 3.736114025115967, \"post_id\": 4320.0, \"author_id\": 160.0, \"id_y\": 160.0, \"author\": \"Gruppe Autonomie und Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 4323, \"umap_x\": -2.3101463317871094, \"umap_y\": 0.8691741824150085, \"post_id\": 4323.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 4334, \"umap_x\": -0.23776178061962128, \"umap_y\": -0.9602866768836975, \"post_id\": 4334.0, \"author_id\": 329.0, \"id_y\": 329.0, \"author\": \"Susanne Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 4334, \"umap_x\": -0.23776178061962128, \"umap_y\": -0.9602866768836975, \"post_id\": 4334.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4336, \"umap_x\": -0.8905113339424133, \"umap_y\": 1.0643457174301147, \"post_id\": 4336.0, \"author_id\": 330.0, \"id_y\": 330.0, \"author\": \"Migazin\", \"author_group\": \"Other\"}, {\"id_x\": 4339, \"umap_x\": -2.457005739212036, \"umap_y\": -0.46260783076286316, \"post_id\": 4339.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 4339, \"umap_x\": -2.457005739212036, \"umap_y\": -0.46260783076286316, \"post_id\": 4339.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4341, \"umap_x\": -1.0139824151992798, \"umap_y\": 1.6416207551956177, \"post_id\": 4341.0, \"author_id\": 331.0, \"id_y\": 331.0, \"author\": \"Elke Spanner\", \"author_group\": \"Other\"}, {\"id_x\": 4341, \"umap_x\": -1.0139824151992798, \"umap_y\": 1.6416207551956177, \"post_id\": 4341.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 4343, \"umap_x\": -0.6606695055961609, \"umap_y\": 4.9878010749816895, \"post_id\": 4343.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 4353, \"umap_x\": 1.2071094512939453, \"umap_y\": -0.6834012866020203, \"post_id\": 4353.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 4353, \"umap_x\": 1.2071094512939453, \"umap_y\": -0.6834012866020203, \"post_id\": 4353.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4355, \"umap_x\": -0.7757743000984192, \"umap_y\": 5.157045841217041, \"post_id\": 4355.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4363, \"umap_x\": -2.136221408843994, \"umap_y\": 0.7160934805870056, \"post_id\": 4363.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 4363, \"umap_x\": -2.136221408843994, \"umap_y\": 0.7160934805870056, \"post_id\": 4363.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4365, \"umap_x\": -2.216815710067749, \"umap_y\": 0.9214050769805908, \"post_id\": 4365.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 4365, \"umap_x\": -2.216815710067749, \"umap_y\": 0.9214050769805908, \"post_id\": 4365.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4367, \"umap_x\": -2.945051908493042, \"umap_y\": -0.1824662983417511, \"post_id\": 4367.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 4367, \"umap_x\": -2.945051908493042, \"umap_y\": -0.1824662983417511, \"post_id\": 4367.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4369, \"umap_x\": -0.4135076701641083, \"umap_y\": 2.4682767391204834, \"post_id\": 4369.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 4369, \"umap_x\": -0.4135076701641083, \"umap_y\": 2.4682767391204834, \"post_id\": 4369.0, \"author_id\": 335.0, \"id_y\": 335.0, \"author\": \"Indymedia\", \"author_group\": \"Other\"}, {\"id_x\": 4371, \"umap_x\": -0.7118412256240845, \"umap_y\": 0.493474543094635, \"post_id\": 4371.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 4376, \"umap_x\": -0.31080639362335205, \"umap_y\": 1.003329873085022, \"post_id\": 4376.0, \"author_id\": 336.0, \"id_y\": 336.0, \"author\": \"Robert Preu\\u00dfe\", \"author_group\": \"Other\"}, {\"id_x\": 4376, \"umap_x\": -0.31080639362335205, \"umap_y\": 1.003329873085022, \"post_id\": 4376.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 4389, \"umap_x\": -1.7871968746185303, \"umap_y\": -0.8411421775817871, \"post_id\": 4389.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 4389, \"umap_x\": -1.7871968746185303, \"umap_y\": -0.8411421775817871, \"post_id\": 4389.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4391, \"umap_x\": -1.515122413635254, \"umap_y\": 0.18327118456363678, \"post_id\": 4391.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4391, \"umap_x\": -1.515122413635254, \"umap_y\": 0.18327118456363678, \"post_id\": 4391.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4393, \"umap_x\": -2.2246665954589844, \"umap_y\": -1.0653241872787476, \"post_id\": 4393.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 4393, \"umap_x\": -2.2246665954589844, \"umap_y\": -1.0653241872787476, \"post_id\": 4393.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4395, \"umap_x\": -4.581510543823242, \"umap_y\": 4.491065502166748, \"post_id\": 4395.0, \"author_id\": 337.0, \"id_y\": 337.0, \"author\": \"Krisenkomitee AG\", \"author_group\": \"Other\"}, {\"id_x\": 4401, \"umap_x\": -4.3611273765563965, \"umap_y\": 4.59235143661499, \"post_id\": 4401.0, \"author_id\": 337.0, \"id_y\": 337.0, \"author\": \"Krisenkomitee AG\", \"author_group\": \"Other\"}, {\"id_x\": 4404, \"umap_x\": -4.490432262420654, \"umap_y\": 4.536862373352051, \"post_id\": 4404.0, \"author_id\": 338.0, \"id_y\": 338.0, \"author\": \"Krisenkomitee\", \"author_group\": \"Other\"}, {\"id_x\": 4407, \"umap_x\": 0.3608071208000183, \"umap_y\": 0.2643512189388275, \"post_id\": 4407.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 4407, \"umap_x\": 0.3608071208000183, \"umap_y\": 0.2643512189388275, \"post_id\": 4407.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4418, \"umap_x\": -4.518732070922852, \"umap_y\": 4.523073196411133, \"post_id\": 4418.0, \"author_id\": 339.0, \"id_y\": 339.0, \"author\": \"Woman\", \"author_group\": \"Other\"}, {\"id_x\": 4420, \"umap_x\": 0.013678016141057014, \"umap_y\": 2.8173444271087646, \"post_id\": 4420.0, \"author_id\": 322.0, \"id_y\": 322.0, \"author\": \"Prosfygika\", \"author_group\": \"Other\"}, {\"id_x\": 4422, \"umap_x\": -0.8305876851081848, \"umap_y\": 0.4394594430923462, \"post_id\": 4422.0, \"author_id\": 340.0, \"id_y\": 340.0, \"author\": \"Markus Decker\", \"author_group\": \"Other\"}, {\"id_x\": 4422, \"umap_x\": -0.8305876851081848, \"umap_y\": 0.4394594430923462, \"post_id\": 4422.0, \"author_id\": 341.0, \"id_y\": 341.0, \"author\": \"Steven Geyer\", \"author_group\": \"Other\"}, {\"id_x\": 4422, \"umap_x\": -0.8305876851081848, \"umap_y\": 0.4394594430923462, \"post_id\": 4422.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4424, \"umap_x\": -2.264122724533081, \"umap_y\": -1.0329097509384155, \"post_id\": 4424.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 4424, \"umap_x\": -2.264122724533081, \"umap_y\": -1.0329097509384155, \"post_id\": 4424.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4426, \"umap_x\": -1.144842505455017, \"umap_y\": 0.17095887660980225, \"post_id\": 4426.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 4426, \"umap_x\": -1.144842505455017, \"umap_y\": 0.17095887660980225, \"post_id\": 4426.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4428, \"umap_x\": -2.8353023529052734, \"umap_y\": -0.3873227834701538, \"post_id\": 4428.0, \"author_id\": 242.0, \"id_y\": 242.0, \"author\": \"J. NUSSBAUM\", \"author_group\": \"Other\"}, {\"id_x\": 4428, \"umap_x\": -2.8353023529052734, \"umap_y\": -0.3873227834701538, \"post_id\": 4428.0, \"author_id\": 244.0, \"id_y\": 244.0, \"author\": \"M. LANGNER\", \"author_group\": \"Other\"}, {\"id_x\": 4428, \"umap_x\": -2.8353023529052734, \"umap_y\": -0.3873227834701538, \"post_id\": 4428.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4436, \"umap_x\": -2.478992462158203, \"umap_y\": 4.1988205909729, \"post_id\": 4436.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4439, \"umap_x\": -2.213636636734009, \"umap_y\": 3.6676859855651855, \"post_id\": 4439.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 4445, \"umap_x\": 1.0785162448883057, \"umap_y\": -0.44038286805152893, \"post_id\": 4445.0, \"author_id\": 343.0, \"id_y\": 343.0, \"author\": \"Sandra H\\u00e4fner\", \"author_group\": \"Other\"}, {\"id_x\": 4445, \"umap_x\": 1.0785162448883057, \"umap_y\": -0.44038286805152893, \"post_id\": 4445.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4447, \"umap_x\": 0.8573458790779114, \"umap_y\": 0.724524199962616, \"post_id\": 4447.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4447, \"umap_x\": 0.8573458790779114, \"umap_y\": 0.724524199962616, \"post_id\": 4447.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4452, \"umap_x\": -0.6953757405281067, \"umap_y\": 1.1467909812927246, \"post_id\": 4452.0, \"author_id\": 344.0, \"id_y\": 344.0, \"author\": \"Carsten Janz\", \"author_group\": \"Other\"}, {\"id_x\": 4455, \"umap_x\": -4.543635368347168, \"umap_y\": 4.526010513305664, \"post_id\": 4455.0, \"author_id\": 207.0, \"id_y\": 207.0, \"author\": \"RSBL\", \"author_group\": \"Other\"}, {\"id_x\": 4460, \"umap_x\": 0.6265099048614502, \"umap_y\": 0.4392184913158417, \"post_id\": 4460.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 4460, \"umap_x\": 0.6265099048614502, \"umap_y\": 0.4392184913158417, \"post_id\": 4460.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4462, \"umap_x\": -0.12967342138290405, \"umap_y\": 1.1085131168365479, \"post_id\": 4462.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 4462, \"umap_x\": -0.12967342138290405, \"umap_y\": 1.1085131168365479, \"post_id\": 4462.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4464, \"umap_x\": -2.5058746337890625, \"umap_y\": 2.253241777420044, \"post_id\": 4464.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 4464, \"umap_x\": -2.5058746337890625, \"umap_y\": 2.253241777420044, \"post_id\": 4464.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4466, \"umap_x\": -4.2806525230407715, \"umap_y\": 1.2204612493515015, \"post_id\": 4466.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4466, \"umap_x\": -4.2806525230407715, \"umap_y\": 1.2204612493515015, \"post_id\": 4466.0, \"author_id\": 343.0, \"id_y\": 343.0, \"author\": \"Sandra H\\u00e4fner\", \"author_group\": \"Other\"}, {\"id_x\": 4468, \"umap_x\": -1.800574541091919, \"umap_y\": -0.26183515787124634, \"post_id\": 4468.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 4468, \"umap_x\": -1.800574541091919, \"umap_y\": -0.26183515787124634, \"post_id\": 4468.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4475, \"umap_x\": -1.9304745197296143, \"umap_y\": 3.030815839767456, \"post_id\": 4475.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4479, \"umap_x\": -1.003563404083252, \"umap_y\": 2.241640567779541, \"post_id\": 4479.0, \"author_id\": 345.0, \"id_y\": 345.0, \"author\": \"Jost M\\u00fcller-Neuhof\", \"author_group\": \"Other\"}, {\"id_x\": 4479, \"umap_x\": -1.003563404083252, \"umap_y\": 2.241640567779541, \"post_id\": 4479.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 4479, \"umap_x\": -1.003563404083252, \"umap_y\": 2.241640567779541, \"post_id\": 4479.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4483, \"umap_x\": -1.0994194746017456, \"umap_y\": 5.188253879547119, \"post_id\": 4483.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4499, \"umap_x\": -2.8383147716522217, \"umap_y\": -0.1700195074081421, \"post_id\": 4499.0, \"author_id\": 346.0, \"id_y\": 346.0, \"author\": \"Freie Arbeiter\", \"author_group\": \"Other\"}, {\"id_x\": 4504, \"umap_x\": -1.5400629043579102, \"umap_y\": 0.0286365058273077, \"post_id\": 4504.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4504, \"umap_x\": -1.5400629043579102, \"umap_y\": 0.0286365058273077, \"post_id\": 4504.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4506, \"umap_x\": -1.9071028232574463, \"umap_y\": 0.2250947803258896, \"post_id\": 4506.0, \"author_id\": 252.0, \"id_y\": 252.0, \"author\": \"Andre Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 4506, \"umap_x\": -1.9071028232574463, \"umap_y\": 0.2250947803258896, \"post_id\": 4506.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4508, \"umap_x\": -4.128881454467773, \"umap_y\": 1.1600584983825684, \"post_id\": 4508.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 4508, \"umap_x\": -4.128881454467773, \"umap_y\": 1.1600584983825684, \"post_id\": 4508.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4510, \"umap_x\": -1.7292183637619019, \"umap_y\": 0.07080084830522537, \"post_id\": 4510.0, \"author_id\": 348.0, \"id_y\": 348.0, \"author\": \"Johannes Grunert\", \"author_group\": \"Other\"}, {\"id_x\": 4510, \"umap_x\": -1.7292183637619019, \"umap_y\": 0.07080084830522537, \"post_id\": 4510.0, \"author_id\": 349.0, \"id_y\": 349.0, \"author\": \"Finn Becker\", \"author_group\": \"Other\"}, {\"id_x\": 4510, \"umap_x\": -1.7292183637619019, \"umap_y\": 0.07080084830522537, \"post_id\": 4510.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 4512, \"umap_x\": 0.07172541320323944, \"umap_y\": 3.197556734085083, \"post_id\": 4512.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4515, \"umap_x\": -0.5185186266899109, \"umap_y\": 3.7463221549987793, \"post_id\": 4515.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4518, \"umap_x\": -2.682811737060547, \"umap_y\": 5.605450630187988, \"post_id\": 4518.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4529, \"umap_x\": -3.61680269241333, \"umap_y\": 3.4872143268585205, \"post_id\": 4529.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 4531, \"umap_x\": -2.441213607788086, \"umap_y\": -0.4066615402698517, \"post_id\": 4531.0, \"author_id\": 282.0, \"id_y\": 282.0, \"author\": \"Mathias Orbeck\", \"author_group\": \"Other\"}, {\"id_x\": 4531, \"umap_x\": -2.441213607788086, \"umap_y\": -0.4066615402698517, \"post_id\": 4531.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4533, \"umap_x\": -0.39486637711524963, \"umap_y\": 0.9617518186569214, \"post_id\": 4533.0, \"author_id\": 351.0, \"id_y\": 351.0, \"author\": \"FRANK SELIG\", \"author_group\": \"Other\"}, {\"id_x\": 4533, \"umap_x\": -0.39486637711524963, \"umap_y\": 0.9617518186569214, \"post_id\": 4533.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4536, \"umap_x\": -4.145548343658447, \"umap_y\": 1.1067736148834229, \"post_id\": 4536.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 4536, \"umap_x\": -4.145548343658447, \"umap_y\": 1.1067736148834229, \"post_id\": 4536.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4538, \"umap_x\": -2.9766695499420166, \"umap_y\": 0.27806469798088074, \"post_id\": 4538.0, \"author_id\": 352.0, \"id_y\": 352.0, \"author\": \"Annika Rank\", \"author_group\": \"Other\"}, {\"id_x\": 4538, \"umap_x\": -2.9766695499420166, \"umap_y\": 0.27806469798088074, \"post_id\": 4538.0, \"author_id\": 353.0, \"id_y\": 353.0, \"author\": \"Tag24\", \"author_group\": \"Other\"}, {\"id_x\": 4540, \"umap_x\": -2.3155527114868164, \"umap_y\": -1.469444990158081, \"post_id\": 4540.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4544, \"umap_x\": -2.1618449687957764, \"umap_y\": 2.10929799079895, \"post_id\": 4544.0, \"author_id\": 354.0, \"id_y\": 354.0, \"author\": \"Offene Anarchistische Versammlung\", \"author_group\": \"Other\"}, {\"id_x\": 4546, \"umap_x\": -0.9988344311714172, \"umap_y\": 4.643521785736084, \"post_id\": 4546.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4549, \"umap_x\": -0.6921992897987366, \"umap_y\": 3.5953922271728516, \"post_id\": 4549.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4551, \"umap_x\": -2.4322407245635986, \"umap_y\": 2.106454849243164, \"post_id\": 4551.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 4561, \"umap_x\": -1.0366877317428589, \"umap_y\": 3.435842514038086, \"post_id\": 4561.0, \"author_id\": 355.0, \"id_y\": 355.0, \"author\": \"Jakob Hayner\", \"author_group\": \"Other\"}, {\"id_x\": 4561, \"umap_x\": -1.0366877317428589, \"umap_y\": 3.435842514038086, \"post_id\": 4561.0, \"author_id\": 356.0, \"id_y\": 356.0, \"author\": \"welt\", \"author_group\": \"Other\"}, {\"id_x\": 4563, \"umap_x\": -2.882573127746582, \"umap_y\": -0.243464395403862, \"post_id\": 4563.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4563, \"umap_x\": -2.882573127746582, \"umap_y\": -0.243464395403862, \"post_id\": 4563.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4574, \"umap_x\": -0.2981012761592865, \"umap_y\": 2.164933919906616, \"post_id\": 4574.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4583, \"umap_x\": -1.6039224863052368, \"umap_y\": 3.7952518463134766, \"post_id\": 4583.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4586, \"umap_x\": -1.6989020109176636, \"umap_y\": -0.0920102521777153, \"post_id\": 4586.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4589, \"umap_x\": 1.009972095489502, \"umap_y\": -0.7540456652641296, \"post_id\": 4589.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4591, \"umap_x\": -1.3723574876785278, \"umap_y\": 4.199031829833984, \"post_id\": 4591.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4594, \"umap_x\": -0.18491685390472412, \"umap_y\": -0.04729641601443291, \"post_id\": 4594.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 4596, \"umap_x\": 0.4057930111885071, \"umap_y\": -0.17524783313274384, \"post_id\": 4596.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4596, \"umap_x\": 0.4057930111885071, \"umap_y\": -0.17524783313274384, \"post_id\": 4596.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4598, \"umap_x\": 0.06621614098548889, \"umap_y\": 1.306609869003296, \"post_id\": 4598.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 4600, \"umap_x\": 1.1413521766662598, \"umap_y\": -0.6387615203857422, \"post_id\": 4600.0, \"author_id\": 154.0, \"id_y\": 154.0, \"author\": \"MICHAEL DEUTSCHMANN\", \"author_group\": \"Other\"}, {\"id_x\": 4600, \"umap_x\": 1.1413521766662598, \"umap_y\": -0.6387615203857422, \"post_id\": 4600.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4602, \"umap_x\": 0.2797684073448181, \"umap_y\": 0.11708088219165802, \"post_id\": 4602.0, \"author_id\": 357.0, \"id_y\": 357.0, \"author\": \"ANNETT CONRAD\", \"author_group\": \"Other\"}, {\"id_x\": 4602, \"umap_x\": 0.2797684073448181, \"umap_y\": 0.11708088219165802, \"post_id\": 4602.0, \"author_id\": 358.0, \"id_y\": 358.0, \"author\": \"MARKUS LANGNER\", \"author_group\": \"Other\"}, {\"id_x\": 4602, \"umap_x\": 0.2797684073448181, \"umap_y\": 0.11708088219165802, \"post_id\": 4602.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4604, \"umap_x\": 0.5021251440048218, \"umap_y\": 0.9444131255149841, \"post_id\": 4604.0, \"author_id\": 230.0, \"id_y\": 230.0, \"author\": \"Internationale Jugend Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 4613, \"umap_x\": 0.2673048973083496, \"umap_y\": 2.2424426078796387, \"post_id\": 4613.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 4616, \"umap_x\": -0.20549626648426056, \"umap_y\": 4.448186874389648, \"post_id\": 4616.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 4624, \"umap_x\": -4.541100978851318, \"umap_y\": 4.461080551147461, \"post_id\": 4624.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4627, \"umap_x\": -2.397141456604004, \"umap_y\": 4.432841777801514, \"post_id\": 4627.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4632, \"umap_x\": -4.435287952423096, \"umap_y\": 4.375975131988525, \"post_id\": 4632.0, \"author_id\": 326.0, \"id_y\": 326.0, \"author\": \"Lowerclass Magazine\", \"author_group\": \"Other\"}, {\"id_x\": 4646, \"umap_x\": -0.8657018542289734, \"umap_y\": 1.710702896118164, \"post_id\": 4646.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 4650, \"umap_x\": -0.11011821031570435, \"umap_y\": -0.9374099373817444, \"post_id\": 4650.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4650, \"umap_x\": -0.11011821031570435, \"umap_y\": -0.9374099373817444, \"post_id\": 4650.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 4654, \"umap_x\": -2.0500004291534424, \"umap_y\": 0.23921902477741241, \"post_id\": 4654.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 4654, \"umap_x\": -2.0500004291534424, \"umap_y\": 0.23921902477741241, \"post_id\": 4654.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4658, \"umap_x\": -0.324450820684433, \"umap_y\": 0.5650670528411865, \"post_id\": 4658.0, \"author_id\": 1066.0, \"id_y\": 1066.0, \"author\": \"DNN\", \"author_group\": \"Other\"}, {\"id_x\": 4660, \"umap_x\": -2.1528918743133545, \"umap_y\": 0.4177422523498535, \"post_id\": 4660.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4662, \"umap_x\": -2.675265073776245, \"umap_y\": -0.20656494796276093, \"post_id\": 4662.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 4673, \"umap_x\": -2.6837544441223145, \"umap_y\": 1.0865861177444458, \"post_id\": 4673.0, \"author_id\": 360.0, \"id_y\": 360.0, \"author\": \"annaundarthur\", \"author_group\": \"Other\"}, {\"id_x\": 4677, \"umap_x\": 0.1330532282590866, \"umap_y\": 1.2060785293579102, \"post_id\": 4677.0, \"author_id\": 52.0, \"id_y\": 52.0, \"author\": \"Oury Jalloh\", \"author_group\": \"Other\"}, {\"id_x\": 4682, \"umap_x\": -2.6068904399871826, \"umap_y\": 0.9574642181396484, \"post_id\": 4682.0, \"author_id\": 361.0, \"id_y\": 361.0, \"author\": \"Bullen\", \"author_group\": \"Other\"}, {\"id_x\": 4684, \"umap_x\": -1.5333667993545532, \"umap_y\": -0.7442960739135742, \"post_id\": 4684.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 4684, \"umap_x\": -1.5333667993545532, \"umap_y\": -0.7442960739135742, \"post_id\": 4684.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4686, \"umap_x\": -1.5852268934249878, \"umap_y\": -0.8529571294784546, \"post_id\": 4686.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 4686, \"umap_x\": -1.5852268934249878, \"umap_y\": -0.8529571294784546, \"post_id\": 4686.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4688, \"umap_x\": -3.6325855255126953, \"umap_y\": 2.25011944770813, \"post_id\": 4688.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 4688, \"umap_x\": -3.6325855255126953, \"umap_y\": 2.25011944770813, \"post_id\": 4688.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4690, \"umap_x\": -3.2189598083496094, \"umap_y\": 1.6465728282928467, \"post_id\": 4690.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 4690, \"umap_x\": -3.2189598083496094, \"umap_y\": 1.6465728282928467, \"post_id\": 4690.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4692, \"umap_x\": -0.5337270498275757, \"umap_y\": -1.0878331661224365, \"post_id\": 4692.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4692, \"umap_x\": -0.5337270498275757, \"umap_y\": -1.0878331661224365, \"post_id\": 4692.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4694, \"umap_x\": -2.677982807159424, \"umap_y\": 0.04133111238479614, \"post_id\": 4694.0, \"author_id\": 361.0, \"id_y\": 361.0, \"author\": \"Bullen\", \"author_group\": \"Other\"}, {\"id_x\": 4694, \"umap_x\": -2.677982807159424, \"umap_y\": 0.04133111238479614, \"post_id\": 4694.0, \"author_id\": 363.0, \"id_y\": 363.0, \"author\": \"Josephin Heilmann\", \"author_group\": \"Other\"}, {\"id_x\": 4696, \"umap_x\": 1.0596332550048828, \"umap_y\": 0.44967779517173767, \"post_id\": 4696.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4696, \"umap_x\": 1.0596332550048828, \"umap_y\": 0.44967779517173767, \"post_id\": 4696.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4699, \"umap_x\": -0.7347376942634583, \"umap_y\": 4.253602981567383, \"post_id\": 4699.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 4701, \"umap_x\": -2.6732122898101807, \"umap_y\": 5.601491928100586, \"post_id\": 4701.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4703, \"umap_x\": -1.3504434823989868, \"umap_y\": 2.200791597366333, \"post_id\": 4703.0, \"author_id\": 364.0, \"id_y\": 364.0, \"author\": \"Feministische Sch\\u00fcler\", \"author_group\": \"Other\"}, {\"id_x\": 4716, \"umap_x\": -1.7039501667022705, \"umap_y\": 3.5904061794281006, \"post_id\": 4716.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4721, \"umap_x\": -2.273359537124634, \"umap_y\": 1.2590636014938354, \"post_id\": 4721.0, \"author_id\": 365.0, \"id_y\": 365.0, \"author\": \"Maike Steuer\", \"author_group\": \"Other\"}, {\"id_x\": 4726, \"umap_x\": -3.390810489654541, \"umap_y\": 0.2888943552970886, \"post_id\": 4726.0, \"author_id\": 366.0, \"id_y\": 366.0, \"author\": \"KARL KEIM\", \"author_group\": \"Other\"}, {\"id_x\": 4726, \"umap_x\": -3.390810489654541, \"umap_y\": 0.2888943552970886, \"post_id\": 4726.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4736, \"umap_x\": 0.25430431962013245, \"umap_y\": 2.4732584953308105, \"post_id\": 4736.0, \"author_id\": 367.0, \"id_y\": 367.0, \"author\": \"Manuela M\\u00fcllerb\", \"author_group\": \"Other\"}, {\"id_x\": 4736, \"umap_x\": 0.25430431962013245, \"umap_y\": 2.4732584953308105, \"post_id\": 4736.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4738, \"umap_x\": 0.47444483637809753, \"umap_y\": 3.234285831451416, \"post_id\": 4738.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 4741, \"umap_x\": -3.3231847286224365, \"umap_y\": 1.5261152982711792, \"post_id\": 4741.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 4741, \"umap_x\": -3.3231847286224365, \"umap_y\": 1.5261152982711792, \"post_id\": 4741.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4743, \"umap_x\": -1.3863073587417603, \"umap_y\": -1.5032683610916138, \"post_id\": 4743.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4745, \"umap_x\": -2.17457914352417, \"umap_y\": -0.5956319570541382, \"post_id\": 4745.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 4745, \"umap_x\": -2.17457914352417, \"umap_y\": -0.5956319570541382, \"post_id\": 4745.0, \"author_id\": 368.0, \"id_y\": 368.0, \"author\": \"Anne H\\u00e4hnig\", \"author_group\": \"Other\"}, {\"id_x\": 4747, \"umap_x\": -2.5838117599487305, \"umap_y\": 4.0665812492370605, \"post_id\": 4747.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4758, \"umap_x\": -3.4740371704101562, \"umap_y\": 0.27252352237701416, \"post_id\": 4758.0, \"author_id\": 369.0, \"id_y\": 369.0, \"author\": \"militante Klimabewegung\", \"author_group\": \"Other\"}, {\"id_x\": 4761, \"umap_x\": -2.9240376949310303, \"umap_y\": -1.1088199615478516, \"post_id\": 4761.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 4764, \"umap_x\": -2.601656675338745, \"umap_y\": 0.2769155502319336, \"post_id\": 4764.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 4767, \"umap_x\": 0.5094397068023682, \"umap_y\": 2.0296990871429443, \"post_id\": 4767.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4770, \"umap_x\": 0.43774378299713135, \"umap_y\": -0.8780755996704102, \"post_id\": 4770.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4772, \"umap_x\": 0.9499013423919678, \"umap_y\": 0.8509138226509094, \"post_id\": 4772.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4772, \"umap_x\": 0.9499013423919678, \"umap_y\": 0.8509138226509094, \"post_id\": 4772.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4774, \"umap_x\": -3.378709077835083, \"umap_y\": 0.1522289365530014, \"post_id\": 4774.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 4774, \"umap_x\": -3.378709077835083, \"umap_y\": 0.1522289365530014, \"post_id\": 4774.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4779, \"umap_x\": -1.6336802244186401, \"umap_y\": -1.075490951538086, \"post_id\": 4779.0, \"author_id\": 370.0, \"id_y\": 370.0, \"author\": \"Autonome Gruppe\", \"author_group\": \"Other\"}, {\"id_x\": 4783, \"umap_x\": -0.4995769262313843, \"umap_y\": 2.054004669189453, \"post_id\": 4783.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4786, \"umap_x\": -2.2359766960144043, \"umap_y\": -1.3128355741500854, \"post_id\": 4786.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 4792, \"umap_x\": -1.7063838243484497, \"umap_y\": 0.19690819084644318, \"post_id\": 4792.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 4792, \"umap_x\": -1.7063838243484497, \"umap_y\": 0.19690819084644318, \"post_id\": 4792.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4800, \"umap_x\": -2.860722541809082, \"umap_y\": 5.567931652069092, \"post_id\": 4800.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4809, \"umap_x\": 0.8999409079551697, \"umap_y\": 0.013755210675299168, \"post_id\": 4809.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 4809, \"umap_x\": 0.8999409079551697, \"umap_y\": 0.013755210675299168, \"post_id\": 4809.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4813, \"umap_x\": -1.2402284145355225, \"umap_y\": 3.5125274658203125, \"post_id\": 4813.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4816, \"umap_x\": -3.5773611068725586, \"umap_y\": 2.137488603591919, \"post_id\": 4816.0, \"author_id\": 372.0, \"id_y\": 372.0, \"author\": \"Connewitzer Autonome\", \"author_group\": \"Other\"}, {\"id_x\": 4819, \"umap_x\": -3.69759464263916, \"umap_y\": -0.43045273423194885, \"post_id\": 4819.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4819, \"umap_x\": -3.69759464263916, \"umap_y\": -0.43045273423194885, \"post_id\": 4819.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4824, \"umap_x\": -0.8176390528678894, \"umap_y\": 1.5636056661605835, \"post_id\": 4824.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4824, \"umap_x\": -0.8176390528678894, \"umap_y\": 1.5636056661605835, \"post_id\": 4824.0, \"author_id\": 373.0, \"id_y\": 373.0, \"author\": \"MAX TABACZYNSKI\", \"author_group\": \"Other\"}, {\"id_x\": 4827, \"umap_x\": 0.4840577244758606, \"umap_y\": 0.3467124402523041, \"post_id\": 4827.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4831, \"umap_x\": -0.45302143692970276, \"umap_y\": 0.031730130314826965, \"post_id\": 4831.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 4833, \"umap_x\": -0.5417402386665344, \"umap_y\": -0.8258935809135437, \"post_id\": 4833.0, \"author_id\": 374.0, \"id_y\": 374.0, \"author\": \"Soli-Orangen AG\", \"author_group\": \"Other\"}, {\"id_x\": 4846, \"umap_x\": -2.4783356189727783, \"umap_y\": -0.6770739555358887, \"post_id\": 4846.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 4846, \"umap_x\": -2.4783356189727783, \"umap_y\": -0.6770739555358887, \"post_id\": 4846.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4850, \"umap_x\": -0.25635161995887756, \"umap_y\": 1.4350624084472656, \"post_id\": 4850.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 4850, \"umap_x\": -0.25635161995887756, \"umap_y\": 1.4350624084472656, \"post_id\": 4850.0, \"author_id\": 377.0, \"id_y\": 377.0, \"author\": \"LVZ-Plus\", \"author_group\": \"Other\"}, {\"id_x\": 4861, \"umap_x\": -0.36814084649086, \"umap_y\": 2.6619930267333984, \"post_id\": 4861.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 4866, \"umap_x\": -1.1336805820465088, \"umap_y\": 4.395520210266113, \"post_id\": 4866.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4870, \"umap_x\": -3.3064053058624268, \"umap_y\": 1.5140461921691895, \"post_id\": 4870.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 4870, \"umap_x\": -3.3064053058624268, \"umap_y\": 1.5140461921691895, \"post_id\": 4870.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4872, \"umap_x\": -2.11462140083313, \"umap_y\": 1.5300867557525635, \"post_id\": 4872.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 4872, \"umap_x\": -2.11462140083313, \"umap_y\": 1.5300867557525635, \"post_id\": 4872.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4874, \"umap_x\": -2.3071625232696533, \"umap_y\": -0.5736676454544067, \"post_id\": 4874.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 4874, \"umap_x\": -2.3071625232696533, \"umap_y\": -0.5736676454544067, \"post_id\": 4874.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4876, \"umap_x\": -2.933025360107422, \"umap_y\": 0.1662941724061966, \"post_id\": 4876.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 4876, \"umap_x\": -2.933025360107422, \"umap_y\": 0.1662941724061966, \"post_id\": 4876.0, \"author_id\": 377.0, \"id_y\": 377.0, \"author\": \"LVZ-Plus\", \"author_group\": \"Other\"}, {\"id_x\": 4878, \"umap_x\": -1.2693308591842651, \"umap_y\": 0.960946798324585, \"post_id\": 4878.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4892, \"umap_x\": -1.3520869016647339, \"umap_y\": 2.0042355060577393, \"post_id\": 4892.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 4894, \"umap_x\": -3.61499285697937, \"umap_y\": -0.7918259501457214, \"post_id\": 4894.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4899, \"umap_x\": -0.9448617100715637, \"umap_y\": 2.813354015350342, \"post_id\": 4899.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4901, \"umap_x\": 0.5039801597595215, \"umap_y\": 0.4251369535923004, \"post_id\": 4901.0, \"author_id\": 378.0, \"id_y\": 378.0, \"author\": \"Rieke Wiemann Taz\", \"author_group\": \"Other\"}, {\"id_x\": 4903, \"umap_x\": -0.27741068601608276, \"umap_y\": 0.3217490315437317, \"post_id\": 4903.0, \"author_id\": 378.0, \"id_y\": 378.0, \"author\": \"Rieke Wiemann Taz\", \"author_group\": \"Other\"}, {\"id_x\": 4905, \"umap_x\": -1.397416353225708, \"umap_y\": 2.2235751152038574, \"post_id\": 4905.0, \"author_id\": 379.0, \"id_y\": 379.0, \"author\": \"fku und ari\", \"author_group\": \"Other\"}, {\"id_x\": 4908, \"umap_x\": 1.4799498319625854, \"umap_y\": 1.7171638011932373, \"post_id\": 4908.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 4908, \"umap_x\": 1.4799498319625854, \"umap_y\": 1.7171638011932373, \"post_id\": 4908.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 4908, \"umap_x\": 1.4799498319625854, \"umap_y\": 1.7171638011932373, \"post_id\": 4908.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4910, \"umap_x\": 0.5952096581459045, \"umap_y\": -0.6644923686981201, \"post_id\": 4910.0, \"author_id\": 381.0, \"id_y\": 381.0, \"author\": \"Christian Franke\", \"author_group\": \"Other\"}, {\"id_x\": 4910, \"umap_x\": 0.5952096581459045, \"umap_y\": -0.6644923686981201, \"post_id\": 4910.0, \"author_id\": 382.0, \"id_y\": 382.0, \"author\": \"Ayke S\\u00fcthoff\", \"author_group\": \"Other\"}, {\"id_x\": 4910, \"umap_x\": 0.5952096581459045, \"umap_y\": -0.6644923686981201, \"post_id\": 4910.0, \"author_id\": 215.0, \"id_y\": 215.0, \"author\": \"MDR AKTUELL\", \"author_group\": \"Other\"}, {\"id_x\": 4912, \"umap_x\": 1.2889273166656494, \"umap_y\": 0.30677929520606995, \"post_id\": 4912.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 4912, \"umap_x\": 1.2889273166656494, \"umap_y\": 0.30677929520606995, \"post_id\": 4912.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 4912, \"umap_x\": 1.2889273166656494, \"umap_y\": 0.30677929520606995, \"post_id\": 4912.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 4914, \"umap_x\": -1.3273836374282837, \"umap_y\": 0.0822078138589859, \"post_id\": 4914.0, \"author_id\": 296.0, \"id_y\": 296.0, \"author\": \"Ekkehard Schulreich\", \"author_group\": \"Other\"}, {\"id_x\": 4914, \"umap_x\": -1.3273836374282837, \"umap_y\": 0.0822078138589859, \"post_id\": 4914.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4916, \"umap_x\": -1.017014980316162, \"umap_y\": 1.8573678731918335, \"post_id\": 4916.0, \"author_id\": 383.0, \"id_y\": 383.0, \"author\": \"Linus-Benedikt Zosel\", \"author_group\": \"Other\"}, {\"id_x\": 4916, \"umap_x\": -1.017014980316162, \"umap_y\": 1.8573678731918335, \"post_id\": 4916.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4918, \"umap_x\": -1.884909987449646, \"umap_y\": -0.49567723274230957, \"post_id\": 4918.0, \"author_id\": 384.0, \"id_y\": 384.0, \"author\": \"Jens Fuge\", \"author_group\": \"Other\"}, {\"id_x\": 4918, \"umap_x\": -1.884909987449646, \"umap_y\": -0.49567723274230957, \"post_id\": 4918.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4920, \"umap_x\": -0.3007177412509918, \"umap_y\": -0.11150352656841278, \"post_id\": 4920.0, \"author_id\": 385.0, \"id_y\": 385.0, \"author\": \"Kathrin Kabelitz\", \"author_group\": \"Other\"}, {\"id_x\": 4920, \"umap_x\": -0.3007177412509918, \"umap_y\": -0.11150352656841278, \"post_id\": 4920.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 4920, \"umap_x\": -0.3007177412509918, \"umap_y\": -0.11150352656841278, \"post_id\": 4920.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4922, \"umap_x\": 0.9242873787879944, \"umap_y\": 0.7622448205947876, \"post_id\": 4922.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 4922, \"umap_x\": 0.9242873787879944, \"umap_y\": 0.7622448205947876, \"post_id\": 4922.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4924, \"umap_x\": -0.8325924277305603, \"umap_y\": -1.4597375392913818, \"post_id\": 4924.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4926, \"umap_x\": -1.9012588262557983, \"umap_y\": 0.9688664078712463, \"post_id\": 4926.0, \"author_id\": 383.0, \"id_y\": 383.0, \"author\": \"Linus-Benedikt Zosel\", \"author_group\": \"Other\"}, {\"id_x\": 4926, \"umap_x\": -1.9012588262557983, \"umap_y\": 0.9688664078712463, \"post_id\": 4926.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4928, \"umap_x\": 0.04896741732954979, \"umap_y\": 3.706063747406006, \"post_id\": 4928.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 4956, \"umap_x\": -0.34702590107917786, \"umap_y\": 4.171842575073242, \"post_id\": 4956.0, \"author_id\": 312.0, \"id_y\": 312.0, \"author\": \"Autonome Gruppen\", \"author_group\": \"Other\"}, {\"id_x\": 4963, \"umap_x\": -3.157961130142212, \"umap_y\": 1.5284329652786255, \"post_id\": 4963.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 4963, \"umap_x\": -3.157961130142212, \"umap_y\": 1.5284329652786255, \"post_id\": 4963.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4965, \"umap_x\": -3.600635051727295, \"umap_y\": -0.8677808046340942, \"post_id\": 4965.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 4971, \"umap_x\": -3.8349084854125977, \"umap_y\": -0.9755525588989258, \"post_id\": 4971.0, \"author_id\": 387.0, \"id_y\": 387.0, \"author\": \"Von Andreas Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 4971, \"umap_x\": -3.8349084854125977, \"umap_y\": -0.9755525588989258, \"post_id\": 4971.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 4979, \"umap_x\": 0.2333553284406662, \"umap_y\": 3.648951530456543, \"post_id\": 4979.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 4982, \"umap_x\": 0.1646338552236557, \"umap_y\": 2.8043363094329834, \"post_id\": 4982.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 4985, \"umap_x\": -2.9730188846588135, \"umap_y\": 0.2069379836320877, \"post_id\": 4985.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 4988, \"umap_x\": -2.611520290374756, \"umap_y\": 3.265331745147705, \"post_id\": 4988.0, \"author_id\": 388.0, \"id_y\": 388.0, \"author\": \"FAZ\", \"author_group\": \"Other\"}, {\"id_x\": 4988, \"umap_x\": -2.611520290374756, \"umap_y\": 3.265331745147705, \"post_id\": 4988.0, \"author_id\": 389.0, \"id_y\": 389.0, \"author\": \"Alexander J\\u00fcrgs\", \"author_group\": \"Other\"}, {\"id_x\": 4990, \"umap_x\": -2.401341199874878, \"umap_y\": 3.6693036556243896, \"post_id\": 4990.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 4992, \"umap_x\": -1.471411108970642, \"umap_y\": 1.7272779941558838, \"post_id\": 4992.0, \"author_id\": 390.0, \"id_y\": 390.0, \"author\": \"Karl Keim\", \"author_group\": \"Other\"}, {\"id_x\": 4992, \"umap_x\": -1.471411108970642, \"umap_y\": 1.7272779941558838, \"post_id\": 4992.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 4996, \"umap_x\": -2.2210304737091064, \"umap_y\": 4.470307350158691, \"post_id\": 4996.0, \"author_id\": 391.0, \"id_y\": 391.0, \"author\": \"Soligruppe f\\u00fcr Gefangene\", \"author_group\": \"Other\"}, {\"id_x\": 5014, \"umap_x\": 0.0749872475862503, \"umap_y\": 0.394461065530777, \"post_id\": 5014.0, \"author_id\": 392.0, \"id_y\": 392.0, \"author\": \"Zeit-online\", \"author_group\": \"Other\"}, {\"id_x\": 5016, \"umap_x\": -1.1480456590652466, \"umap_y\": 0.3894580900669098, \"post_id\": 5016.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5019, \"umap_x\": -1.4507023096084595, \"umap_y\": 5.1432390213012695, \"post_id\": 5019.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5025, \"umap_x\": -2.122222661972046, \"umap_y\": 1.4935634136199951, \"post_id\": 5025.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 5025, \"umap_x\": -2.122222661972046, \"umap_y\": 1.4935634136199951, \"post_id\": 5025.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5028, \"umap_x\": -0.6517844200134277, \"umap_y\": 1.9363795518875122, \"post_id\": 5028.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 5028, \"umap_x\": -0.6517844200134277, \"umap_y\": 1.9363795518875122, \"post_id\": 5028.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5030, \"umap_x\": -2.3358497619628906, \"umap_y\": 1.034977912902832, \"post_id\": 5030.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5032, \"umap_x\": -2.4633917808532715, \"umap_y\": 0.7470031976699829, \"post_id\": 5032.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5034, \"umap_x\": -1.1973456144332886, \"umap_y\": 2.602534294128418, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5038, \"umap_x\": -1.6092361211776733, \"umap_y\": 2.9944965839385986, \"post_id\": 5038.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5048, \"umap_x\": 1.1879431009292603, \"umap_y\": 3.9708969593048096, \"post_id\": 5048.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 5051, \"umap_x\": -0.14206261932849884, \"umap_y\": 1.4006199836730957, \"post_id\": 5051.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5051, \"umap_x\": -0.14206261932849884, \"umap_y\": 1.4006199836730957, \"post_id\": 5051.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5053, \"umap_x\": 1.4883685111999512, \"umap_y\": 1.7246153354644775, \"post_id\": 5053.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5053, \"umap_x\": 1.4883685111999512, \"umap_y\": 1.7246153354644775, \"post_id\": 5053.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5055, \"umap_x\": -3.582406759262085, \"umap_y\": -0.1261962652206421, \"post_id\": 5055.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 5055, \"umap_x\": -3.582406759262085, \"umap_y\": -0.1261962652206421, \"post_id\": 5055.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5057, \"umap_x\": -3.001408576965332, \"umap_y\": 0.21779735386371613, \"post_id\": 5057.0, \"author_id\": 393.0, \"id_y\": 393.0, \"author\": \"Sebastian Weiermann\", \"author_group\": \"Other\"}, {\"id_x\": 5065, \"umap_x\": -1.0274502038955688, \"umap_y\": 1.7739191055297852, \"post_id\": 5065.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5065, \"umap_x\": -1.0274502038955688, \"umap_y\": 1.7739191055297852, \"post_id\": 5065.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 5065, \"umap_x\": -1.0274502038955688, \"umap_y\": 1.7739191055297852, \"post_id\": 5065.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5067, \"umap_x\": -0.609013557434082, \"umap_y\": 1.658057451248169, \"post_id\": 5067.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5067, \"umap_x\": -0.609013557434082, \"umap_y\": 1.658057451248169, \"post_id\": 5067.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5069, \"umap_x\": -2.6750378608703613, \"umap_y\": -1.6351492404937744, \"post_id\": 5069.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5071, \"umap_x\": 1.1809488534927368, \"umap_y\": -0.14059565961360931, \"post_id\": 5071.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 5071, \"umap_x\": 1.1809488534927368, \"umap_y\": -0.14059565961360931, \"post_id\": 5071.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5073, \"umap_x\": -1.9201931953430176, \"umap_y\": -0.5394113063812256, \"post_id\": 5073.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 5073, \"umap_x\": -1.9201931953430176, \"umap_y\": -0.5394113063812256, \"post_id\": 5073.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5075, \"umap_x\": 1.4274457693099976, \"umap_y\": 3.68361496925354, \"post_id\": 5075.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5075, \"umap_x\": 1.4274457693099976, \"umap_y\": 3.68361496925354, \"post_id\": 5075.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5077, \"umap_x\": -0.2606474459171295, \"umap_y\": -0.726580798625946, \"post_id\": 5077.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 5077, \"umap_x\": -0.2606474459171295, \"umap_y\": -0.726580798625946, \"post_id\": 5077.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5080, \"umap_x\": 0.3699059784412384, \"umap_y\": 0.056280042976140976, \"post_id\": 5080.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5082, \"umap_x\": -4.559360980987549, \"umap_y\": 4.5303263664245605, \"post_id\": 5082.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5084, \"umap_x\": -1.0694730281829834, \"umap_y\": -1.088254451751709, \"post_id\": 5084.0, \"author_id\": 159.0, \"id_y\": 159.0, \"author\": \"Autonome Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 5093, \"umap_x\": -0.6873599290847778, \"umap_y\": 5.085785865783691, \"post_id\": 5093.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5099, \"umap_x\": -0.6772706508636475, \"umap_y\": 0.1605364978313446, \"post_id\": 5099.0, \"author_id\": 394.0, \"id_y\": 394.0, \"author\": \"Leipziger Internet zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 5109, \"umap_x\": 0.19120483100414276, \"umap_y\": 2.7760331630706787, \"post_id\": 5109.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5117, \"umap_x\": -0.7298569679260254, \"umap_y\": 2.1451096534729004, \"post_id\": 5117.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 5122, \"umap_x\": -1.8263746500015259, \"umap_y\": 2.027862787246704, \"post_id\": 5122.0, \"author_id\": 30.0, \"id_y\": 30.0, \"author\": \"Neues Deutschland\", \"author_group\": \"Other\"}, {\"id_x\": 5128, \"umap_x\": -1.5432075262069702, \"umap_y\": 0.08964530378580093, \"post_id\": 5128.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 5133, \"umap_x\": -2.635204792022705, \"umap_y\": 0.3254743814468384, \"post_id\": 5133.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 5136, \"umap_x\": 0.07885652780532837, \"umap_y\": 2.722322702407837, \"post_id\": 5136.0, \"author_id\": 395.0, \"id_y\": 395.0, \"author\": \"Kristina Auer\", \"author_group\": \"Other\"}, {\"id_x\": 5136, \"umap_x\": 0.07885652780532837, \"umap_y\": 2.722322702407837, \"post_id\": 5136.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5138, \"umap_x\": -0.5905576348304749, \"umap_y\": 1.8412904739379883, \"post_id\": 5138.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5138, \"umap_x\": -0.5905576348304749, \"umap_y\": 1.8412904739379883, \"post_id\": 5138.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5140, \"umap_x\": -1.397210955619812, \"umap_y\": 1.7249618768692017, \"post_id\": 5140.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 5143, \"umap_x\": -0.6619595885276794, \"umap_y\": 0.5107923746109009, \"post_id\": 5143.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5149, \"umap_x\": -2.8961098194122314, \"umap_y\": -0.9995109438896179, \"post_id\": 5149.0, \"author_id\": 396.0, \"id_y\": 396.0, \"author\": \"Staatsanwaltschaft Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5149, \"umap_x\": -2.8961098194122314, \"umap_y\": -0.9995109438896179, \"post_id\": 5149.0, \"author_id\": 397.0, \"id_y\": 397.0, \"author\": \"LKA Sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 5151, \"umap_x\": 1.257628083229065, \"umap_y\": -0.0161901842802763, \"post_id\": 5151.0, \"author_id\": 398.0, \"id_y\": 398.0, \"author\": \"Franziska von Werder\", \"author_group\": \"Other\"}, {\"id_x\": 5151, \"umap_x\": 1.257628083229065, \"umap_y\": -0.0161901842802763, \"post_id\": 5151.0, \"author_id\": 399.0, \"id_y\": 399.0, \"author\": \"Anna Hoffmann\", \"author_group\": \"Other\"}, {\"id_x\": 5151, \"umap_x\": 1.257628083229065, \"umap_y\": -0.0161901842802763, \"post_id\": 5151.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5153, \"umap_x\": -1.929471492767334, \"umap_y\": 3.3776333332061768, \"post_id\": 5153.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5158, \"umap_x\": -0.3716265559196472, \"umap_y\": -1.8060442209243774, \"post_id\": 5158.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 5158, \"umap_x\": -0.3716265559196472, \"umap_y\": -1.8060442209243774, \"post_id\": 5158.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5160, \"umap_x\": -2.1968584060668945, \"umap_y\": -1.935445785522461, \"post_id\": 5160.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 5160, \"umap_x\": -2.1968584060668945, \"umap_y\": -1.935445785522461, \"post_id\": 5160.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5162, \"umap_x\": -1.3112472295761108, \"umap_y\": 1.8906232118606567, \"post_id\": 5162.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5169, \"umap_x\": -1.7907605171203613, \"umap_y\": 1.7744603157043457, \"post_id\": 5169.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5171, \"umap_x\": -2.8578481674194336, \"umap_y\": 2.1577298641204834, \"post_id\": 5171.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5183, \"umap_x\": -2.659975528717041, \"umap_y\": 0.06672035902738571, \"post_id\": 5183.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 5183, \"umap_x\": -2.659975528717041, \"umap_y\": 0.06672035902738571, \"post_id\": 5183.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5185, \"umap_x\": -2.177510976791382, \"umap_y\": 2.705911159515381, \"post_id\": 5185.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 5185, \"umap_x\": -2.177510976791382, \"umap_y\": 2.705911159515381, \"post_id\": 5185.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5191, \"umap_x\": -1.1345500946044922, \"umap_y\": 2.0146329402923584, \"post_id\": 5191.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 5194, \"umap_x\": 0.2104736566543579, \"umap_y\": 3.8291122913360596, \"post_id\": 5194.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5200, \"umap_x\": 0.0035110805183649063, \"umap_y\": 3.875164031982422, \"post_id\": 5200.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5206, \"umap_x\": -1.1350913047790527, \"umap_y\": 1.8533321619033813, \"post_id\": 5206.0, \"author_id\": 400.0, \"id_y\": 400.0, \"author\": \"LAURA MEINFELDER\", \"author_group\": \"Other\"}, {\"id_x\": 5206, \"umap_x\": -1.1350913047790527, \"umap_y\": 1.8533321619033813, \"post_id\": 5206.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 5209, \"umap_x\": 1.062098503112793, \"umap_y\": -0.06910969316959381, \"post_id\": 5209.0, \"author_id\": 170.0, \"id_y\": 170.0, \"author\": \"Johannes P\\u00f6hlandt\", \"author_group\": \"Other\"}, {\"id_x\": 5209, \"umap_x\": 1.062098503112793, \"umap_y\": -0.06910969316959381, \"post_id\": 5209.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5211, \"umap_x\": 0.5368820428848267, \"umap_y\": 0.43274638056755066, \"post_id\": 5211.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 5211, \"umap_x\": 0.5368820428848267, \"umap_y\": 0.43274638056755066, \"post_id\": 5211.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5217, \"umap_x\": 0.28874698281288147, \"umap_y\": 2.878488302230835, \"post_id\": 5217.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5221, \"umap_x\": 0.9724432229995728, \"umap_y\": 0.9386475086212158, \"post_id\": 5221.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 5221, \"umap_x\": 0.9724432229995728, \"umap_y\": 0.9386475086212158, \"post_id\": 5221.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5230, \"umap_x\": -1.3912062644958496, \"umap_y\": 0.7817062735557556, \"post_id\": 5230.0, \"author_id\": 262.0, \"id_y\": 262.0, \"author\": \"Nicole Eyberger\", \"author_group\": \"Other\"}, {\"id_x\": 5230, \"umap_x\": -1.3912062644958496, \"umap_y\": 0.7817062735557556, \"post_id\": 5230.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5232, \"umap_x\": -1.801958441734314, \"umap_y\": -1.2003200054168701, \"post_id\": 5232.0, \"author_id\": 401.0, \"id_y\": 401.0, \"author\": \"Gruppe oppositioneller Erzieher\", \"author_group\": \"Other\"}, {\"id_x\": 5246, \"umap_x\": -1.5278245210647583, \"umap_y\": 3.3036117553710938, \"post_id\": 5246.0, \"author_id\": 402.0, \"id_y\": 402.0, \"author\": \"Alfredo Cospito\", \"author_group\": \"Other\"}, {\"id_x\": 5249, \"umap_x\": 0.7508729100227356, \"umap_y\": 2.746635913848877, \"post_id\": 5249.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5252, \"umap_x\": -3.368440866470337, \"umap_y\": 2.0596532821655273, \"post_id\": 5252.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 5252, \"umap_x\": -3.368440866470337, \"umap_y\": 2.0596532821655273, \"post_id\": 5252.0, \"author_id\": 316.0, \"id_y\": 316.0, \"author\": \"Kommunistische Gruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5256, \"umap_x\": -2.724404811859131, \"umap_y\": 3.8282268047332764, \"post_id\": 5256.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5259, \"umap_x\": -1.7446038722991943, \"umap_y\": -0.21238476037979126, \"post_id\": 5259.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 5259, \"umap_x\": -1.7446038722991943, \"umap_y\": -0.21238476037979126, \"post_id\": 5259.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5261, \"umap_x\": -2.0675454139709473, \"umap_y\": -0.6568921208381653, \"post_id\": 5261.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 5263, \"umap_x\": 0.6204601526260376, \"umap_y\": -0.4276438355445862, \"post_id\": 5263.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 5263, \"umap_x\": 0.6204601526260376, \"umap_y\": -0.4276438355445862, \"post_id\": 5263.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5265, \"umap_x\": -3.496079921722412, \"umap_y\": 3.500551462173462, \"post_id\": 5265.0, \"author_id\": 403.0, \"id_y\": 403.0, \"author\": \"Anny Adler\", \"author_group\": \"Other\"}, {\"id_x\": 5267, \"umap_x\": -0.45221108198165894, \"umap_y\": 1.7824264764785767, \"post_id\": 5267.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5269, \"umap_x\": -0.7492879033088684, \"umap_y\": 2.976590871810913, \"post_id\": 5269.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5272, \"umap_x\": 0.09853138029575348, \"umap_y\": 3.8271214962005615, \"post_id\": 5272.0, \"author_id\": 249.0, \"id_y\": 249.0, \"author\": \"Antirepressionsplattform Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 5285, \"umap_x\": -0.4025990664958954, \"umap_y\": 3.934422731399536, \"post_id\": 5285.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5288, \"umap_x\": -0.7277758717536926, \"umap_y\": 1.9581360816955566, \"post_id\": 5288.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5290, \"umap_x\": -0.46384385228157043, \"umap_y\": 0.6437286138534546, \"post_id\": 5290.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 5292, \"umap_x\": -4.440426349639893, \"umap_y\": 4.447444915771484, \"post_id\": 5292.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5296, \"umap_x\": -1.9485832452774048, \"umap_y\": 0.5234810709953308, \"post_id\": 5296.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 5303, \"umap_x\": -3.8301236629486084, \"umap_y\": 1.2514902353286743, \"post_id\": 5303.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5305, \"umap_x\": 0.05496327579021454, \"umap_y\": -0.023134427145123482, \"post_id\": 5305.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5305, \"umap_x\": 0.05496327579021454, \"umap_y\": -0.023134427145123482, \"post_id\": 5305.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 5305, \"umap_x\": 0.05496327579021454, \"umap_y\": -0.023134427145123482, \"post_id\": 5305.0, \"author_id\": 385.0, \"id_y\": 385.0, \"author\": \"Kathrin Kabelitz\", \"author_group\": \"Other\"}, {\"id_x\": 5305, \"umap_x\": 0.05496327579021454, \"umap_y\": -0.023134427145123482, \"post_id\": 5305.0, \"author_id\": 404.0, \"id_y\": 404.0, \"author\": \"Hanna Gerwig\", \"author_group\": \"Other\"}, {\"id_x\": 5309, \"umap_x\": 0.7624610066413879, \"umap_y\": 1.9873186349868774, \"post_id\": 5309.0, \"author_id\": 307.0, \"id_y\": 307.0, \"author\": \"Jan Sternberg\", \"author_group\": \"Other\"}, {\"id_x\": 5309, \"umap_x\": 0.7624610066413879, \"umap_y\": 1.9873186349868774, \"post_id\": 5309.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5315, \"umap_x\": -1.8938918113708496, \"umap_y\": 0.30621880292892456, \"post_id\": 5315.0, \"author_id\": 405.0, \"id_y\": 405.0, \"author\": \"A-Radio Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 5318, \"umap_x\": -3.784402847290039, \"umap_y\": 4.515475273132324, \"post_id\": 5318.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5323, \"umap_x\": -3.9033567905426025, \"umap_y\": 1.2706327438354492, \"post_id\": 5323.0, \"author_id\": 406.0, \"id_y\": 406.0, \"author\": \"BERNHARD SCHILZ\", \"author_group\": \"Other\"}, {\"id_x\": 5323, \"umap_x\": -3.9033567905426025, \"umap_y\": 1.2706327438354492, \"post_id\": 5323.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 5327, \"umap_x\": 0.7523784041404724, \"umap_y\": 0.946560800075531, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5330, \"umap_x\": 0.9074738025665283, \"umap_y\": 0.8681597113609314, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5333, \"umap_x\": -3.369246006011963, \"umap_y\": 2.4712870121002197, \"post_id\": 5333.0, \"author_id\": 407.0, \"id_y\": 407.0, \"author\": \"Freund_innen der Freiheit\", \"author_group\": \"Other\"}, {\"id_x\": 5335, \"umap_x\": -1.1195123195648193, \"umap_y\": -0.30590763688087463, \"post_id\": 5335.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 5339, \"umap_x\": -0.7814827561378479, \"umap_y\": 2.0212106704711914, \"post_id\": 5339.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5342, \"umap_x\": -2.539177894592285, \"umap_y\": 2.319985866546631, \"post_id\": 5342.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 5345, \"umap_x\": -2.677133083343506, \"umap_y\": -1.7810417413711548, \"post_id\": 5345.0, \"author_id\": 240.0, \"id_y\": 240.0, \"author\": \"Nico Zei\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 5359, \"umap_x\": 0.4170677959918976, \"umap_y\": 0.9546421766281128, \"post_id\": 5359.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5363, \"umap_x\": -2.1284797191619873, \"umap_y\": 4.02673864364624, \"post_id\": 5363.0, \"author_id\": 408.0, \"id_y\": 408.0, \"author\": \"IL-Debattenblog\", \"author_group\": \"Other\"}, {\"id_x\": 5367, \"umap_x\": -1.8221957683563232, \"umap_y\": 0.6012153625488281, \"post_id\": 5367.0, \"author_id\": 409.0, \"id_y\": 409.0, \"author\": \"einige Bewohner\", \"author_group\": \"Other\"}, {\"id_x\": 5372, \"umap_x\": -3.0978963375091553, \"umap_y\": 0.29883134365081787, \"post_id\": 5372.0, \"author_id\": 410.0, \"id_y\": 410.0, \"author\": \"Kampf/Tanz Fest Komitee\", \"author_group\": \"Other\"}, {\"id_x\": 5377, \"umap_x\": -1.2576112747192383, \"umap_y\": -1.61615788936615, \"post_id\": 5377.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 5377, \"umap_x\": -1.2576112747192383, \"umap_y\": -1.61615788936615, \"post_id\": 5377.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5379, \"umap_x\": -3.9499175548553467, \"umap_y\": -0.5611858367919922, \"post_id\": 5379.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 5379, \"umap_x\": -3.9499175548553467, \"umap_y\": -0.5611858367919922, \"post_id\": 5379.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5381, \"umap_x\": -1.73848557472229, \"umap_y\": -0.9139725565910339, \"post_id\": 5381.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 5381, \"umap_x\": -1.73848557472229, \"umap_y\": -0.9139725565910339, \"post_id\": 5381.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5383, \"umap_x\": -1.2969695329666138, \"umap_y\": 3.3166205883026123, \"post_id\": 5383.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5391, \"umap_x\": -0.05122024938464165, \"umap_y\": 2.760725259780884, \"post_id\": 5391.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 5391, \"umap_x\": -0.05122024938464165, \"umap_y\": 2.760725259780884, \"post_id\": 5391.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5393, \"umap_x\": -1.6427812576293945, \"umap_y\": 1.79519522190094, \"post_id\": 5393.0, \"author_id\": 413.0, \"id_y\": 413.0, \"author\": \"MICHAEL KLUG\", \"author_group\": \"Other\"}, {\"id_x\": 5393, \"umap_x\": -1.6427812576293945, \"umap_y\": 1.79519522190094, \"post_id\": 5393.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 5405, \"umap_x\": -1.589531421661377, \"umap_y\": 1.6080806255340576, \"post_id\": 5405.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 5405, \"umap_x\": -1.589531421661377, \"umap_y\": 1.6080806255340576, \"post_id\": 5405.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 5407, \"umap_x\": -1.964880347251892, \"umap_y\": 2.5623939037323, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5412, \"umap_x\": -1.215166687965393, \"umap_y\": 2.089319944381714, \"post_id\": 5412.0, \"author_id\": 414.0, \"id_y\": 414.0, \"author\": \"tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 5417, \"umap_x\": 0.014992360956966877, \"umap_y\": 2.02363920211792, \"post_id\": 5417.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5423, \"umap_x\": -2.960796356201172, \"umap_y\": -1.4208866357803345, \"post_id\": 5423.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 5423, \"umap_x\": -2.960796356201172, \"umap_y\": -1.4208866357803345, \"post_id\": 5423.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5427, \"umap_x\": 0.676385760307312, \"umap_y\": 0.9669711589813232, \"post_id\": 5427.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5429, \"umap_x\": -0.3501948118209839, \"umap_y\": 0.5120669007301331, \"post_id\": 5429.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5431, \"umap_x\": -1.2717686891555786, \"umap_y\": 2.092258930206299, \"post_id\": 5431.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 5433, \"umap_x\": -4.280315399169922, \"umap_y\": -0.4218452274799347, \"post_id\": 5433.0, \"author_id\": 415.0, \"id_y\": 415.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 5433, \"umap_x\": -4.280315399169922, \"umap_y\": -0.4218452274799347, \"post_id\": 5433.0, \"author_id\": 416.0, \"id_y\": 416.0, \"author\": \"Jan M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 5435, \"umap_x\": -1.2532522678375244, \"umap_y\": 5.194589138031006, \"post_id\": 5435.0, \"author_id\": 417.0, \"id_y\": 417.0, \"author\": \"Krish Krise\", \"author_group\": \"Other\"}, {\"id_x\": 5438, \"umap_x\": 0.060850441455841064, \"umap_y\": -1.6977436542510986, \"post_id\": 5438.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 5438, \"umap_x\": 0.060850441455841064, \"umap_y\": -1.6977436542510986, \"post_id\": 5438.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5440, \"umap_x\": -2.602952003479004, \"umap_y\": -1.6048036813735962, \"post_id\": 5440.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5442, \"umap_x\": 1.2389031648635864, \"umap_y\": 3.941467761993408, \"post_id\": 5442.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5447, \"umap_x\": -0.3685380816459656, \"umap_y\": 1.940556526184082, \"post_id\": 5447.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5447, \"umap_x\": -0.3685380816459656, \"umap_y\": 1.940556526184082, \"post_id\": 5447.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5449, \"umap_x\": -1.0140374898910522, \"umap_y\": 1.8530592918395996, \"post_id\": 5449.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5449, \"umap_x\": -1.0140374898910522, \"umap_y\": 1.8530592918395996, \"post_id\": 5449.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5455, \"umap_x\": -2.857090711593628, \"umap_y\": 5.595016002655029, \"post_id\": 5455.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5458, \"umap_x\": 0.668559193611145, \"umap_y\": 4.0519561767578125, \"post_id\": 5458.0, \"author_id\": 418.0, \"id_y\": 418.0, \"author\": \"Rote Hilfe\", \"author_group\": \"Other\"}, {\"id_x\": 5463, \"umap_x\": 0.35262808203697205, \"umap_y\": 2.475543975830078, \"post_id\": 5463.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5463, \"umap_x\": 0.35262808203697205, \"umap_y\": 2.475543975830078, \"post_id\": 5463.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5465, \"umap_x\": -3.6270742416381836, \"umap_y\": 2.4293031692504883, \"post_id\": 5465.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 5465, \"umap_x\": -3.6270742416381836, \"umap_y\": 2.4293031692504883, \"post_id\": 5465.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5469, \"umap_x\": -0.15458393096923828, \"umap_y\": 2.7699084281921387, \"post_id\": 5469.0, \"author_id\": 419.0, \"id_y\": 419.0, \"author\": \"Author\", \"author_group\": \"Other\"}, {\"id_x\": 5472, \"umap_x\": -1.4102705717086792, \"umap_y\": 2.405028820037842, \"post_id\": 5472.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5475, \"umap_x\": 0.47203129529953003, \"umap_y\": 1.7817504405975342, \"post_id\": 5475.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 5475, \"umap_x\": 0.47203129529953003, \"umap_y\": 1.7817504405975342, \"post_id\": 5475.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5477, \"umap_x\": -4.293184280395508, \"umap_y\": -0.4077346622943878, \"post_id\": 5477.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 5477, \"umap_x\": -4.293184280395508, \"umap_y\": -0.4077346622943878, \"post_id\": 5477.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5479, \"umap_x\": 1.5291153192520142, \"umap_y\": 1.7113184928894043, \"post_id\": 5479.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5479, \"umap_x\": 1.5291153192520142, \"umap_y\": 1.7113184928894043, \"post_id\": 5479.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5479, \"umap_x\": 1.5291153192520142, \"umap_y\": 1.7113184928894043, \"post_id\": 5479.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 5479, \"umap_x\": 1.5291153192520142, \"umap_y\": 1.7113184928894043, \"post_id\": 5479.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5481, \"umap_x\": -1.2053427696228027, \"umap_y\": 3.0092766284942627, \"post_id\": 5481.0, \"author_id\": 420.0, \"id_y\": 420.0, \"author\": \"EA\", \"author_group\": \"Other\"}, {\"id_x\": 5484, \"umap_x\": -0.8875640630722046, \"umap_y\": 0.00600994098931551, \"post_id\": 5484.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 5484, \"umap_x\": -0.8875640630722046, \"umap_y\": 0.00600994098931551, \"post_id\": 5484.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5499, \"umap_x\": -0.2964612543582916, \"umap_y\": 2.783066749572754, \"post_id\": 5499.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5499, \"umap_x\": -0.2964612543582916, \"umap_y\": 2.783066749572754, \"post_id\": 5499.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5501, \"umap_x\": 0.02873888798058033, \"umap_y\": -1.6808490753173828, \"post_id\": 5501.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 5503, \"umap_x\": -0.7012950778007507, \"umap_y\": 1.4901032447814941, \"post_id\": 5503.0, \"author_id\": 421.0, \"id_y\": 421.0, \"author\": \"Leo Maxim Schauer\", \"author_group\": \"Other\"}, {\"id_x\": 5503, \"umap_x\": -0.7012950778007507, \"umap_y\": 1.4901032447814941, \"post_id\": 5503.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5508, \"umap_x\": 0.06871317327022552, \"umap_y\": -1.684221863746643, \"post_id\": 5508.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5508, \"umap_x\": 0.06871317327022552, \"umap_y\": -1.684221863746643, \"post_id\": 5508.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 5508, \"umap_x\": 0.06871317327022552, \"umap_y\": -1.684221863746643, \"post_id\": 5508.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5510, \"umap_x\": -0.7953763008117676, \"umap_y\": 1.7715262174606323, \"post_id\": 5510.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 5513, \"umap_x\": -0.6095064282417297, \"umap_y\": -0.3611672520637512, \"post_id\": 5513.0, \"author_id\": 422.0, \"id_y\": 422.0, \"author\": \"Solidatity assembly\", \"author_group\": \"Other\"}, {\"id_x\": 5516, \"umap_x\": -1.7587575912475586, \"umap_y\": 0.6891642212867737, \"post_id\": 5516.0, \"author_id\": 256.0, \"id_y\": 256.0, \"author\": \"Thomas Haegeler\", \"author_group\": \"Other\"}, {\"id_x\": 5516, \"umap_x\": -1.7587575912475586, \"umap_y\": 0.6891642212867737, \"post_id\": 5516.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5519, \"umap_x\": -4.487432479858398, \"umap_y\": 4.3274760246276855, \"post_id\": 5519.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5522, \"umap_x\": 0.2535368502140045, \"umap_y\": 2.51533579826355, \"post_id\": 5522.0, \"author_id\": 423.0, \"id_y\": 423.0, \"author\": \"Tobias E\\u00dfer\", \"author_group\": \"Other\"}, {\"id_x\": 5524, \"umap_x\": -2.004167079925537, \"umap_y\": 4.392513275146484, \"post_id\": 5524.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5527, \"umap_x\": -2.1518874168395996, \"umap_y\": -1.8037545680999756, \"post_id\": 5527.0, \"author_id\": 424.0, \"id_y\": 424.0, \"author\": \"Provisorischen anarchistischen Antikriegsrats Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 5529, \"umap_x\": -1.0139803886413574, \"umap_y\": 3.5066816806793213, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5532, \"umap_x\": -2.517183542251587, \"umap_y\": 3.6396243572235107, \"post_id\": 5532.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5534, \"umap_x\": 0.17819100618362427, \"umap_y\": -1.5475977659225464, \"post_id\": 5534.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5536, \"umap_x\": -1.3190946578979492, \"umap_y\": 5.190593719482422, \"post_id\": 5536.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5555, \"umap_x\": -1.7529964447021484, \"umap_y\": 2.227766990661621, \"post_id\": 5555.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5558, \"umap_x\": 0.057689446955919266, \"umap_y\": 3.598694324493408, \"post_id\": 5558.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5562, \"umap_x\": -1.8501845598220825, \"umap_y\": 2.6597254276275635, \"post_id\": 5562.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5567, \"umap_x\": -1.7429555654525757, \"umap_y\": 1.628655195236206, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5573, \"umap_x\": -1.6717841625213623, \"umap_y\": 0.6530618071556091, \"post_id\": 5573.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 5573, \"umap_x\": -1.6717841625213623, \"umap_y\": 0.6530618071556091, \"post_id\": 5573.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5575, \"umap_x\": -0.4998927116394043, \"umap_y\": 1.4896010160446167, \"post_id\": 5575.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 5575, \"umap_x\": -0.4998927116394043, \"umap_y\": 1.4896010160446167, \"post_id\": 5575.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 5577, \"umap_x\": -0.016248976811766624, \"umap_y\": 1.107408046722412, \"post_id\": 5577.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 5577, \"umap_x\": -0.016248976811766624, \"umap_y\": 1.107408046722412, \"post_id\": 5577.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5579, \"umap_x\": -3.8961827754974365, \"umap_y\": 1.2174502611160278, \"post_id\": 5579.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 5579, \"umap_x\": -3.8961827754974365, \"umap_y\": 1.2174502611160278, \"post_id\": 5579.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5582, \"umap_x\": 0.7609761953353882, \"umap_y\": 0.904671311378479, \"post_id\": 5582.0, \"author_id\": 426.0, \"id_y\": 426.0, \"author\": \"Geraldine Oetken\", \"author_group\": \"Other\"}, {\"id_x\": 5582, \"umap_x\": 0.7609761953353882, \"umap_y\": 0.904671311378479, \"post_id\": 5582.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5584, \"umap_x\": 0.16114287078380585, \"umap_y\": -1.5389612913131714, \"post_id\": 5584.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5584, \"umap_x\": 0.16114287078380585, \"umap_y\": -1.5389612913131714, \"post_id\": 5584.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5586, \"umap_x\": -1.2264827489852905, \"umap_y\": 1.833276629447937, \"post_id\": 5586.0, \"author_id\": 427.0, \"id_y\": 427.0, \"author\": \"J\\u00fcrgen Becker\", \"author_group\": \"Other\"}, {\"id_x\": 5586, \"umap_x\": -1.2264827489852905, \"umap_y\": 1.833276629447937, \"post_id\": 5586.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5588, \"umap_x\": -0.18372970819473267, \"umap_y\": -0.42799732089042664, \"post_id\": 5588.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 5588, \"umap_x\": -0.18372970819473267, \"umap_y\": -0.42799732089042664, \"post_id\": 5588.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5590, \"umap_x\": -0.032714564353227615, \"umap_y\": 1.135589599609375, \"post_id\": 5590.0, \"author_id\": 428.0, \"id_y\": 428.0, \"author\": \"Sylvia Miskowiec\", \"author_group\": \"Other\"}, {\"id_x\": 5590, \"umap_x\": -0.032714564353227615, \"umap_y\": 1.135589599609375, \"post_id\": 5590.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5592, \"umap_x\": -0.3177981376647949, \"umap_y\": 0.678857684135437, \"post_id\": 5592.0, \"author_id\": 429.0, \"id_y\": 429.0, \"author\": \"Katharina Leuoth\", \"author_group\": \"Other\"}, {\"id_x\": 5592, \"umap_x\": -0.3177981376647949, \"umap_y\": 0.678857684135437, \"post_id\": 5592.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5594, \"umap_x\": -4.467264175415039, \"umap_y\": 4.439781665802002, \"post_id\": 5594.0, \"author_id\": 430.0, \"id_y\": 430.0, \"author\": \"Internationale Initiative\", \"author_group\": \"Other\"}, {\"id_x\": 5606, \"umap_x\": 0.0030965213663876057, \"umap_y\": 0.3651352524757385, \"post_id\": 5606.0, \"author_id\": 431.0, \"id_y\": 431.0, \"author\": \"Alexander Christoph\", \"author_group\": \"Other\"}, {\"id_x\": 5606, \"umap_x\": 0.0030965213663876057, \"umap_y\": 0.3651352524757385, \"post_id\": 5606.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 5608, \"umap_x\": -2.3262007236480713, \"umap_y\": 0.7853661775588989, \"post_id\": 5608.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 5608, \"umap_x\": -2.3262007236480713, \"umap_y\": 0.7853661775588989, \"post_id\": 5608.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5611, \"umap_x\": -1.7873172760009766, \"umap_y\": 1.2433109283447266, \"post_id\": 5611.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5613, \"umap_x\": -0.637782633304596, \"umap_y\": 2.920214891433716, \"post_id\": 5613.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5616, \"umap_x\": -0.7106974720954895, \"umap_y\": 1.922717809677124, \"post_id\": 5616.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5618, \"umap_x\": -0.7665128707885742, \"umap_y\": 1.9283345937728882, \"post_id\": 5618.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5620, \"umap_x\": -0.5635015368461609, \"umap_y\": 3.944786787033081, \"post_id\": 5620.0, \"author_id\": 432.0, \"id_y\": 432.0, \"author\": \"AVL\", \"author_group\": \"Other\"}, {\"id_x\": 5620, \"umap_x\": -0.5635015368461609, \"umap_y\": 3.944786787033081, \"post_id\": 5620.0, \"author_id\": 433.0, \"id_y\": 433.0, \"author\": \"Antifaschistische Vernetzung Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5623, \"umap_x\": -0.7710895538330078, \"umap_y\": 1.9907293319702148, \"post_id\": 5623.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5623, \"umap_x\": -0.7710895538330078, \"umap_y\": 1.9907293319702148, \"post_id\": 5623.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5625, \"umap_x\": -0.497526079416275, \"umap_y\": 1.9797505140304565, \"post_id\": 5625.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5629, \"umap_x\": -0.21858005225658417, \"umap_y\": -0.8123957514762878, \"post_id\": 5629.0, \"author_id\": 434.0, \"id_y\": 434.0, \"author\": \"Stefanie Salzmann\", \"author_group\": \"Other\"}, {\"id_x\": 5629, \"umap_x\": -0.21858005225658417, \"umap_y\": -0.8123957514762878, \"post_id\": 5629.0, \"author_id\": 435.0, \"id_y\": 435.0, \"author\": \"HNA\", \"author_group\": \"Other\"}, {\"id_x\": 5633, \"umap_x\": -0.5021057724952698, \"umap_y\": 1.0965315103530884, \"post_id\": 5633.0, \"author_id\": 436.0, \"id_y\": 436.0, \"author\": \"Andreas Weller\", \"author_group\": \"Other\"}, {\"id_x\": 5633, \"umap_x\": -0.5021057724952698, \"umap_y\": 1.0965315103530884, \"post_id\": 5633.0, \"author_id\": 437.0, \"id_y\": 437.0, \"author\": \"Dirk Hein\", \"author_group\": \"Other\"}, {\"id_x\": 5633, \"umap_x\": -0.5021057724952698, \"umap_y\": 1.0965315103530884, \"post_id\": 5633.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5637, \"umap_x\": -0.5621035695075989, \"umap_y\": 1.9667434692382812, \"post_id\": 5637.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5637, \"umap_x\": -0.5621035695075989, \"umap_y\": 1.9667434692382812, \"post_id\": 5637.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5641, \"umap_x\": -1.2193735837936401, \"umap_y\": 0.1696603000164032, \"post_id\": 5641.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 5641, \"umap_x\": -1.2193735837936401, \"umap_y\": 0.1696603000164032, \"post_id\": 5641.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5647, \"umap_x\": -3.239928960800171, \"umap_y\": 2.6398372650146484, \"post_id\": 5647.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5652, \"umap_x\": -0.9745328426361084, \"umap_y\": 1.682009220123291, \"post_id\": 5652.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 5655, \"umap_x\": -0.6061887741088867, \"umap_y\": 2.039450168609619, \"post_id\": 5655.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5655, \"umap_x\": -0.6061887741088867, \"umap_y\": 2.039450168609619, \"post_id\": 5655.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5655, \"umap_x\": -0.6061887741088867, \"umap_y\": 2.039450168609619, \"post_id\": 5655.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5657, \"umap_x\": -0.26856663823127747, \"umap_y\": 3.7356648445129395, \"post_id\": 5657.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 5660, \"umap_x\": 0.5482616424560547, \"umap_y\": 2.3703372478485107, \"post_id\": 5660.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5673, \"umap_x\": -2.5823264122009277, \"umap_y\": 5.659031391143799, \"post_id\": 5673.0, \"author_id\": 438.0, \"id_y\": 438.0, \"author\": \"Ermittlungsausschuss Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 5678, \"umap_x\": -0.9596924185752869, \"umap_y\": 1.375455617904663, \"post_id\": 5678.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5683, \"umap_x\": -3.292401075363159, \"umap_y\": 2.4467966556549072, \"post_id\": 5683.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5691, \"umap_x\": -2.3309340476989746, \"umap_y\": 3.7989819049835205, \"post_id\": 5691.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5698, \"umap_x\": -1.4153587818145752, \"umap_y\": 5.332882881164551, \"post_id\": 5698.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5700, \"umap_x\": -1.6167980432510376, \"umap_y\": 3.803337812423706, \"post_id\": 5700.0, \"author_id\": 439.0, \"id_y\": 439.0, \"author\": \"Internationalistischer Block\", \"author_group\": \"Other\"}, {\"id_x\": 5703, \"umap_x\": 0.6453904509544373, \"umap_y\": 3.1842682361602783, \"post_id\": 5703.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5708, \"umap_x\": -2.025599956512451, \"umap_y\": 4.445934295654297, \"post_id\": 5708.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5710, \"umap_x\": -2.6809637546539307, \"umap_y\": 3.127915859222412, \"post_id\": 5710.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5717, \"umap_x\": -1.547357439994812, \"umap_y\": 1.3004322052001953, \"post_id\": 5717.0, \"author_id\": 440.0, \"id_y\": 440.0, \"author\": \"anarchist\", \"author_group\": \"Other\"}, {\"id_x\": 5722, \"umap_x\": -2.5012378692626953, \"umap_y\": 3.699659824371338, \"post_id\": 5722.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5728, \"umap_x\": -2.452070951461792, \"umap_y\": 2.28727650642395, \"post_id\": 5728.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5736, \"umap_x\": -2.4043447971343994, \"umap_y\": -1.784576654434204, \"post_id\": 5736.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5738, \"umap_x\": -0.6350411772727966, \"umap_y\": 5.0616888999938965, \"post_id\": 5738.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5742, \"umap_x\": -2.139136791229248, \"umap_y\": 0.2962973117828369, \"post_id\": 5742.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5748, \"umap_x\": -0.12098433822393417, \"umap_y\": 0.7845374345779419, \"post_id\": 5748.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 5750, \"umap_x\": -1.2990260124206543, \"umap_y\": 2.5435750484466553, \"post_id\": 5750.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5752, \"umap_x\": -2.454867362976074, \"umap_y\": 3.64500093460083, \"post_id\": 5752.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5758, \"umap_x\": -0.16147397458553314, \"umap_y\": 2.2253432273864746, \"post_id\": 5758.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5761, \"umap_x\": 0.3819023370742798, \"umap_y\": 5.8173828125, \"post_id\": 5761.0, \"author_id\": 441.0, \"id_y\": 441.0, \"author\": \"Kappa\", \"author_group\": \"Other\"}, {\"id_x\": 5761, \"umap_x\": 0.3819023370742798, \"umap_y\": 5.8173828125, \"post_id\": 5761.0, \"author_id\": 442.0, \"id_y\": 442.0, \"author\": \"Utopie & Praxis\", \"author_group\": \"Other\"}, {\"id_x\": 5761, \"umap_x\": 0.3819023370742798, \"umap_y\": 5.8173828125, \"post_id\": 5761.0, \"author_id\": 443.0, \"id_y\": 443.0, \"author\": \"Fantifa\", \"author_group\": \"Other\"}, {\"id_x\": 5764, \"umap_x\": -1.610399842262268, \"umap_y\": 3.0798354148864746, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5773, \"umap_x\": -0.9786015152931213, \"umap_y\": 4.078344821929932, \"post_id\": 5773.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5778, \"umap_x\": -1.3653665781021118, \"umap_y\": 5.222508907318115, \"post_id\": 5778.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5782, \"umap_x\": -2.9377377033233643, \"umap_y\": 5.318528652191162, \"post_id\": 5782.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5788, \"umap_x\": -4.108677864074707, \"umap_y\": -0.5303558111190796, \"post_id\": 5788.0, \"author_id\": 444.0, \"id_y\": 444.0, \"author\": \"Andreas Grimm\", \"author_group\": \"Other\"}, {\"id_x\": 5788, \"umap_x\": -4.108677864074707, \"umap_y\": -0.5303558111190796, \"post_id\": 5788.0, \"author_id\": 445.0, \"id_y\": 445.0, \"author\": \"UAC Physiotherapie\", \"author_group\": \"Other\"}, {\"id_x\": 5791, \"umap_x\": -2.7347943782806396, \"umap_y\": 0.13554754853248596, \"post_id\": 5791.0, \"author_id\": 446.0, \"id_y\": 446.0, \"author\": \"Anke Brod\", \"author_group\": \"Other\"}, {\"id_x\": 5795, \"umap_x\": 1.1234395503997803, \"umap_y\": 3.9763405323028564, \"post_id\": 5795.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5799, \"umap_x\": -4.606428623199463, \"umap_y\": 4.543970108032227, \"post_id\": 5799.0, \"author_id\": 447.0, \"id_y\": 447.0, \"author\": \"ANF NEWS\", \"author_group\": \"Other\"}, {\"id_x\": 5805, \"umap_x\": -0.3151060938835144, \"umap_y\": 1.4456733465194702, \"post_id\": 5805.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5807, \"umap_x\": -0.051729924976825714, \"umap_y\": 1.4528310298919678, \"post_id\": 5807.0, \"author_id\": 448.0, \"id_y\": 448.0, \"author\": \"Steffen Winter\", \"author_group\": \"Other\"}, {\"id_x\": 5807, \"umap_x\": -0.051729924976825714, \"umap_y\": 1.4528310298919678, \"post_id\": 5807.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 5809, \"umap_x\": -4.021307468414307, \"umap_y\": 4.601064205169678, \"post_id\": 5809.0, \"author_id\": 339.0, \"id_y\": 339.0, \"author\": \"Woman\", \"author_group\": \"Other\"}, {\"id_x\": 5811, \"umap_x\": -1.4110876321792603, \"umap_y\": -0.2129346877336502, \"post_id\": 5811.0, \"author_id\": 32.0, \"id_y\": 32.0, \"author\": \"Soligruppe 129a\", \"author_group\": \"Other\"}, {\"id_x\": 5821, \"umap_x\": 1.047877550125122, \"umap_y\": 3.7324600219726562, \"post_id\": 5821.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5823, \"umap_x\": -1.9927747249603271, \"umap_y\": 1.6952588558197021, \"post_id\": 5823.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 5828, \"umap_x\": -2.9266960620880127, \"umap_y\": 5.225090980529785, \"post_id\": 5828.0, \"author_id\": 449.0, \"id_y\": 449.0, \"author\": \"Offene Nachbarschaftsversammlung\", \"author_group\": \"Other\"}, {\"id_x\": 5835, \"umap_x\": -0.45339420437812805, \"umap_y\": 1.9059549570083618, \"post_id\": 5835.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5835, \"umap_x\": -0.45339420437812805, \"umap_y\": 1.9059549570083618, \"post_id\": 5835.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5837, \"umap_x\": -3.278465986251831, \"umap_y\": 3.000030279159546, \"post_id\": 5837.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5842, \"umap_x\": -1.472581386566162, \"umap_y\": 5.3817291259765625, \"post_id\": 5842.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5849, \"umap_x\": -2.959977149963379, \"umap_y\": 0.5496596097946167, \"post_id\": 5849.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5852, \"umap_x\": -3.8604774475097656, \"umap_y\": -1.0162339210510254, \"post_id\": 5852.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5854, \"umap_x\": -0.8220694661140442, \"umap_y\": 2.648465156555176, \"post_id\": 5854.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 5857, \"umap_x\": 0.4253321588039398, \"umap_y\": 0.18961185216903687, \"post_id\": 5857.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 5857, \"umap_x\": 0.4253321588039398, \"umap_y\": 0.18961185216903687, \"post_id\": 5857.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5859, \"umap_x\": -2.696573495864868, \"umap_y\": 5.407813549041748, \"post_id\": 5859.0, \"author_id\": 314.0, \"id_y\": 314.0, \"author\": \"FQZ\", \"author_group\": \"Other\"}, {\"id_x\": 5862, \"umap_x\": -0.8392974138259888, \"umap_y\": 3.4811975955963135, \"post_id\": 5862.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5865, \"umap_x\": -0.28920045495033264, \"umap_y\": 0.39992645382881165, \"post_id\": 5865.0, \"author_id\": 450.0, \"id_y\": 450.0, \"author\": \"Bild\", \"author_group\": \"Other\"}, {\"id_x\": 5868, \"umap_x\": -2.941714286804199, \"umap_y\": 0.14198507368564606, \"post_id\": 5868.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5871, \"umap_x\": -3.3047702312469482, \"umap_y\": 2.5236763954162598, \"post_id\": 5871.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5877, \"umap_x\": 0.26739731431007385, \"umap_y\": 3.7490875720977783, \"post_id\": 5877.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 5880, \"umap_x\": -0.7999815940856934, \"umap_y\": -0.8892149925231934, \"post_id\": 5880.0, \"author_id\": 388.0, \"id_y\": 388.0, \"author\": \"FAZ\", \"author_group\": \"Other\"}, {\"id_x\": 5882, \"umap_x\": -2.16218638420105, \"umap_y\": 1.527195930480957, \"post_id\": 5882.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5882, \"umap_x\": -2.16218638420105, \"umap_y\": 1.527195930480957, \"post_id\": 5882.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 5897, \"umap_x\": -0.482133150100708, \"umap_y\": 0.7648252248764038, \"post_id\": 5897.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 5899, \"umap_x\": -0.8115280866622925, \"umap_y\": 0.5318412184715271, \"post_id\": 5899.0, \"author_id\": 344.0, \"id_y\": 344.0, \"author\": \"Carsten Janz\", \"author_group\": \"Other\"}, {\"id_x\": 5899, \"umap_x\": -0.8115280866622925, \"umap_y\": 0.5318412184715271, \"post_id\": 5899.0, \"author_id\": 102.0, \"id_y\": 102.0, \"author\": \"Annika Leister\", \"author_group\": \"Other\"}, {\"id_x\": 5899, \"umap_x\": -0.8115280866622925, \"umap_y\": 0.5318412184715271, \"post_id\": 5899.0, \"author_id\": 451.0, \"id_y\": 451.0, \"author\": \"T-Online\", \"author_group\": \"Other\"}, {\"id_x\": 5901, \"umap_x\": -1.2724623680114746, \"umap_y\": 1.4911918640136719, \"post_id\": 5901.0, \"author_id\": 1.0, \"id_y\": 1.0, \"author\": \"B-Team\", \"author_group\": \"Other\"}, {\"id_x\": 5905, \"umap_x\": -2.7465169429779053, \"umap_y\": 2.6267592906951904, \"post_id\": 5905.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 5908, \"umap_x\": -0.9713759422302246, \"umap_y\": 3.9998462200164795, \"post_id\": 5908.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 5911, \"umap_x\": -2.669185161590576, \"umap_y\": 0.12201768904924393, \"post_id\": 5911.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 5913, \"umap_x\": -0.7933743000030518, \"umap_y\": 2.0201287269592285, \"post_id\": 5913.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 5917, \"umap_x\": -0.5020114183425903, \"umap_y\": 1.9104952812194824, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 5919, \"umap_x\": 0.13098736107349396, \"umap_y\": 3.330106496810913, \"post_id\": 5919.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5923, \"umap_x\": -0.6652346253395081, \"umap_y\": 1.4581671953201294, \"post_id\": 5923.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 5923, \"umap_x\": -0.6652346253395081, \"umap_y\": 1.4581671953201294, \"post_id\": 5923.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5927, \"umap_x\": -2.4838266372680664, \"umap_y\": 0.9636164903640747, \"post_id\": 5927.0, \"author_id\": 452.0, \"id_y\": 452.0, \"author\": \"Antipatriarchaler Block\", \"author_group\": \"Other\"}, {\"id_x\": 5929, \"umap_x\": -3.005744457244873, \"umap_y\": -0.6346665024757385, \"post_id\": 5929.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 5932, \"umap_x\": -3.455333709716797, \"umap_y\": 2.5794994831085205, \"post_id\": 5932.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 5932, \"umap_x\": -3.455333709716797, \"umap_y\": 2.5794994831085205, \"post_id\": 5932.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 5932, \"umap_x\": -3.455333709716797, \"umap_y\": 2.5794994831085205, \"post_id\": 5932.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5935, \"umap_x\": -0.20607097446918488, \"umap_y\": 3.9137659072875977, \"post_id\": 5935.0, \"author_id\": 453.0, \"id_y\": 453.0, \"author\": \"Bunter antifaschistischer Haufen\", \"author_group\": \"Other\"}, {\"id_x\": 5942, \"umap_x\": -0.5623264312744141, \"umap_y\": 4.861706256866455, \"post_id\": 5942.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 5945, \"umap_x\": -0.5755913257598877, \"umap_y\": 3.3589422702789307, \"post_id\": 5945.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5950, \"umap_x\": -3.7948129177093506, \"umap_y\": 2.664660930633545, \"post_id\": 5950.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5953, \"umap_x\": -2.6993343830108643, \"umap_y\": 0.23554275929927826, \"post_id\": 5953.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5955, \"umap_x\": 0.49242839217185974, \"umap_y\": 4.05140495300293, \"post_id\": 5955.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5959, \"umap_x\": -1.6382019519805908, \"umap_y\": 2.858267307281494, \"post_id\": 5959.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 5961, \"umap_x\": 0.8221414089202881, \"umap_y\": -0.782068133354187, \"post_id\": 5961.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 5963, \"umap_x\": -3.6579294204711914, \"umap_y\": 2.2873730659484863, \"post_id\": 5963.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 5965, \"umap_x\": -3.4770946502685547, \"umap_y\": 2.4762539863586426, \"post_id\": 5965.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 5965, \"umap_x\": -3.4770946502685547, \"umap_y\": 2.4762539863586426, \"post_id\": 5965.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5965, \"umap_x\": -3.4770946502685547, \"umap_y\": 2.4762539863586426, \"post_id\": 5965.0, \"author_id\": 454.0, \"id_y\": 454.0, \"author\": \"Kira von der Brelie\", \"author_group\": \"Other\"}, {\"id_x\": 5965, \"umap_x\": -3.4770946502685547, \"umap_y\": 2.4762539863586426, \"post_id\": 5965.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 5965, \"umap_x\": -3.4770946502685547, \"umap_y\": 2.4762539863586426, \"post_id\": 5965.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5967, \"umap_x\": -2.31640887260437, \"umap_y\": 2.5089004039764404, \"post_id\": 5967.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5969, \"umap_x\": -3.3974997997283936, \"umap_y\": 2.525949239730835, \"post_id\": 5969.0, \"author_id\": 455.0, \"id_y\": 455.0, \"author\": \"Robert N\\u00f6\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 5969, \"umap_x\": -3.3974997997283936, \"umap_y\": 2.525949239730835, \"post_id\": 5969.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5969, \"umap_x\": -3.3974997997283936, \"umap_y\": 2.525949239730835, \"post_id\": 5969.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 5971, \"umap_x\": -2.631746530532837, \"umap_y\": 1.1534650325775146, \"post_id\": 5971.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 5973, \"umap_x\": -3.6038644313812256, \"umap_y\": 2.591005802154541, \"post_id\": 5973.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5975, \"umap_x\": -3.61513352394104, \"umap_y\": 2.652914524078369, \"post_id\": 5975.0, \"author_id\": 455.0, \"id_y\": 455.0, \"author\": \"Robert N\\u00f6\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 5975, \"umap_x\": -3.61513352394104, \"umap_y\": 2.652914524078369, \"post_id\": 5975.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5977, \"umap_x\": -3.484560966491699, \"umap_y\": 1.7096694707870483, \"post_id\": 5977.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 5979, \"umap_x\": -3.72916841506958, \"umap_y\": 2.458709239959717, \"post_id\": 5979.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5981, \"umap_x\": -0.4998907744884491, \"umap_y\": 1.8914661407470703, \"post_id\": 5981.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5983, \"umap_x\": -3.6813912391662598, \"umap_y\": 2.6328511238098145, \"post_id\": 5983.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 5985, \"umap_x\": -2.754791259765625, \"umap_y\": 1.0721969604492188, \"post_id\": 5985.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 5985, \"umap_x\": -2.754791259765625, \"umap_y\": 1.0721969604492188, \"post_id\": 5985.0, \"author_id\": 455.0, \"id_y\": 455.0, \"author\": \"Robert N\\u00f6\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 5987, \"umap_x\": -3.378462791442871, \"umap_y\": 1.883561611175537, \"post_id\": 5987.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 5987, \"umap_x\": -3.378462791442871, \"umap_y\": 1.883561611175537, \"post_id\": 5987.0, \"author_id\": 457.0, \"id_y\": 457.0, \"author\": \"August Modersohn\", \"author_group\": \"Other\"}, {\"id_x\": 5987, \"umap_x\": -3.378462791442871, \"umap_y\": 1.883561611175537, \"post_id\": 5987.0, \"author_id\": 458.0, \"id_y\": 458.0, \"author\": \"Martin Nejezchleba\", \"author_group\": \"Other\"}, {\"id_x\": 5987, \"umap_x\": -3.378462791442871, \"umap_y\": 1.883561611175537, \"post_id\": 5987.0, \"author_id\": 459.0, \"id_y\": 459.0, \"author\": \"Valerie Sch\\u00f6nian\", \"author_group\": \"Other\"}, {\"id_x\": 5989, \"umap_x\": -3.6354260444641113, \"umap_y\": 2.6549510955810547, \"post_id\": 5989.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 5993, \"umap_x\": -3.6469180583953857, \"umap_y\": 2.6043050289154053, \"post_id\": 5993.0, \"author_id\": 454.0, \"id_y\": 454.0, \"author\": \"Kira von der Brelie\", \"author_group\": \"Other\"}, {\"id_x\": 5993, \"umap_x\": -3.6469180583953857, \"umap_y\": 2.6043050289154053, \"post_id\": 5993.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 5993, \"umap_x\": -3.6469180583953857, \"umap_y\": 2.6043050289154053, \"post_id\": 5993.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 5995, \"umap_x\": -2.5800986289978027, \"umap_y\": -0.2965008020401001, \"post_id\": 5995.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6004, \"umap_x\": -3.90313720703125, \"umap_y\": -0.9846855401992798, \"post_id\": 6004.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6006, \"umap_x\": -3.927556276321411, \"umap_y\": -0.9548477530479431, \"post_id\": 6006.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6008, \"umap_x\": 0.10967142134904861, \"umap_y\": 3.287792205810547, \"post_id\": 6008.0, \"author_id\": 460.0, \"id_y\": 460.0, \"author\": \"Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 6019, \"umap_x\": -1.662859320640564, \"umap_y\": 1.0262218713760376, \"post_id\": 6019.0, \"author_id\": 461.0, \"id_y\": 461.0, \"author\": \"J\\u00f6rg Weidemann\", \"author_group\": \"Other\"}, {\"id_x\": 6021, \"umap_x\": -1.3988202810287476, \"umap_y\": 5.471144676208496, \"post_id\": 6021.0, \"author_id\": 417.0, \"id_y\": 417.0, \"author\": \"Krish Krise\", \"author_group\": \"Other\"}, {\"id_x\": 6055, \"umap_x\": -1.9715352058410645, \"umap_y\": 0.6168585419654846, \"post_id\": 6055.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6059, \"umap_x\": 0.6751287579536438, \"umap_y\": 3.029816150665283, \"post_id\": 6059.0, \"author_id\": 11.0, \"id_y\": 11.0, \"author\": \"FAU\", \"author_group\": \"Other\"}, {\"id_x\": 6061, \"umap_x\": -2.5126423835754395, \"umap_y\": 2.333595037460327, \"post_id\": 6061.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6065, \"umap_x\": 0.3695034980773926, \"umap_y\": 3.2165908813476562, \"post_id\": 6065.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6068, \"umap_x\": 0.23558799922466278, \"umap_y\": 3.6580307483673096, \"post_id\": 6068.0, \"author_id\": 462.0, \"id_y\": 462.0, \"author\": \"Free X Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 6071, \"umap_x\": 0.6307292580604553, \"umap_y\": 3.1320178508758545, \"post_id\": 6071.0, \"author_id\": 462.0, \"id_y\": 462.0, \"author\": \"Free X Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 6081, \"umap_x\": -2.31552791595459, \"umap_y\": 1.6649516820907593, \"post_id\": 6081.0, \"author_id\": 463.0, \"id_y\": 463.0, \"author\": \"Minderj\\u00e4hrige\", \"author_group\": \"Other\"}, {\"id_x\": 6083, \"umap_x\": -2.2560908794403076, \"umap_y\": 2.6775870323181152, \"post_id\": 6083.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6090, \"umap_x\": -3.226806163787842, \"umap_y\": 2.6620936393737793, \"post_id\": 6090.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 6096, \"umap_x\": -3.473752021789551, \"umap_y\": 2.5601043701171875, \"post_id\": 6096.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 6098, \"umap_x\": -3.0696539878845215, \"umap_y\": -0.40901702642440796, \"post_id\": 6098.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6100, \"umap_x\": -4.237494945526123, \"umap_y\": 1.149414300918579, \"post_id\": 6100.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6104, \"umap_x\": -3.2040257453918457, \"umap_y\": 2.9813625812530518, \"post_id\": 6104.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 6104, \"umap_x\": -3.2040257453918457, \"umap_y\": 2.9813625812530518, \"post_id\": 6104.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6107, \"umap_x\": 0.3478458523750305, \"umap_y\": 3.3680708408355713, \"post_id\": 6107.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6110, \"umap_x\": 0.14006488025188446, \"umap_y\": 3.531787395477295, \"post_id\": 6110.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6113, \"umap_x\": 0.8603977560997009, \"umap_y\": 1.9375717639923096, \"post_id\": 6113.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 6116, \"umap_x\": -3.472233772277832, \"umap_y\": 2.9092023372650146, \"post_id\": 6116.0, \"author_id\": 464.0, \"id_y\": 464.0, \"author\": \"Philip Fiedler\", \"author_group\": \"Other\"}, {\"id_x\": 6116, \"umap_x\": -3.472233772277832, \"umap_y\": 2.9092023372650146, \"post_id\": 6116.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 6118, \"umap_x\": -1.706471562385559, \"umap_y\": 3.6934032440185547, \"post_id\": 6118.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6120, \"umap_x\": -1.512420415878296, \"umap_y\": -0.42525896430015564, \"post_id\": 6120.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6134, \"umap_x\": -3.663036346435547, \"umap_y\": 2.5884549617767334, \"post_id\": 6134.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 6138, \"umap_x\": -3.521876811981201, \"umap_y\": 2.684140682220459, \"post_id\": 6138.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 6140, \"umap_x\": -3.6583750247955322, \"umap_y\": 2.6903390884399414, \"post_id\": 6140.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 6142, \"umap_x\": -1.7402942180633545, \"umap_y\": -1.3841608762741089, \"post_id\": 6142.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 6148, \"umap_x\": -3.257960796356201, \"umap_y\": 2.8488924503326416, \"post_id\": 6148.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6153, \"umap_x\": -3.7238669395446777, \"umap_y\": 2.5954344272613525, \"post_id\": 6153.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6155, \"umap_x\": -2.7276721000671387, \"umap_y\": 1.1168694496154785, \"post_id\": 6155.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6155, \"umap_x\": -2.7276721000671387, \"umap_y\": 1.1168694496154785, \"post_id\": 6155.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 6160, \"umap_x\": -1.3695602416992188, \"umap_y\": -1.7684059143066406, \"post_id\": 6160.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 6162, \"umap_x\": -1.393559217453003, \"umap_y\": -0.8152316212654114, \"post_id\": 6162.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6164, \"umap_x\": -2.1337695121765137, \"umap_y\": 1.4834773540496826, \"post_id\": 6164.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 6166, \"umap_x\": -0.5497939586639404, \"umap_y\": -0.8140100240707397, \"post_id\": 6166.0, \"author_id\": 44.0, \"id_y\": 44.0, \"author\": \"Andreas Speit\", \"author_group\": \"Other\"}, {\"id_x\": 6168, \"umap_x\": -1.2111413478851318, \"umap_y\": 1.9485156536102295, \"post_id\": 6168.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 6170, \"umap_x\": -0.4904848039150238, \"umap_y\": 0.2502653896808624, \"post_id\": 6170.0, \"author_id\": 465.0, \"id_y\": 465.0, \"author\": \"SZ\", \"author_group\": \"Other\"}, {\"id_x\": 6172, \"umap_x\": -1.534744143486023, \"umap_y\": -0.28345757722854614, \"post_id\": 6172.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6174, \"umap_x\": -1.7843455076217651, \"umap_y\": -0.1806364804506302, \"post_id\": 6174.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6176, \"umap_x\": -1.7218971252441406, \"umap_y\": 2.189073085784912, \"post_id\": 6176.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6181, \"umap_x\": -2.4724137783050537, \"umap_y\": 0.05405155569314957, \"post_id\": 6181.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 6183, \"umap_x\": -0.1853528916835785, \"umap_y\": 3.6907107830047607, \"post_id\": 6183.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6185, \"umap_x\": -0.11799526959657669, \"umap_y\": -0.0036294125020503998, \"post_id\": 6185.0, \"author_id\": 467.0, \"id_y\": 467.0, \"author\": \"Christian Wendt\", \"author_group\": \"Other\"}, {\"id_x\": 6185, \"umap_x\": -0.11799526959657669, \"umap_y\": -0.0036294125020503998, \"post_id\": 6185.0, \"author_id\": 385.0, \"id_y\": 385.0, \"author\": \"Kathrin Kabelitz\", \"author_group\": \"Other\"}, {\"id_x\": 6185, \"umap_x\": -0.11799526959657669, \"umap_y\": -0.0036294125020503998, \"post_id\": 6185.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 6187, \"umap_x\": -1.3082953691482544, \"umap_y\": 4.057941913604736, \"post_id\": 6187.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6199, \"umap_x\": -3.028613567352295, \"umap_y\": 2.3929173946380615, \"post_id\": 6199.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6199, \"umap_x\": -3.028613567352295, \"umap_y\": 2.3929173946380615, \"post_id\": 6199.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 6201, \"umap_x\": -1.2582889795303345, \"umap_y\": 1.888655424118042, \"post_id\": 6201.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 6203, \"umap_x\": -3.876079797744751, \"umap_y\": 2.659215211868286, \"post_id\": 6203.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6205, \"umap_x\": 0.43579667806625366, \"umap_y\": 0.1807580590248108, \"post_id\": 6205.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6207, \"umap_x\": -3.7483110427856445, \"umap_y\": 0.3747006058692932, \"post_id\": 6207.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 6217, \"umap_x\": -1.3629662990570068, \"umap_y\": 3.5301718711853027, \"post_id\": 6217.0, \"author_id\": 402.0, \"id_y\": 402.0, \"author\": \"Alfredo Cospito\", \"author_group\": \"Other\"}, {\"id_x\": 6220, \"umap_x\": -3.582090377807617, \"umap_y\": 2.7387821674346924, \"post_id\": 6220.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6220, \"umap_x\": -3.582090377807617, \"umap_y\": 2.7387821674346924, \"post_id\": 6220.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 6222, \"umap_x\": -3.5878281593322754, \"umap_y\": 2.682049512863159, \"post_id\": 6222.0, \"author_id\": 190.0, \"id_y\": 190.0, \"author\": \"RND\", \"author_group\": \"Other\"}, {\"id_x\": 6224, \"umap_x\": -2.723329544067383, \"umap_y\": -0.7163130640983582, \"post_id\": 6224.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6227, \"umap_x\": -2.598518133163452, \"umap_y\": 1.4404571056365967, \"post_id\": 6227.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 6229, \"umap_x\": -2.946990966796875, \"umap_y\": 2.1409342288970947, \"post_id\": 6229.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 6244, \"umap_x\": -0.6565991044044495, \"umap_y\": 4.412186145782471, \"post_id\": 6244.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6251, \"umap_x\": 0.24176843464374542, \"umap_y\": 1.9333471059799194, \"post_id\": 6251.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 6254, \"umap_x\": -3.361952543258667, \"umap_y\": 2.5581586360931396, \"post_id\": 6254.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 6256, \"umap_x\": -1.3012686967849731, \"umap_y\": -0.8900620341300964, \"post_id\": 6256.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6258, \"umap_x\": -0.0680125430226326, \"umap_y\": 3.6466281414031982, \"post_id\": 6258.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6260, \"umap_x\": -2.3676466941833496, \"umap_y\": -0.6140698790550232, \"post_id\": 6260.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 6262, \"umap_x\": -3.317348003387451, \"umap_y\": 2.51959490776062, \"post_id\": 6262.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6262, \"umap_x\": -3.317348003387451, \"umap_y\": 2.51959490776062, \"post_id\": 6262.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 6264, \"umap_x\": -1.9969415664672852, \"umap_y\": 3.4144630432128906, \"post_id\": 6264.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6271, \"umap_x\": -4.577695369720459, \"umap_y\": 4.539621829986572, \"post_id\": 6271.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6277, \"umap_x\": -0.4505552053451538, \"umap_y\": 4.3406982421875, \"post_id\": 6277.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6282, \"umap_x\": -0.8517999649047852, \"umap_y\": 5.206465244293213, \"post_id\": 6282.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 6285, \"umap_x\": -3.659052610397339, \"umap_y\": 2.667276620864868, \"post_id\": 6285.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6289, \"umap_x\": -1.575721263885498, \"umap_y\": 3.7401697635650635, \"post_id\": 6289.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6292, \"umap_x\": -0.7098206281661987, \"umap_y\": 2.877140760421753, \"post_id\": 6292.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 6305, \"umap_x\": -2.730055570602417, \"umap_y\": -1.3148669004440308, \"post_id\": 6305.0, \"author_id\": 468.0, \"id_y\": 468.0, \"author\": \"Solidarische Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 6307, \"umap_x\": 0.9893109798431396, \"umap_y\": -0.7635061144828796, \"post_id\": 6307.0, \"author_id\": 438.0, \"id_y\": 438.0, \"author\": \"Ermittlungsausschuss Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 6309, \"umap_x\": -2.017805576324463, \"umap_y\": 4.36625862121582, \"post_id\": 6309.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6316, \"umap_x\": 0.15419888496398926, \"umap_y\": 3.219329357147217, \"post_id\": 6316.0, \"author_id\": 469.0, \"id_y\": 469.0, \"author\": \"Berliner Angeklagter\", \"author_group\": \"Other\"}, {\"id_x\": 6319, \"umap_x\": -2.7531206607818604, \"umap_y\": -1.7322968244552612, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6321, \"umap_x\": -0.168806791305542, \"umap_y\": -0.5700058341026306, \"post_id\": 6321.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 6323, \"umap_x\": -4.173524856567383, \"umap_y\": 4.473606586456299, \"post_id\": 6323.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 6334, \"umap_x\": 0.15463055670261383, \"umap_y\": 0.46524763107299805, \"post_id\": 6334.0, \"author_id\": 470.0, \"id_y\": 470.0, \"author\": \"Von Roland Kaiser\", \"author_group\": \"Other\"}, {\"id_x\": 6336, \"umap_x\": 0.0938124880194664, \"umap_y\": 1.647499918937683, \"post_id\": 6336.0, \"author_id\": 471.0, \"id_y\": 471.0, \"author\": \"Manuela Engelmann-Bunk\", \"author_group\": \"Other\"}, {\"id_x\": 6338, \"umap_x\": -2.2473747730255127, \"umap_y\": -0.12564635276794434, \"post_id\": 6338.0, \"author_id\": 472.0, \"id_y\": 472.0, \"author\": \"Von Doreen Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 6340, \"umap_x\": -2.810300350189209, \"umap_y\": -1.6479897499084473, \"post_id\": 6340.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6342, \"umap_x\": -2.923405885696411, \"umap_y\": 3.088365077972412, \"post_id\": 6342.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6350, \"umap_x\": -1.0696426630020142, \"umap_y\": -0.15207724273204803, \"post_id\": 6350.0, \"author_id\": 473.0, \"id_y\": 473.0, \"author\": \"Jens Kassner\", \"author_group\": \"Other\"}, {\"id_x\": 6352, \"umap_x\": 0.9758778810501099, \"umap_y\": 1.9920852184295654, \"post_id\": 6352.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 6354, \"umap_x\": -1.2265533208847046, \"umap_y\": -0.8057417273521423, \"post_id\": 6354.0, \"author_id\": 474.0, \"id_y\": 474.0, \"author\": \"Internationalistischen Jugendkommune Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6359, \"umap_x\": -0.9528087377548218, \"umap_y\": 5.27561092376709, \"post_id\": 6359.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6365, \"umap_x\": -3.8410043716430664, \"umap_y\": -0.39452481269836426, \"post_id\": 6365.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 6368, \"umap_x\": -1.3623408079147339, \"umap_y\": 5.31264591217041, \"post_id\": 6368.0, \"author_id\": 475.0, \"id_y\": 475.0, \"author\": \"Stronger Together\", \"author_group\": \"Other\"}, {\"id_x\": 6383, \"umap_x\": -2.2580976486206055, \"umap_y\": 1.9117251634597778, \"post_id\": 6383.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6385, \"umap_x\": -3.0642635822296143, \"umap_y\": 1.6696381568908691, \"post_id\": 6385.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6390, \"umap_x\": -3.2903971672058105, \"umap_y\": 1.1198508739471436, \"post_id\": 6390.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 6398, \"umap_x\": -1.4394012689590454, \"umap_y\": 5.342858791351318, \"post_id\": 6398.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 6401, \"umap_x\": -3.3614635467529297, \"umap_y\": 2.671154737472534, \"post_id\": 6401.0, \"author_id\": 282.0, \"id_y\": 282.0, \"author\": \"Mathias Orbeck\", \"author_group\": \"Other\"}, {\"id_x\": 6403, \"umap_x\": -0.8223240971565247, \"umap_y\": 3.296996831893921, \"post_id\": 6403.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6405, \"umap_x\": -1.9796124696731567, \"umap_y\": 1.335411787033081, \"post_id\": 6405.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 6407, \"umap_x\": -1.9849122762680054, \"umap_y\": -0.13982555270195007, \"post_id\": 6407.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 6409, \"umap_x\": -4.745820045471191, \"umap_y\": 4.3735032081604, \"post_id\": 6409.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6419, \"umap_x\": 0.04471925273537636, \"umap_y\": -0.5074071288108826, \"post_id\": 6419.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6422, \"umap_x\": -0.6101589798927307, \"umap_y\": 1.264873743057251, \"post_id\": 6422.0, \"author_id\": 476.0, \"id_y\": 476.0, \"author\": \"Doreen Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 6424, \"umap_x\": -0.9287533760070801, \"umap_y\": -0.17868569493293762, \"post_id\": 6424.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 6426, \"umap_x\": -1.3188997507095337, \"umap_y\": 5.143774032592773, \"post_id\": 6426.0, \"author_id\": 170.0, \"id_y\": 170.0, \"author\": \"Johannes P\\u00f6hlandt\", \"author_group\": \"Other\"}, {\"id_x\": 6428, \"umap_x\": -2.057677745819092, \"umap_y\": 1.3995944261550903, \"post_id\": 6428.0, \"author_id\": 366.0, \"id_y\": 366.0, \"author\": \"KARL KEIM\", \"author_group\": \"Other\"}, {\"id_x\": 6428, \"umap_x\": -2.057677745819092, \"umap_y\": 1.3995944261550903, \"post_id\": 6428.0, \"author_id\": 155.0, \"id_y\": 155.0, \"author\": \"THOMAS FISCHER\", \"author_group\": \"Other\"}, {\"id_x\": 6432, \"umap_x\": -2.257969617843628, \"umap_y\": -0.30891531705856323, \"post_id\": 6432.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6434, \"umap_x\": -4.566956996917725, \"umap_y\": 4.492301940917969, \"post_id\": 6434.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6438, \"umap_x\": -1.690638542175293, \"umap_y\": 3.8900411128997803, \"post_id\": 6438.0, \"author_id\": 477.0, \"id_y\": 477.0, \"author\": \"einige\", \"author_group\": \"Other\"}, {\"id_x\": 6444, \"umap_x\": 0.41136273741722107, \"umap_y\": 3.2426798343658447, \"post_id\": 6444.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6447, \"umap_x\": -3.8785130977630615, \"umap_y\": 2.6264853477478027, \"post_id\": 6447.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 6449, \"umap_x\": -3.5709633827209473, \"umap_y\": 2.5772924423217773, \"post_id\": 6449.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 6451, \"umap_x\": -3.9623396396636963, \"umap_y\": -0.46404701471328735, \"post_id\": 6451.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 6453, \"umap_x\": -1.213085412979126, \"umap_y\": 3.69946551322937, \"post_id\": 6453.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6456, \"umap_x\": -1.385369896888733, \"umap_y\": 5.420624732971191, \"post_id\": 6456.0, \"author_id\": 478.0, \"id_y\": 478.0, \"author\": \"Projet-Evasions\", \"author_group\": \"Other\"}, {\"id_x\": 6459, \"umap_x\": -4.071944236755371, \"umap_y\": 4.378637313842773, \"post_id\": 6459.0, \"author_id\": 60.0, \"id_y\": 60.0, \"author\": \"ANF\", \"author_group\": \"Other\"}, {\"id_x\": 6462, \"umap_x\": -1.480564832687378, \"umap_y\": 0.10563109815120697, \"post_id\": 6462.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 6464, \"umap_x\": -0.6120905876159668, \"umap_y\": 3.610429048538208, \"post_id\": 6464.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6470, \"umap_x\": -1.1059931516647339, \"umap_y\": 2.1004490852355957, \"post_id\": 6470.0, \"author_id\": 480.0, \"id_y\": 480.0, \"author\": \"verschiedene Einzelpersonen\", \"author_group\": \"Other\"}, {\"id_x\": 6474, \"umap_x\": -2.2515885829925537, \"umap_y\": 3.305954933166504, \"post_id\": 6474.0, \"author_id\": 481.0, \"id_y\": 481.0, \"author\": \"offene Anarchistische Vernetzung Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6477, \"umap_x\": 0.72911536693573, \"umap_y\": 0.3002118170261383, \"post_id\": 6477.0, \"author_id\": 482.0, \"id_y\": 482.0, \"author\": \"Martina Renner\", \"author_group\": \"Other\"}, {\"id_x\": 6477, \"umap_x\": 0.72911536693573, \"umap_y\": 0.3002118170261383, \"post_id\": 6477.0, \"author_id\": 483.0, \"id_y\": 483.0, \"author\": \"Sebastian Wehrhahn\", \"author_group\": \"Other\"}, {\"id_x\": 6479, \"umap_x\": 0.20197007060050964, \"umap_y\": 0.698213517665863, \"post_id\": 6479.0, \"author_id\": 484.0, \"id_y\": 484.0, \"author\": \"Christian Mathea\", \"author_group\": \"Other\"}, {\"id_x\": 6481, \"umap_x\": -3.647111177444458, \"umap_y\": 2.757248878479004, \"post_id\": 6481.0, \"author_id\": 485.0, \"id_y\": 485.0, \"author\": \"Anton K\\u00e4mpf\", \"author_group\": \"Other\"}, {\"id_x\": 6489, \"umap_x\": -2.6372172832489014, \"umap_y\": 0.29409655928611755, \"post_id\": 6489.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 6493, \"umap_x\": -3.459477663040161, \"umap_y\": -0.9347598552703857, \"post_id\": 6493.0, \"author_id\": 100.0, \"id_y\": 100.0, \"author\": \"Yvonne Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 6493, \"umap_x\": -3.459477663040161, \"umap_y\": -0.9347598552703857, \"post_id\": 6493.0, \"author_id\": 486.0, \"id_y\": 486.0, \"author\": \"Marissa Boll\", \"author_group\": \"Other\"}, {\"id_x\": 6493, \"umap_x\": -3.459477663040161, \"umap_y\": -0.9347598552703857, \"post_id\": 6493.0, \"author_id\": 487.0, \"id_y\": 487.0, \"author\": \"Svenja J\\u00e4ger\", \"author_group\": \"Other\"}, {\"id_x\": 6493, \"umap_x\": -3.459477663040161, \"umap_y\": -0.9347598552703857, \"post_id\": 6493.0, \"author_id\": 488.0, \"id_y\": 488.0, \"author\": \"Naomi Stieglmaier\", \"author_group\": \"Other\"}, {\"id_x\": 6499, \"umap_x\": -2.151911735534668, \"umap_y\": -0.7829926609992981, \"post_id\": 6499.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 6507, \"umap_x\": -3.569157838821411, \"umap_y\": -1.4091328382492065, \"post_id\": 6507.0, \"author_id\": 489.0, \"id_y\": 489.0, \"author\": \"Kai-Uwe Brandt\", \"author_group\": \"Other\"}, {\"id_x\": 6512, \"umap_x\": -2.2243049144744873, \"umap_y\": 1.9972420930862427, \"post_id\": 6512.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 6514, \"umap_x\": -1.8022457361221313, \"umap_y\": -0.7840079069137573, \"post_id\": 6514.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 6516, \"umap_x\": -1.004780650138855, \"umap_y\": 1.4288891553878784, \"post_id\": 6516.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 6523, \"umap_x\": -1.9729527235031128, \"umap_y\": -0.706277072429657, \"post_id\": 6523.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6526, \"umap_x\": 1.1294660568237305, \"umap_y\": 4.039322376251221, \"post_id\": 6526.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6529, \"umap_x\": -0.45323625206947327, \"umap_y\": 3.603994369506836, \"post_id\": 6529.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6532, \"umap_x\": 0.036438651382923126, \"umap_y\": 2.218474864959717, \"post_id\": 6532.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 6536, \"umap_x\": -1.690109372138977, \"umap_y\": 2.391957998275757, \"post_id\": 6536.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6540, \"umap_x\": -1.0334910154342651, \"umap_y\": 1.8371078968048096, \"post_id\": 6540.0, \"author_id\": 491.0, \"id_y\": 491.0, \"author\": \"knack.news\", \"author_group\": \"Other\"}, {\"id_x\": 6544, \"umap_x\": -3.668844699859619, \"umap_y\": 4.092135906219482, \"post_id\": 6544.0, \"author_id\": 492.0, \"id_y\": 492.0, \"author\": \"Internationalistische Jugendkommune Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6547, \"umap_x\": 1.0384641885757446, \"umap_y\": 0.8230893611907959, \"post_id\": 6547.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6549, \"umap_x\": 0.1838076412677765, \"umap_y\": -1.5228064060211182, \"post_id\": 6549.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 6551, \"umap_x\": 0.9196327328681946, \"umap_y\": -0.1804446130990982, \"post_id\": 6551.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 6553, \"umap_x\": -0.8453606963157654, \"umap_y\": 4.8851494789123535, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6559, \"umap_x\": -3.603802442550659, \"umap_y\": 2.5061047077178955, \"post_id\": 6559.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6564, \"umap_x\": -1.1353708505630493, \"umap_y\": 5.120323657989502, \"post_id\": 6564.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 6569, \"umap_x\": -1.6056017875671387, \"umap_y\": 2.364021062850952, \"post_id\": 6569.0, \"author_id\": 493.0, \"id_y\": 493.0, \"author\": \"Journalist\", \"author_group\": \"Other\"}, {\"id_x\": 6571, \"umap_x\": 0.9761798977851868, \"umap_y\": -0.21522176265716553, \"post_id\": 6571.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 6573, \"umap_x\": -3.0445516109466553, \"umap_y\": 0.4881748855113983, \"post_id\": 6573.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6575, \"umap_x\": -2.695458173751831, \"umap_y\": 2.175798177719116, \"post_id\": 6575.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6578, \"umap_x\": -2.742992401123047, \"umap_y\": 3.5171244144439697, \"post_id\": 6578.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6592, \"umap_x\": -0.9248223900794983, \"umap_y\": 3.938478708267212, \"post_id\": 6592.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6594, \"umap_x\": 0.05749976634979248, \"umap_y\": -1.6138180494308472, \"post_id\": 6594.0, \"author_id\": 494.0, \"id_y\": 494.0, \"author\": \"Thomas Datt\", \"author_group\": \"Other\"}, {\"id_x\": 6594, \"umap_x\": 0.05749976634979248, \"umap_y\": -1.6138180494308472, \"post_id\": 6594.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6596, \"umap_x\": 0.9052952527999878, \"umap_y\": 0.17117327451705933, \"post_id\": 6596.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 6598, \"umap_x\": -0.814457356929779, \"umap_y\": 0.512816846370697, \"post_id\": 6598.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 6600, \"umap_x\": -1.4134713411331177, \"umap_y\": 4.962440490722656, \"post_id\": 6600.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6606, \"umap_x\": -2.8106329441070557, \"umap_y\": 2.5195975303649902, \"post_id\": 6606.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6608, \"umap_x\": -0.03732205927371979, \"umap_y\": 4.363919734954834, \"post_id\": 6608.0, \"author_id\": 432.0, \"id_y\": 432.0, \"author\": \"AVL\", \"author_group\": \"Other\"}, {\"id_x\": 6614, \"umap_x\": -3.0220978260040283, \"umap_y\": 1.7045427560806274, \"post_id\": 6614.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 6614, \"umap_x\": -3.0220978260040283, \"umap_y\": 1.7045427560806274, \"post_id\": 6614.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 6614, \"umap_x\": -3.0220978260040283, \"umap_y\": 1.7045427560806274, \"post_id\": 6614.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 6618, \"umap_x\": -1.6595441102981567, \"umap_y\": 2.893475294113159, \"post_id\": 6618.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6622, \"umap_x\": -2.4334487915039062, \"umap_y\": 1.5695804357528687, \"post_id\": 6622.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 6624, \"umap_x\": -3.277125835418701, \"umap_y\": 1.4010937213897705, \"post_id\": 6624.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 6627, \"umap_x\": -0.7350938320159912, \"umap_y\": -0.26847055554389954, \"post_id\": 6627.0, \"author_id\": 495.0, \"id_y\": 495.0, \"author\": \"Thomas Sparrer\", \"author_group\": \"Other\"}, {\"id_x\": 6629, \"umap_x\": 0.23720093071460724, \"umap_y\": 1.9083186388015747, \"post_id\": 6629.0, \"author_id\": 351.0, \"id_y\": 351.0, \"author\": \"FRANK SELIG\", \"author_group\": \"Other\"}, {\"id_x\": 6631, \"umap_x\": -3.092628002166748, \"umap_y\": 0.02466133050620556, \"post_id\": 6631.0, \"author_id\": 352.0, \"id_y\": 352.0, \"author\": \"Annika Rank\", \"author_group\": \"Other\"}, {\"id_x\": 6633, \"umap_x\": 0.39538827538490295, \"umap_y\": 2.021820306777954, \"post_id\": 6633.0, \"author_id\": 86.0, \"id_y\": 86.0, \"author\": \"l-iz\", \"author_group\": \"Other\"}, {\"id_x\": 6638, \"umap_x\": -0.44978708028793335, \"umap_y\": -0.6736085414886475, \"post_id\": 6638.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 6641, \"umap_x\": 0.4057351350784302, \"umap_y\": 3.7121670246124268, \"post_id\": 6641.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6644, \"umap_x\": -0.8421369194984436, \"umap_y\": -0.42542269825935364, \"post_id\": 6644.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 6647, \"umap_x\": 1.1562992334365845, \"umap_y\": 3.729215621948242, \"post_id\": 6647.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 6654, \"umap_x\": -0.07900554686784744, \"umap_y\": 4.274049282073975, \"post_id\": 6654.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6659, \"umap_x\": 0.06931044161319733, \"umap_y\": -1.671497106552124, \"post_id\": 6659.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6661, \"umap_x\": -0.023814020678400993, \"umap_y\": 4.396008014678955, \"post_id\": 6661.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6665, \"umap_x\": 0.5975572466850281, \"umap_y\": 0.7058242559432983, \"post_id\": 6665.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6667, \"umap_x\": -2.0114099979400635, \"umap_y\": -0.6448774337768555, \"post_id\": 6667.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 6669, \"umap_x\": 0.27235954999923706, \"umap_y\": 0.8150418996810913, \"post_id\": 6669.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6669, \"umap_x\": 0.27235954999923706, \"umap_y\": 0.8150418996810913, \"post_id\": 6669.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6673, \"umap_x\": -1.2505414485931396, \"umap_y\": 1.4427119493484497, \"post_id\": 6673.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6681, \"umap_x\": 0.08087180554866791, \"umap_y\": -0.1800283044576645, \"post_id\": 6681.0, \"author_id\": 497.0, \"id_y\": 497.0, \"author\": \"Philipp Brendel\", \"author_group\": \"Other\"}, {\"id_x\": 6681, \"umap_x\": 0.08087180554866791, \"umap_y\": -0.1800283044576645, \"post_id\": 6681.0, \"author_id\": 498.0, \"id_y\": 498.0, \"author\": \"MDR SACHSEN\", \"author_group\": \"Other\"}, {\"id_x\": 6683, \"umap_x\": -1.4609692096710205, \"umap_y\": 2.588606357574463, \"post_id\": 6683.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 6686, \"umap_x\": -0.13148976862430573, \"umap_y\": 4.401919364929199, \"post_id\": 6686.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 6694, \"umap_x\": -3.793724536895752, \"umap_y\": 2.6461095809936523, \"post_id\": 6694.0, \"author_id\": 499.0, \"id_y\": 499.0, \"author\": \"Emma Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 6696, \"umap_x\": -2.9969875812530518, \"umap_y\": 0.9005973935127258, \"post_id\": 6696.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6698, \"umap_x\": 1.0856515169143677, \"umap_y\": 0.45012664794921875, \"post_id\": 6698.0, \"author_id\": 489.0, \"id_y\": 489.0, \"author\": \"Kai-Uwe Brandt\", \"author_group\": \"Other\"}, {\"id_x\": 6700, \"umap_x\": -2.260472297668457, \"umap_y\": -0.9240272641181946, \"post_id\": 6700.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 6702, \"umap_x\": 0.06737577170133591, \"umap_y\": -1.6921836137771606, \"post_id\": 6702.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6704, \"umap_x\": -2.6430506706237793, \"umap_y\": 1.7704449892044067, \"post_id\": 6704.0, \"author_id\": 186.0, \"id_y\": 186.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 6715, \"umap_x\": -1.007529854774475, \"umap_y\": 2.9260919094085693, \"post_id\": 6715.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6718, \"umap_x\": -3.5414698123931885, \"umap_y\": -0.1372831165790558, \"post_id\": 6718.0, \"author_id\": 500.0, \"id_y\": 500.0, \"author\": \"Julia Grunwald\", \"author_group\": \"Other\"}, {\"id_x\": 6722, \"umap_x\": -0.7984572052955627, \"umap_y\": -1.4808869361877441, \"post_id\": 6722.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 6724, \"umap_x\": -2.0192153453826904, \"umap_y\": 0.04005648195743561, \"post_id\": 6724.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 6729, \"umap_x\": -0.7637139558792114, \"umap_y\": -0.4449538588523865, \"post_id\": 6729.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6734, \"umap_x\": 0.839913010597229, \"umap_y\": 0.6438559889793396, \"post_id\": 6734.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 6736, \"umap_x\": -3.4715516567230225, \"umap_y\": 1.8480452299118042, \"post_id\": 6736.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 6740, \"umap_x\": -0.9555290341377258, \"umap_y\": 6.275834560394287, \"post_id\": 6740.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 6740, \"umap_x\": -0.9555290341377258, \"umap_y\": 6.275834560394287, \"post_id\": 6740.0, \"author_id\": 501.0, \"id_y\": 501.0, \"author\": \"Lucas Grothe\", \"author_group\": \"Other\"}, {\"id_x\": 6742, \"umap_x\": -3.704294443130493, \"umap_y\": 1.188411831855774, \"post_id\": 6742.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 6744, \"umap_x\": -1.7954214811325073, \"umap_y\": 3.0016491413116455, \"post_id\": 6744.0, \"author_id\": 502.0, \"id_y\": 502.0, \"author\": \"I.M.F. Serantini\", \"author_group\": \"Other\"}, {\"id_x\": 6746, \"umap_x\": -1.201446771621704, \"umap_y\": 4.040562152862549, \"post_id\": 6746.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6750, \"umap_x\": -2.257659673690796, \"umap_y\": 4.464218616485596, \"post_id\": 6750.0, \"author_id\": 342.0, \"id_y\": 342.0, \"author\": \"Offene Anarchistische Vernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 6753, \"umap_x\": -0.5235693454742432, \"umap_y\": 3.949568033218384, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6763, \"umap_x\": -0.9827992916107178, \"umap_y\": 6.255587577819824, \"post_id\": 6763.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6765, \"umap_x\": -2.599156379699707, \"umap_y\": 1.5870283842086792, \"post_id\": 6765.0, \"author_id\": 503.0, \"id_y\": 503.0, \"author\": \"Emma\", \"author_group\": \"Other\"}, {\"id_x\": 6770, \"umap_x\": -1.8663511276245117, \"umap_y\": 2.1683144569396973, \"post_id\": 6770.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6783, \"umap_x\": 0.4318557381629944, \"umap_y\": 0.7836951613426208, \"post_id\": 6783.0, \"author_id\": 504.0, \"id_y\": 504.0, \"author\": \"Erik KIwitter\", \"author_group\": \"Other\"}, {\"id_x\": 6785, \"umap_x\": 1.1551575660705566, \"umap_y\": -0.3763105571269989, \"post_id\": 6785.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 6787, \"umap_x\": -2.0697760581970215, \"umap_y\": 2.0280606746673584, \"post_id\": 6787.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6791, \"umap_x\": -2.3311891555786133, \"umap_y\": 1.858144760131836, \"post_id\": 6791.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 6796, \"umap_x\": -0.9936804175376892, \"umap_y\": 6.235096454620361, \"post_id\": 6796.0, \"author_id\": 506.0, \"id_y\": 506.0, \"author\": \"Pokemon Liberation Front\", \"author_group\": \"Other\"}, {\"id_x\": 6799, \"umap_x\": 0.0017725626239553094, \"umap_y\": 2.32472562789917, \"post_id\": 6799.0, \"author_id\": 507.0, \"id_y\": 507.0, \"author\": \"Antifa Sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 6802, \"umap_x\": -2.471811056137085, \"umap_y\": 2.3478877544403076, \"post_id\": 6802.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6818, \"umap_x\": -2.90878963470459, \"umap_y\": 1.0236517190933228, \"post_id\": 6818.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6820, \"umap_x\": -0.17802731692790985, \"umap_y\": -0.5098275542259216, \"post_id\": 6820.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 6822, \"umap_x\": -2.235422372817993, \"umap_y\": -0.12034144997596741, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6824, \"umap_x\": -2.128499984741211, \"umap_y\": -1.6428110599517822, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6826, \"umap_x\": -1.7308971881866455, \"umap_y\": -0.23702721297740936, \"post_id\": 6826.0, \"author_id\": 508.0, \"id_y\": 508.0, \"author\": \"PTAZ\", \"author_group\": \"Other\"}, {\"id_x\": 6835, \"umap_x\": -2.1160664558410645, \"umap_y\": 2.4566516876220703, \"post_id\": 6835.0, \"author_id\": 275.0, \"id_y\": 275.0, \"author\": \"Steffi Robak\", \"author_group\": \"Other\"}, {\"id_x\": 6837, \"umap_x\": -2.2078514099121094, \"umap_y\": -1.3253055810928345, \"post_id\": 6837.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 6839, \"umap_x\": -2.543337821960449, \"umap_y\": 1.0276901721954346, \"post_id\": 6839.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6841, \"umap_x\": 0.02442016452550888, \"umap_y\": 3.2249040603637695, \"post_id\": 6841.0, \"author_id\": 74.0, \"id_y\": 74.0, \"author\": \"Thomas Mehlhorn\", \"author_group\": \"Other\"}, {\"id_x\": 6843, \"umap_x\": -0.15267789363861084, \"umap_y\": 2.158653736114502, \"post_id\": 6843.0, \"author_id\": 509.0, \"id_y\": 509.0, \"author\": \"Rainer Totzke\", \"author_group\": \"Other\"}, {\"id_x\": 6845, \"umap_x\": -4.264086723327637, \"umap_y\": -0.2742919325828552, \"post_id\": 6845.0, \"author_id\": 510.0, \"id_y\": 510.0, \"author\": \"Steffen Brost\", \"author_group\": \"Other\"}, {\"id_x\": 6847, \"umap_x\": -0.4479005038738251, \"umap_y\": 3.8142411708831787, \"post_id\": 6847.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6851, \"umap_x\": -1.2807923555374146, \"umap_y\": 0.8244321346282959, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6858, \"umap_x\": -2.0308821201324463, \"umap_y\": 3.494279146194458, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 6863, \"umap_x\": -3.512921094894409, \"umap_y\": -1.4291578531265259, \"post_id\": 6863.0, \"author_id\": 511.0, \"id_y\": 511.0, \"author\": \"Milena Wurmst\\u00e4dt\", \"author_group\": \"Other\"}, {\"id_x\": 6865, \"umap_x\": 0.06720205396413803, \"umap_y\": 0.10697976499795914, \"post_id\": 6865.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 6867, \"umap_x\": -2.12861967086792, \"umap_y\": 2.1322829723358154, \"post_id\": 6867.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6870, \"umap_x\": -0.13299649953842163, \"umap_y\": 4.231410503387451, \"post_id\": 6870.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 6872, \"umap_x\": -2.226431369781494, \"umap_y\": 2.8576815128326416, \"post_id\": 6872.0, \"author_id\": 512.0, \"id_y\": 512.0, \"author\": \"Berliner\", \"author_group\": \"Other\"}, {\"id_x\": 6876, \"umap_x\": -2.6312639713287354, \"umap_y\": -0.07194724678993225, \"post_id\": 6876.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 6878, \"umap_x\": -1.9433513879776, \"umap_y\": -0.4021430015563965, \"post_id\": 6878.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 6880, \"umap_x\": -2.7273976802825928, \"umap_y\": 0.11790567636489868, \"post_id\": 6880.0, \"author_id\": 514.0, \"id_y\": 514.0, \"author\": \"Carolina Neubert\", \"author_group\": \"Other\"}, {\"id_x\": 6885, \"umap_x\": -2.15024471282959, \"umap_y\": -0.15347473323345184, \"post_id\": 6885.0, \"author_id\": 515.0, \"id_y\": 515.0, \"author\": \"Torsten Pauly\", \"author_group\": \"Other\"}, {\"id_x\": 6887, \"umap_x\": -2.3377890586853027, \"umap_y\": -1.0207531452178955, \"post_id\": 6887.0, \"author_id\": 511.0, \"id_y\": 511.0, \"author\": \"Milena Wurmst\\u00e4dt\", \"author_group\": \"Other\"}, {\"id_x\": 6889, \"umap_x\": -3.8603806495666504, \"umap_y\": 1.0030723810195923, \"post_id\": 6889.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 6891, \"umap_x\": -4.497119426727295, \"umap_y\": 4.404240608215332, \"post_id\": 6891.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 6896, \"umap_x\": -0.02502395026385784, \"umap_y\": -0.20364724099636078, \"post_id\": 6896.0, \"author_id\": 516.0, \"id_y\": 516.0, \"author\": \"Roman Lehberger\", \"author_group\": \"Other\"}, {\"id_x\": 6899, \"umap_x\": -4.099991321563721, \"umap_y\": 4.562725067138672, \"post_id\": 6899.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 6904, \"umap_x\": -2.0178117752075195, \"umap_y\": -0.11055505275726318, \"post_id\": 6904.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 6904, \"umap_x\": -2.0178117752075195, \"umap_y\": -0.11055505275726318, \"post_id\": 6904.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 6906, \"umap_x\": 0.709908664226532, \"umap_y\": 1.9960262775421143, \"post_id\": 6906.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 6912, \"umap_x\": -2.0946571826934814, \"umap_y\": -0.31363171339035034, \"post_id\": 6912.0, \"author_id\": 518.0, \"id_y\": 518.0, \"author\": \"Eric Mittmann\", \"author_group\": \"Other\"}, {\"id_x\": 6914, \"umap_x\": -0.49039050936698914, \"umap_y\": 0.9695243835449219, \"post_id\": 6914.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 6919, \"umap_x\": -1.6031824350357056, \"umap_y\": 0.6509655117988586, \"post_id\": 6919.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 6922, \"umap_x\": -2.2492005825042725, \"umap_y\": 4.434075832366943, \"post_id\": 6922.0, \"author_id\": 519.0, \"id_y\": 519.0, \"author\": \"Hic Rodus\", \"author_group\": \"Other\"}, {\"id_x\": 6926, \"umap_x\": 0.6573359966278076, \"umap_y\": 0.3938542604446411, \"post_id\": 6926.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 6931, \"umap_x\": -4.168534755706787, \"umap_y\": 4.703354358673096, \"post_id\": 6931.0, \"author_id\": 520.0, \"id_y\": 520.0, \"author\": \"Internationalist\", \"author_group\": \"Other\"}, {\"id_x\": 6937, \"umap_x\": -1.0882682800292969, \"umap_y\": 5.226920127868652, \"post_id\": 6937.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 6943, \"umap_x\": -2.0942301750183105, \"umap_y\": -0.16635040938854218, \"post_id\": 6943.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 6945, \"umap_x\": -3.946582078933716, \"umap_y\": 2.625613212585449, \"post_id\": 6945.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 6950, \"umap_x\": -0.8260305523872375, \"umap_y\": 0.6340886950492859, \"post_id\": 6950.0, \"author_id\": 98.0, \"id_y\": 98.0, \"author\": \"Markus van Appeldorn\", \"author_group\": \"Other\"}, {\"id_x\": 6952, \"umap_x\": -2.86942458152771, \"umap_y\": 1.711846113204956, \"post_id\": 6952.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 6954, \"umap_x\": -1.4581100940704346, \"umap_y\": 0.552933394908905, \"post_id\": 6954.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 6956, \"umap_x\": -2.392507553100586, \"umap_y\": -0.587591290473938, \"post_id\": 6956.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 6958, \"umap_x\": -0.10746219754219055, \"umap_y\": 3.356609344482422, \"post_id\": 6958.0, \"author_id\": 129.0, \"id_y\": 129.0, \"author\": \"Erik-Holm Langhof\", \"author_group\": \"Other\"}, {\"id_x\": 6960, \"umap_x\": -2.5679123401641846, \"umap_y\": -1.7307060956954956, \"post_id\": 6960.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 6970, \"umap_x\": 0.7377764582633972, \"umap_y\": -0.8573053479194641, \"post_id\": 6970.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 6972, \"umap_x\": -1.0106003284454346, \"umap_y\": 1.1196707487106323, \"post_id\": 6972.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 6975, \"umap_x\": 0.5522676110267639, \"umap_y\": 6.170487403869629, \"post_id\": 6975.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6981, \"umap_x\": 0.46245452761650085, \"umap_y\": 5.8778157234191895, \"post_id\": 6981.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6988, \"umap_x\": -1.7860628366470337, \"umap_y\": 3.85847806930542, \"post_id\": 6988.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 6996, \"umap_x\": 0.6443378925323486, \"umap_y\": 6.213983058929443, \"post_id\": 6996.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 6999, \"umap_x\": -2.827484369277954, \"umap_y\": -0.20410950481891632, \"post_id\": 6999.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7002, \"umap_x\": -2.5201611518859863, \"umap_y\": -0.3648972809314728, \"post_id\": 7002.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 7004, \"umap_x\": -2.032240390777588, \"umap_y\": -0.8022170662879944, \"post_id\": 7004.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7006, \"umap_x\": 0.530701220035553, \"umap_y\": 6.050483703613281, \"post_id\": 7006.0, \"author_id\": 522.0, \"id_y\": 522.0, \"author\": \"grenzenlose & transnationale Linke\", \"author_group\": \"Other\"}, {\"id_x\": 7011, \"umap_x\": -1.0698367357254028, \"umap_y\": 3.558279037475586, \"post_id\": 7011.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 7014, \"umap_x\": -0.813608705997467, \"umap_y\": 1.2715449333190918, \"post_id\": 7014.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 7016, \"umap_x\": -1.624910593032837, \"umap_y\": 1.8056166172027588, \"post_id\": 7016.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 7027, \"umap_x\": -3.578026533126831, \"umap_y\": -1.2945917844772339, \"post_id\": 7027.0, \"author_id\": 523.0, \"id_y\": 523.0, \"author\": \"Stephanie Helm\", \"author_group\": \"Other\"}, {\"id_x\": 7029, \"umap_x\": 0.45191171765327454, \"umap_y\": 0.7054759860038757, \"post_id\": 7029.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7031, \"umap_x\": -4.7443976402282715, \"umap_y\": 4.372717380523682, \"post_id\": 7031.0, \"author_id\": 524.0, \"id_y\": 524.0, \"author\": \"PKK\", \"author_group\": \"Other\"}, {\"id_x\": 7035, \"umap_x\": -1.674254298210144, \"umap_y\": 3.670680046081543, \"post_id\": 7035.0, \"author_id\": 492.0, \"id_y\": 492.0, \"author\": \"Internationalistische Jugendkommune Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7040, \"umap_x\": -1.1204533576965332, \"umap_y\": 2.001199960708618, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7042, \"umap_x\": -2.753739833831787, \"umap_y\": -0.3558024764060974, \"post_id\": 7042.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7045, \"umap_x\": 0.5288541913032532, \"umap_y\": 6.047667503356934, \"post_id\": 7045.0, \"author_id\": 163.0, \"id_y\": 163.0, \"author\": \"Kappa Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7053, \"umap_x\": -1.5641931295394897, \"umap_y\": 1.5359585285186768, \"post_id\": 7053.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7055, \"umap_x\": -1.3131784200668335, \"umap_y\": 2.846022844314575, \"post_id\": 7055.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7064, \"umap_x\": -3.514949321746826, \"umap_y\": -1.482342004776001, \"post_id\": 7064.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 7067, \"umap_x\": -0.31105688214302063, \"umap_y\": 4.027515411376953, \"post_id\": 7067.0, \"author_id\": 525.0, \"id_y\": 525.0, \"author\": \"Einsendername\", \"author_group\": \"Other\"}, {\"id_x\": 7067, \"umap_x\": -0.31105688214302063, \"umap_y\": 4.027515411376953, \"post_id\": 7067.0, \"author_id\": 526.0, \"id_y\": 526.0, \"author\": \"Spontaner Zusammenschluss entsetzter antideutscher, antifaschistischer und antirassistischer Kommunisten\", \"author_group\": \"Other\"}, {\"id_x\": 7076, \"umap_x\": -0.6831685304641724, \"umap_y\": 3.837803363800049, \"post_id\": 7076.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 7080, \"umap_x\": -0.8703120946884155, \"umap_y\": 0.32225102186203003, \"post_id\": 7080.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7087, \"umap_x\": -2.553595542907715, \"umap_y\": 1.1131446361541748, \"post_id\": 7087.0, \"author_id\": 404.0, \"id_y\": 404.0, \"author\": \"Hanna Gerwig\", \"author_group\": \"Other\"}, {\"id_x\": 7089, \"umap_x\": -0.3506232798099518, \"umap_y\": 3.707249164581299, \"post_id\": 7089.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 7091, \"umap_x\": 1.1702762842178345, \"umap_y\": 1.32187020778656, \"post_id\": 7091.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 7093, \"umap_x\": 0.5509288907051086, \"umap_y\": 6.02646017074585, \"post_id\": 7093.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 7095, \"umap_x\": -2.5606136322021484, \"umap_y\": 1.2145334482192993, \"post_id\": 7095.0, \"author_id\": 499.0, \"id_y\": 499.0, \"author\": \"Emma Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 7097, \"umap_x\": 0.5718675255775452, \"umap_y\": 6.096943378448486, \"post_id\": 7097.0, \"author_id\": 528.0, \"id_y\": 528.0, \"author\": \"Beatrice Frasl\", \"author_group\": \"Other\"}, {\"id_x\": 7101, \"umap_x\": -0.9495934844017029, \"umap_y\": 6.250683307647705, \"post_id\": 7101.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7105, \"umap_x\": -0.39577555656433105, \"umap_y\": 3.896669626235962, \"post_id\": 7105.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 7113, \"umap_x\": -1.9759416580200195, \"umap_y\": -0.012975822202861309, \"post_id\": 7113.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7118, \"umap_x\": 0.44003748893737793, \"umap_y\": 5.932220935821533, \"post_id\": 7118.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7121, \"umap_x\": -1.3148548603057861, \"umap_y\": 3.139676332473755, \"post_id\": 7121.0, \"author_id\": 529.0, \"id_y\": 529.0, \"author\": \"InternationalistInnen in Rojava\", \"author_group\": \"Other\"}, {\"id_x\": 7126, \"umap_x\": -0.20074670016765594, \"umap_y\": 1.4401233196258545, \"post_id\": 7126.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 7128, \"umap_x\": 0.37868303060531616, \"umap_y\": 5.5412726402282715, \"post_id\": 7128.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7134, \"umap_x\": 1.1182042360305786, \"umap_y\": 3.5535595417022705, \"post_id\": 7134.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 7137, \"umap_x\": -2.733792304992676, \"umap_y\": 5.643321514129639, \"post_id\": 7137.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7145, \"umap_x\": -0.7736136317253113, \"umap_y\": 2.983760118484497, \"post_id\": 7145.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7147, \"umap_x\": -0.16314800083637238, \"umap_y\": 4.318538188934326, \"post_id\": 7147.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 7152, \"umap_x\": 0.082199327647686, \"umap_y\": 0.7590854167938232, \"post_id\": 7152.0, \"author_id\": 530.0, \"id_y\": 530.0, \"author\": \"Michael Bartsch\", \"author_group\": \"Other\"}, {\"id_x\": 7154, \"umap_x\": 0.5486606359481812, \"umap_y\": 2.4695239067077637, \"post_id\": 7154.0, \"author_id\": 531.0, \"id_y\": 531.0, \"author\": \"Marc H\\u00f6rcher\", \"author_group\": \"Other\"}, {\"id_x\": 7156, \"umap_x\": -2.2069849967956543, \"umap_y\": 0.8056969046592712, \"post_id\": 7156.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7158, \"umap_x\": -1.352435827255249, \"umap_y\": 4.900810718536377, \"post_id\": 7158.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 7160, \"umap_x\": 1.2794969081878662, \"umap_y\": 0.13767433166503906, \"post_id\": 7160.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7162, \"umap_x\": 0.5866577625274658, \"umap_y\": 4.639863967895508, \"post_id\": 7162.0, \"author_id\": 12.0, \"id_y\": 12.0, \"author\": \"OAT\", \"author_group\": \"Other\"}, {\"id_x\": 7169, \"umap_x\": -3.6617696285247803, \"umap_y\": -0.14796991646289825, \"post_id\": 7169.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7171, \"umap_x\": -3.8955118656158447, \"umap_y\": 1.1008046865463257, \"post_id\": 7171.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 7173, \"umap_x\": -2.6865639686584473, \"umap_y\": -0.2645660936832428, \"post_id\": 7173.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 7175, \"umap_x\": -3.2700772285461426, \"umap_y\": 0.6183508038520813, \"post_id\": 7175.0, \"author_id\": 532.0, \"id_y\": 532.0, \"author\": \"Magdalena Weingart\", \"author_group\": \"Other\"}, {\"id_x\": 7177, \"umap_x\": 1.6925827264785767, \"umap_y\": 0.20954743027687073, \"post_id\": 7177.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 7179, \"umap_x\": -3.4937198162078857, \"umap_y\": 2.6069130897521973, \"post_id\": 7179.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7181, \"umap_x\": 0.788806140422821, \"umap_y\": 0.5469411611557007, \"post_id\": 7181.0, \"author_id\": 533.0, \"id_y\": 533.0, \"author\": \"Gunnar Klehm\", \"author_group\": \"Other\"}, {\"id_x\": 7186, \"umap_x\": 0.11871196329593658, \"umap_y\": 0.7052265405654907, \"post_id\": 7186.0, \"author_id\": 495.0, \"id_y\": 495.0, \"author\": \"Thomas Sparrer\", \"author_group\": \"Other\"}, {\"id_x\": 7188, \"umap_x\": -3.8444902896881104, \"umap_y\": 0.4883521497249603, \"post_id\": 7188.0, \"author_id\": 534.0, \"id_y\": 534.0, \"author\": \"Solikreis N\\u00fcrnberg\", \"author_group\": \"Other\"}, {\"id_x\": 7191, \"umap_x\": -0.3397291600704193, \"umap_y\": 3.990540027618408, \"post_id\": 7191.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 7193, \"umap_x\": -0.8394289612770081, \"umap_y\": -0.14189274609088898, \"post_id\": 7193.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 7195, \"umap_x\": 1.3807529211044312, \"umap_y\": 3.809083938598633, \"post_id\": 7195.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 7197, \"umap_x\": -2.7686450481414795, \"umap_y\": 0.9217344522476196, \"post_id\": 7197.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7199, \"umap_x\": -2.5096466541290283, \"umap_y\": -0.5877393484115601, \"post_id\": 7199.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 7201, \"umap_x\": -3.6737358570098877, \"umap_y\": -0.10645922273397446, \"post_id\": 7201.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 7205, \"umap_x\": 0.5927510857582092, \"umap_y\": -0.8776384592056274, \"post_id\": 7205.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7207, \"umap_x\": -2.7886099815368652, \"umap_y\": 0.8807830214500427, \"post_id\": 7207.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 7211, \"umap_x\": -2.2588746547698975, \"umap_y\": -0.051616985350847244, \"post_id\": 7211.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7213, \"umap_x\": -1.884824514389038, \"umap_y\": 2.150268077850342, \"post_id\": 7213.0, \"author_id\": 536.0, \"id_y\": 536.0, \"author\": \"Katharina K\\u00f6nig-Preuss\", \"author_group\": \"Other\"}, {\"id_x\": 7215, \"umap_x\": -3.759514093399048, \"umap_y\": 0.4202556908130646, \"post_id\": 7215.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7217, \"umap_x\": -3.6791558265686035, \"umap_y\": -0.16084590554237366, \"post_id\": 7217.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 7219, \"umap_x\": -2.0739431381225586, \"umap_y\": -0.3296896815299988, \"post_id\": 7219.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 7221, \"umap_x\": -1.0925911664962769, \"umap_y\": -1.1286790370941162, \"post_id\": 7221.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 7223, \"umap_x\": 0.59084552526474, \"umap_y\": 6.037827491760254, \"post_id\": 7223.0, \"author_id\": 537.0, \"id_y\": 537.0, \"author\": \"Slavoj \\u017di\\u017eek\", \"author_group\": \"Other\"}, {\"id_x\": 7223, \"umap_x\": 0.59084552526474, \"umap_y\": 6.037827491760254, \"post_id\": 7223.0, \"author_id\": 24.0, \"id_y\": 24.0, \"author\": \"der Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 7228, \"umap_x\": -0.43366605043411255, \"umap_y\": 3.5565907955169678, \"post_id\": 7228.0, \"author_id\": 538.0, \"id_y\": 538.0, \"author\": \"einige Betroffene\", \"author_group\": \"Other\"}, {\"id_x\": 7231, \"umap_x\": -1.7064346075057983, \"umap_y\": 0.03502316772937775, \"post_id\": 7231.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7238, \"umap_x\": -4.507920265197754, \"umap_y\": 4.381666660308838, \"post_id\": 7238.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7241, \"umap_x\": 0.4859926402568817, \"umap_y\": 5.878875255584717, \"post_id\": 7241.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 7241, \"umap_x\": 0.4859926402568817, \"umap_y\": 5.878875255584717, \"post_id\": 7241.0, \"author_id\": 539.0, \"id_y\": 539.0, \"author\": \"Ulrich Gutmair\", \"author_group\": \"Other\"}, {\"id_x\": 7246, \"umap_x\": 0.5951927304267883, \"umap_y\": 6.075008392333984, \"post_id\": 7246.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7249, \"umap_x\": -1.3369323015213013, \"umap_y\": 4.927156925201416, \"post_id\": 7249.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 7252, \"umap_x\": -2.3546950817108154, \"umap_y\": 1.2943273782730103, \"post_id\": 7252.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7254, \"umap_x\": -3.8081159591674805, \"umap_y\": 0.5575755834579468, \"post_id\": 7254.0, \"author_id\": 540.0, \"id_y\": 540.0, \"author\": \"Mario Ulbrich\", \"author_group\": \"Other\"}, {\"id_x\": 7256, \"umap_x\": 0.22135767340660095, \"umap_y\": -1.4803143739700317, \"post_id\": 7256.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7258, \"umap_x\": 0.1332186758518219, \"umap_y\": 5.728909969329834, \"post_id\": 7258.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 7263, \"umap_x\": -1.524757981300354, \"umap_y\": 1.098046898841858, \"post_id\": 7263.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7265, \"umap_x\": -1.6770360469818115, \"umap_y\": 1.169174075126648, \"post_id\": 7265.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 7267, \"umap_x\": -1.2694941759109497, \"umap_y\": -1.6481081247329712, \"post_id\": 7267.0, \"author_id\": 541.0, \"id_y\": 541.0, \"author\": \"Juliane Staretzek\", \"author_group\": \"Other\"}, {\"id_x\": 7269, \"umap_x\": -0.5401573181152344, \"umap_y\": 2.4354355335235596, \"post_id\": 7269.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7272, \"umap_x\": 0.37933483719825745, \"umap_y\": 4.519110679626465, \"post_id\": 7272.0, \"author_id\": 542.0, \"id_y\": 542.0, \"author\": \"Antifa LE\", \"author_group\": \"Other\"}, {\"id_x\": 7277, \"umap_x\": 1.3207696676254272, \"umap_y\": 0.020152896642684937, \"post_id\": 7277.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 7277, \"umap_x\": 1.3207696676254272, \"umap_y\": 0.020152896642684937, \"post_id\": 7277.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7279, \"umap_x\": 0.28059160709381104, \"umap_y\": -0.5758803486824036, \"post_id\": 7279.0, \"author_id\": 495.0, \"id_y\": 495.0, \"author\": \"Thomas Sparrer\", \"author_group\": \"Other\"}, {\"id_x\": 7285, \"umap_x\": -1.4150855541229248, \"umap_y\": 0.963720440864563, \"post_id\": 7285.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7289, \"umap_x\": 0.5106147527694702, \"umap_y\": 6.044353485107422, \"post_id\": 7289.0, \"author_id\": 543.0, \"id_y\": 543.0, \"author\": \"M.C.A.B.\", \"author_group\": \"Other\"}, {\"id_x\": 7291, \"umap_x\": 0.6086004376411438, \"umap_y\": 6.116572856903076, \"post_id\": 7291.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7293, \"umap_x\": 0.56298828125, \"umap_y\": 6.090447902679443, \"post_id\": 7293.0, \"author_id\": 544.0, \"id_y\": 544.0, \"author\": \"Bini Gutmann\", \"author_group\": \"Other\"}, {\"id_x\": 7295, \"umap_x\": -0.001687894226051867, \"umap_y\": 0.6277045011520386, \"post_id\": 7295.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 7297, \"umap_x\": -0.3149014115333557, \"umap_y\": 1.2058297395706177, \"post_id\": 7297.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 7299, \"umap_x\": -2.5410776138305664, \"umap_y\": 2.108104705810547, \"post_id\": 7299.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 7301, \"umap_x\": -0.47283318638801575, \"umap_y\": 3.765714168548584, \"post_id\": 7301.0, \"author_id\": 545.0, \"id_y\": 545.0, \"author\": \"Undogmatischen Radikalen Antifa Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 7304, \"umap_x\": -2.5797252655029297, \"umap_y\": 1.0220710039138794, \"post_id\": 7304.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 7307, \"umap_x\": 0.24252547323703766, \"umap_y\": 3.839801073074341, \"post_id\": 7307.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 7309, \"umap_x\": -0.5543768405914307, \"umap_y\": 3.8125052452087402, \"post_id\": 7309.0, \"author_id\": 546.0, \"id_y\": 546.0, \"author\": \"Janina Fleischer\", \"author_group\": \"Other\"}, {\"id_x\": 7311, \"umap_x\": 0.2163187861442566, \"umap_y\": 5.812424659729004, \"post_id\": 7311.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 7313, \"umap_x\": -1.5789788961410522, \"umap_y\": -1.1852946281433105, \"post_id\": 7313.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7315, \"umap_x\": -1.0275647640228271, \"umap_y\": 0.22367218136787415, \"post_id\": 7315.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 7317, \"umap_x\": -2.2435302734375, \"umap_y\": 1.961016058921814, \"post_id\": 7317.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7329, \"umap_x\": -1.904131293296814, \"umap_y\": 0.8203757405281067, \"post_id\": 7329.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7334, \"umap_x\": 0.46206188201904297, \"umap_y\": 4.8008270263671875, \"post_id\": 7334.0, \"author_id\": 547.0, \"id_y\": 547.0, \"author\": \"Antifaschistische Linke Eisenach\", \"author_group\": \"Other\"}, {\"id_x\": 7334, \"umap_x\": 0.46206188201904297, \"umap_y\": 4.8008270263671875, \"post_id\": 7334.0, \"author_id\": 548.0, \"id_y\": 548.0, \"author\": \"Solidarisches Kollektiv Eisenach\", \"author_group\": \"Other\"}, {\"id_x\": 7337, \"umap_x\": 0.3586227297782898, \"umap_y\": 4.5477118492126465, \"post_id\": 7337.0, \"author_id\": 549.0, \"id_y\": 549.0, \"author\": \"Anarchistische Gruppe L\\u00fcbeck\", \"author_group\": \"Other\"}, {\"id_x\": 7342, \"umap_x\": 0.49176520109176636, \"umap_y\": 1.1707371473312378, \"post_id\": 7342.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 7351, \"umap_x\": -2.495638847351074, \"umap_y\": 0.7110926508903503, \"post_id\": 7351.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 7353, \"umap_x\": 0.5222027897834778, \"umap_y\": 5.806631565093994, \"post_id\": 7353.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7355, \"umap_x\": 0.522831380367279, \"umap_y\": 4.745237350463867, \"post_id\": 7355.0, \"author_id\": 550.0, \"id_y\": 550.0, \"author\": \"Daniel Ro\\u00dfbach\", \"author_group\": \"Other\"}, {\"id_x\": 7357, \"umap_x\": 0.3720635175704956, \"umap_y\": 5.82548713684082, \"post_id\": 7357.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 7364, \"umap_x\": -1.2607965469360352, \"umap_y\": -1.6359970569610596, \"post_id\": 7364.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 7367, \"umap_x\": -0.3934815526008606, \"umap_y\": 2.5890395641326904, \"post_id\": 7367.0, \"author_id\": 551.0, \"id_y\": 551.0, \"author\": \"Arbeitskreis Untergrund\", \"author_group\": \"Other\"}, {\"id_x\": 7370, \"umap_x\": -2.586677074432373, \"umap_y\": 4.396485805511475, \"post_id\": 7370.0, \"author_id\": 553.0, \"id_y\": 553.0, \"author\": \"Autonome Internationalistische Jugendkommune\", \"author_group\": \"Other\"}, {\"id_x\": 7373, \"umap_x\": -3.9384148120880127, \"umap_y\": 4.642337322235107, \"post_id\": 7373.0, \"author_id\": 553.0, \"id_y\": 553.0, \"author\": \"Autonome Internationalistische Jugendkommune\", \"author_group\": \"Other\"}, {\"id_x\": 7373, \"umap_x\": -3.9384148120880127, \"umap_y\": 4.642337322235107, \"post_id\": 7373.0, \"author_id\": 554.0, \"id_y\": 554.0, \"author\": \"Women Defend Rojava\", \"author_group\": \"Other\"}, {\"id_x\": 7376, \"umap_x\": -0.9228388667106628, \"umap_y\": 3.130980968475342, \"post_id\": 7376.0, \"author_id\": 555.0, \"id_y\": 555.0, \"author\": \"Internationalistische Jugendkommune\", \"author_group\": \"Other\"}, {\"id_x\": 7382, \"umap_x\": -0.5796233415603638, \"umap_y\": 0.03389398381114006, \"post_id\": 7382.0, \"author_id\": 556.0, \"id_y\": 556.0, \"author\": \"B\\u00fcndnis Gewaltschutz Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7385, \"umap_x\": 0.12025836855173111, \"umap_y\": 5.601095676422119, \"post_id\": 7385.0, \"author_id\": 557.0, \"id_y\": 557.0, \"author\": \"Internationalist Perspective\", \"author_group\": \"Other\"}, {\"id_x\": 7387, \"umap_x\": -1.5294082164764404, \"umap_y\": -0.5917492508888245, \"post_id\": 7387.0, \"author_id\": 558.0, \"id_y\": 558.0, \"author\": \"Frauke Ott\", \"author_group\": \"Other\"}, {\"id_x\": 7389, \"umap_x\": 0.6040676236152649, \"umap_y\": 6.09257173538208, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7399, \"umap_x\": -0.5820897221565247, \"umap_y\": 3.843799352645874, \"post_id\": 7399.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7401, \"umap_x\": -4.029036045074463, \"umap_y\": -0.5384459495544434, \"post_id\": 7401.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7406, \"umap_x\": -2.487088203430176, \"umap_y\": -0.7603895664215088, \"post_id\": 7406.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7408, \"umap_x\": -2.3267829418182373, \"umap_y\": 2.312852382659912, \"post_id\": 7408.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 7411, \"umap_x\": 1.2188879251480103, \"umap_y\": 3.6081459522247314, \"post_id\": 7411.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 7411, \"umap_x\": 1.2188879251480103, \"umap_y\": 3.6081459522247314, \"post_id\": 7411.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 7426, \"umap_x\": -3.6018617153167725, \"umap_y\": 2.184413433074951, \"post_id\": 7426.0, \"author_id\": 299.0, \"id_y\": 299.0, \"author\": \"Reik Anton\", \"author_group\": \"Other\"}, {\"id_x\": 7426, \"umap_x\": -3.6018617153167725, \"umap_y\": 2.184413433074951, \"post_id\": 7426.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7430, \"umap_x\": -0.9439658522605896, \"umap_y\": 3.5085201263427734, \"post_id\": 7430.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 7433, \"umap_x\": -0.9463816285133362, \"umap_y\": 6.274674415588379, \"post_id\": 7433.0, \"author_id\": 560.0, \"id_y\": 560.0, \"author\": \"Klaus Haus\", \"author_group\": \"Other\"}, {\"id_x\": 7438, \"umap_x\": -1.5534460544586182, \"umap_y\": -0.75721275806427, \"post_id\": 7438.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7440, \"umap_x\": -2.662937879562378, \"umap_y\": 2.3388562202453613, \"post_id\": 7440.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 7442, \"umap_x\": 0.5616216659545898, \"umap_y\": 6.0800628662109375, \"post_id\": 7442.0, \"author_id\": 562.0, \"id_y\": 562.0, \"author\": \"Olga Benario\", \"author_group\": \"Other\"}, {\"id_x\": 7442, \"umap_x\": 0.5616216659545898, \"umap_y\": 6.0800628662109375, \"post_id\": 7442.0, \"author_id\": 563.0, \"id_y\": 563.0, \"author\": \"Herbert Baum\", \"author_group\": \"Other\"}, {\"id_x\": 7444, \"umap_x\": -1.4842196702957153, \"umap_y\": 4.8894362449646, \"post_id\": 7444.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7466, \"umap_x\": 0.1812584549188614, \"umap_y\": 2.8605422973632812, \"post_id\": 7466.0, \"author_id\": 564.0, \"id_y\": 564.0, \"author\": \"Johanna Weinhold\", \"author_group\": \"Other\"}, {\"id_x\": 7468, \"umap_x\": -2.345214366912842, \"umap_y\": 0.6897289156913757, \"post_id\": 7468.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 7470, \"umap_x\": 0.05905069038271904, \"umap_y\": -1.6706995964050293, \"post_id\": 7470.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7472, \"umap_x\": -2.816797971725464, \"umap_y\": 0.37823113799095154, \"post_id\": 7472.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 7482, \"umap_x\": -0.4527639150619507, \"umap_y\": 3.9830830097198486, \"post_id\": 7482.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 7487, \"umap_x\": -1.1658436059951782, \"umap_y\": 2.0697107315063477, \"post_id\": 7487.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 7491, \"umap_x\": -1.5995895862579346, \"umap_y\": 3.312995433807373, \"post_id\": 7491.0, \"author_id\": 565.0, \"id_y\": 565.0, \"author\": \"Community of Squatted Prosfygika\", \"author_group\": \"Other\"}, {\"id_x\": 7495, \"umap_x\": 0.5560061931610107, \"umap_y\": 3.8319108486175537, \"post_id\": 7495.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7498, \"umap_x\": -1.3416017293930054, \"umap_y\": 2.2669403553009033, \"post_id\": 7498.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7502, \"umap_x\": -0.33513104915618896, \"umap_y\": -0.4537980258464813, \"post_id\": 7502.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7504, \"umap_x\": -0.04134488105773926, \"umap_y\": -0.23803500831127167, \"post_id\": 7504.0, \"author_id\": 566.0, \"id_y\": 566.0, \"author\": \"Claudia von Salzen\", \"author_group\": \"Other\"}, {\"id_x\": 7504, \"umap_x\": -0.04134488105773926, \"umap_y\": -0.23803500831127167, \"post_id\": 7504.0, \"author_id\": 567.0, \"id_y\": 567.0, \"author\": \"Christoph M. Kluge\", \"author_group\": \"Other\"}, {\"id_x\": 7506, \"umap_x\": 0.3959408402442932, \"umap_y\": -0.19443054497241974, \"post_id\": 7506.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7508, \"umap_x\": -0.4387408196926117, \"umap_y\": -0.840339720249176, \"post_id\": 7508.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 7508, \"umap_x\": -0.4387408196926117, \"umap_y\": -0.840339720249176, \"post_id\": 7508.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 7510, \"umap_x\": -2.554826259613037, \"umap_y\": 2.54842209815979, \"post_id\": 7510.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 7512, \"umap_x\": -0.835394561290741, \"umap_y\": -1.3907854557037354, \"post_id\": 7512.0, \"author_id\": 190.0, \"id_y\": 190.0, \"author\": \"RND\", \"author_group\": \"Other\"}, {\"id_x\": 7514, \"umap_x\": -2.3228206634521484, \"umap_y\": 0.7808470726013184, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7516, \"umap_x\": -1.232204556465149, \"umap_y\": -0.38671043515205383, \"post_id\": 7516.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 7518, \"umap_x\": 0.8181095123291016, \"umap_y\": -0.24589502811431885, \"post_id\": 7518.0, \"author_id\": 568.0, \"id_y\": 568.0, \"author\": \"Michael Deutschmann\", \"author_group\": \"Other\"}, {\"id_x\": 7520, \"umap_x\": -0.9283199906349182, \"umap_y\": 1.4759849309921265, \"post_id\": 7520.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7540, \"umap_x\": 0.03583427518606186, \"umap_y\": 3.714564085006714, \"post_id\": 7540.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7543, \"umap_x\": 0.4769630432128906, \"umap_y\": 5.729034900665283, \"post_id\": 7543.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7547, \"umap_x\": -0.9337965846061707, \"umap_y\": 4.291176795959473, \"post_id\": 7547.0, \"author_id\": 161.0, \"id_y\": 161.0, \"author\": \"Initiative\", \"author_group\": \"Other\"}, {\"id_x\": 7556, \"umap_x\": 0.3168167471885681, \"umap_y\": 2.7728466987609863, \"post_id\": 7556.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7564, \"umap_x\": -1.4282687902450562, \"umap_y\": 4.864434719085693, \"post_id\": 7564.0, \"author_id\": 395.0, \"id_y\": 395.0, \"author\": \"Kristina Auer\", \"author_group\": \"Other\"}, {\"id_x\": 7566, \"umap_x\": -0.028631411492824554, \"umap_y\": 4.930126190185547, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7568, \"umap_x\": 0.5323458313941956, \"umap_y\": 6.109762191772461, \"post_id\": 7568.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7570, \"umap_x\": 0.5340555310249329, \"umap_y\": 6.117182731628418, \"post_id\": 7570.0, \"author_id\": 570.0, \"id_y\": 570.0, \"author\": \"Anastasia Tikhomirova\", \"author_group\": \"Other\"}, {\"id_x\": 7572, \"umap_x\": 5.616091251373291, \"umap_y\": 3.374572992324829, \"post_id\": 7572.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7574, \"umap_x\": 1.541130781173706, \"umap_y\": 1.7033450603485107, \"post_id\": 7574.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 7576, \"umap_x\": -3.536423683166504, \"umap_y\": -1.4284369945526123, \"post_id\": 7576.0, \"author_id\": 571.0, \"id_y\": 571.0, \"author\": \"Archiv der sozialen Bewegungen\", \"author_group\": \"Other\"}, {\"id_x\": 7576, \"umap_x\": -3.536423683166504, \"umap_y\": -1.4284369945526123, \"post_id\": 7576.0, \"author_id\": 572.0, \"id_y\": 572.0, \"author\": \"Caf\\u00e9 Sabotage\", \"author_group\": \"Other\"}, {\"id_x\": 7576, \"umap_x\": -3.536423683166504, \"umap_y\": -1.4284369945526123, \"post_id\": 7576.0, \"author_id\": 573.0, \"id_y\": 573.0, \"author\": \"einzelne Aktivist\", \"author_group\": \"Other\"}, {\"id_x\": 7578, \"umap_x\": -0.7090423107147217, \"umap_y\": 1.3357784748077393, \"post_id\": 7578.0, \"author_id\": 574.0, \"id_y\": 574.0, \"author\": \"Dirk Wurzel\", \"author_group\": \"Other\"}, {\"id_x\": 7583, \"umap_x\": -1.9141193628311157, \"umap_y\": 0.31463780999183655, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7586, \"umap_x\": -3.1098077297210693, \"umap_y\": -0.17039325833320618, \"post_id\": 7586.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7594, \"umap_x\": -1.290778636932373, \"umap_y\": -0.8789922595024109, \"post_id\": 7594.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7596, \"umap_x\": -0.876148521900177, \"umap_y\": 3.8589484691619873, \"post_id\": 7596.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7599, \"umap_x\": 0.7708895206451416, \"umap_y\": 1.5554314851760864, \"post_id\": 7599.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7603, \"umap_x\": 1.5401465892791748, \"umap_y\": 1.7203640937805176, \"post_id\": 7603.0, \"author_id\": 332.0, \"id_y\": 332.0, \"author\": \"Silke Kasten\", \"author_group\": \"Other\"}, {\"id_x\": 7605, \"umap_x\": -1.2303677797317505, \"umap_y\": -0.0899663046002388, \"post_id\": 7605.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7607, \"umap_x\": 0.9015706181526184, \"umap_y\": -0.3194153308868408, \"post_id\": 7607.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 7609, \"umap_x\": -0.9215284585952759, \"umap_y\": 6.024756908416748, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7615, \"umap_x\": -1.9899762868881226, \"umap_y\": 0.3022426664829254, \"post_id\": 7615.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7617, \"umap_x\": 0.6016248464584351, \"umap_y\": 6.1573662757873535, \"post_id\": 7617.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 7620, \"umap_x\": -2.694262742996216, \"umap_y\": 3.900425434112549, \"post_id\": 7620.0, \"author_id\": 140.0, \"id_y\": 140.0, \"author\": \"Anarchistische Tage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7622, \"umap_x\": 1.0163776874542236, \"umap_y\": -0.6651199460029602, \"post_id\": 7622.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 7622, \"umap_x\": 1.0163776874542236, \"umap_y\": -0.6651199460029602, \"post_id\": 7622.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 7622, \"umap_x\": 1.0163776874542236, \"umap_y\": -0.6651199460029602, \"post_id\": 7622.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7622, \"umap_x\": 1.0163776874542236, \"umap_y\": -0.6651199460029602, \"post_id\": 7622.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 7627, \"umap_x\": -2.113318920135498, \"umap_y\": -1.6397323608398438, \"post_id\": 7627.0, \"author_id\": 546.0, \"id_y\": 546.0, \"author\": \"Janina Fleischer\", \"author_group\": \"Other\"}, {\"id_x\": 7629, \"umap_x\": -1.194167971611023, \"umap_y\": 2.2414300441741943, \"post_id\": 7629.0, \"author_id\": 575.0, \"id_y\": 575.0, \"author\": \"Markus Linden\", \"author_group\": \"Other\"}, {\"id_x\": 7633, \"umap_x\": -1.0015439987182617, \"umap_y\": 3.2584218978881836, \"post_id\": 7633.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7636, \"umap_x\": -1.1772621870040894, \"umap_y\": 1.5152775049209595, \"post_id\": 7636.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7638, \"umap_x\": -0.6760733127593994, \"umap_y\": 3.981356382369995, \"post_id\": 7638.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 7638, \"umap_x\": -0.6760733127593994, \"umap_y\": 3.981356382369995, \"post_id\": 7638.0, \"author_id\": 576.0, \"id_y\": 576.0, \"author\": \"Friends of Criminals\", \"author_group\": \"Other\"}, {\"id_x\": 7647, \"umap_x\": -1.9827337265014648, \"umap_y\": -1.1435645818710327, \"post_id\": 7647.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7649, \"umap_x\": -2.6276566982269287, \"umap_y\": 2.42423415184021, \"post_id\": 7649.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7651, \"umap_x\": -1.965896487236023, \"umap_y\": 1.774048089981079, \"post_id\": 7651.0, \"author_id\": 577.0, \"id_y\": 577.0, \"author\": \"Hannah Scheiwe\", \"author_group\": \"Other\"}, {\"id_x\": 7653, \"umap_x\": 0.7309588193893433, \"umap_y\": 2.365121603012085, \"post_id\": 7653.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7655, \"umap_x\": -0.3914729058742523, \"umap_y\": 0.6171934008598328, \"post_id\": 7655.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7657, \"umap_x\": 1.3818598985671997, \"umap_y\": 3.5849597454071045, \"post_id\": 7657.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7661, \"umap_x\": -0.02992061898112297, \"umap_y\": 2.6418495178222656, \"post_id\": 7661.0, \"author_id\": 578.0, \"id_y\": 578.0, \"author\": \"Fritz Burschel\", \"author_group\": \"Other\"}, {\"id_x\": 7663, \"umap_x\": -1.2691881656646729, \"umap_y\": 3.88153076171875, \"post_id\": 7663.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7666, \"umap_x\": -0.7730969786643982, \"umap_y\": 3.8781847953796387, \"post_id\": 7666.0, \"author_id\": 579.0, \"id_y\": 579.0, \"author\": \"Antifavernetzung Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 7682, \"umap_x\": 1.7680943012237549, \"umap_y\": 3.5072360038757324, \"post_id\": 7682.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7685, \"umap_x\": 0.7314523458480835, \"umap_y\": 0.12715311348438263, \"post_id\": 7685.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7691, \"umap_x\": 0.5095833539962769, \"umap_y\": 5.344182014465332, \"post_id\": 7691.0, \"author_id\": 580.0, \"id_y\": 580.0, \"author\": \"Lukas Jocher\", \"author_group\": \"Other\"}, {\"id_x\": 7693, \"umap_x\": -3.3355519771575928, \"umap_y\": 1.4067660570144653, \"post_id\": 7693.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 7697, \"umap_x\": -1.295372486114502, \"umap_y\": -0.08963647484779358, \"post_id\": 7697.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7699, \"umap_x\": -0.2165473848581314, \"umap_y\": -0.09344831854104996, \"post_id\": 7699.0, \"author_id\": 581.0, \"id_y\": 581.0, \"author\": \"Verbund antifaschistischer Archive\", \"author_group\": \"Other\"}, {\"id_x\": 7701, \"umap_x\": 0.881030261516571, \"umap_y\": 4.113664150238037, \"post_id\": 7701.0, \"author_id\": 50.0, \"id_y\": 50.0, \"author\": \"Carina\", \"author_group\": \"Other\"}, {\"id_x\": 7703, \"umap_x\": -3.37503981590271, \"umap_y\": 2.351050615310669, \"post_id\": 7703.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7703, \"umap_x\": -3.37503981590271, \"umap_y\": 2.351050615310669, \"post_id\": 7703.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 7703, \"umap_x\": -3.37503981590271, \"umap_y\": 2.351050615310669, \"post_id\": 7703.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 7705, \"umap_x\": -0.4856950044631958, \"umap_y\": 1.1106879711151123, \"post_id\": 7705.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 7716, \"umap_x\": 1.4569395780563354, \"umap_y\": 3.6274335384368896, \"post_id\": 7716.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 7718, \"umap_x\": 0.2831156849861145, \"umap_y\": 4.727700233459473, \"post_id\": 7718.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7720, \"umap_x\": -2.338886022567749, \"umap_y\": 0.7553790211677551, \"post_id\": 7720.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7722, \"umap_x\": -2.5934786796569824, \"umap_y\": 1.0344873666763306, \"post_id\": 7722.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7724, \"umap_x\": 0.4360991418361664, \"umap_y\": 6.024369716644287, \"post_id\": 7724.0, \"author_id\": 562.0, \"id_y\": 562.0, \"author\": \"Olga Benario\", \"author_group\": \"Other\"}, {\"id_x\": 7724, \"umap_x\": 0.4360991418361664, \"umap_y\": 6.024369716644287, \"post_id\": 7724.0, \"author_id\": 563.0, \"id_y\": 563.0, \"author\": \"Herbert Baum\", \"author_group\": \"Other\"}, {\"id_x\": 7729, \"umap_x\": -3.557764768600464, \"umap_y\": 2.2552683353424072, \"post_id\": 7729.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 7731, \"umap_x\": -4.2389020919799805, \"umap_y\": 1.1514219045639038, \"post_id\": 7731.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 7733, \"umap_x\": -1.766563892364502, \"umap_y\": 1.7104907035827637, \"post_id\": 7733.0, \"author_id\": 584.0, \"id_y\": 584.0, \"author\": \"Clara D\\u00fcnkler\", \"author_group\": \"Other\"}, {\"id_x\": 7733, \"umap_x\": -1.766563892364502, \"umap_y\": 1.7104907035827637, \"post_id\": 7733.0, \"author_id\": 585.0, \"id_y\": 585.0, \"author\": \"Melissa N\\u00fc\\u00dfle\", \"author_group\": \"Other\"}, {\"id_x\": 7733, \"umap_x\": -1.766563892364502, \"umap_y\": 1.7104907035827637, \"post_id\": 7733.0, \"author_id\": 586.0, \"id_y\": 586.0, \"author\": \"Mona Rouhandeh\", \"author_group\": \"Other\"}, {\"id_x\": 7733, \"umap_x\": -1.766563892364502, \"umap_y\": 1.7104907035827637, \"post_id\": 7733.0, \"author_id\": 587.0, \"id_y\": 587.0, \"author\": \"Lea Sch\\u00f6n\", \"author_group\": \"Other\"}, {\"id_x\": 7737, \"umap_x\": -0.8797466158866882, \"umap_y\": 3.893848419189453, \"post_id\": 7737.0, \"author_id\": 588.0, \"id_y\": 588.0, \"author\": \"Paul Schuberth\", \"author_group\": \"Other\"}, {\"id_x\": 7745, \"umap_x\": 0.10781889408826828, \"umap_y\": 0.6936702728271484, \"post_id\": 7745.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 7749, \"umap_x\": 0.9698320031166077, \"umap_y\": 3.95605731010437, \"post_id\": 7749.0, \"author_id\": 589.0, \"id_y\": 589.0, \"author\": \"Dirk M\\u00fcnster\", \"author_group\": \"Other\"}, {\"id_x\": 7752, \"umap_x\": 1.4395967721939087, \"umap_y\": 0.5502803325653076, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7754, \"umap_x\": 0.3520309329032898, \"umap_y\": 4.488040447235107, \"post_id\": 7754.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 7757, \"umap_x\": 1.0661817789077759, \"umap_y\": 3.7897140979766846, \"post_id\": 7757.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 7761, \"umap_x\": -3.8049638271331787, \"umap_y\": 0.3801793158054352, \"post_id\": 7761.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 7765, \"umap_x\": -2.564704179763794, \"umap_y\": -1.6658815145492554, \"post_id\": 7765.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7769, \"umap_x\": 0.584714412689209, \"umap_y\": 5.9098896980285645, \"post_id\": 7769.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 7771, \"umap_x\": -2.864070415496826, \"umap_y\": -1.6031914949417114, \"post_id\": 7771.0, \"author_id\": 499.0, \"id_y\": 499.0, \"author\": \"Emma Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 7773, \"umap_x\": -0.8509132266044617, \"umap_y\": -0.08776100724935532, \"post_id\": 7773.0, \"author_id\": 590.0, \"id_y\": 590.0, \"author\": \"Christian Fuchs\", \"author_group\": \"Other\"}, {\"id_x\": 7784, \"umap_x\": -1.9401774406433105, \"umap_y\": 3.2900524139404297, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7787, \"umap_x\": -1.1342519521713257, \"umap_y\": 4.138978481292725, \"post_id\": 7787.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 7790, \"umap_x\": -2.4698688983917236, \"umap_y\": -0.8679463267326355, \"post_id\": 7790.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 7792, \"umap_x\": -0.7241543531417847, \"umap_y\": 0.9219968914985657, \"post_id\": 7792.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7794, \"umap_x\": -1.5077520608901978, \"umap_y\": -1.1759648323059082, \"post_id\": 7794.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 7796, \"umap_x\": 0.4331831634044647, \"umap_y\": 5.391226291656494, \"post_id\": 7796.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 7804, \"umap_x\": -2.6043331623077393, \"umap_y\": 0.8819700479507446, \"post_id\": 7804.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7809, \"umap_x\": -1.1083545684814453, \"umap_y\": 3.6614787578582764, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 7811, \"umap_x\": -1.3349380493164062, \"umap_y\": 1.5789939165115356, \"post_id\": 7811.0, \"author_id\": 574.0, \"id_y\": 574.0, \"author\": \"Dirk Wurzel\", \"author_group\": \"Other\"}, {\"id_x\": 7813, \"umap_x\": -2.3957059383392334, \"umap_y\": 1.1259121894836426, \"post_id\": 7813.0, \"author_id\": 404.0, \"id_y\": 404.0, \"author\": \"Hanna Gerwig\", \"author_group\": \"Other\"}, {\"id_x\": 7815, \"umap_x\": -2.3106789588928223, \"umap_y\": -0.8797618746757507, \"post_id\": 7815.0, \"author_id\": 591.0, \"id_y\": 591.0, \"author\": \"Nikos Natsidis\", \"author_group\": \"Other\"}, {\"id_x\": 7817, \"umap_x\": -2.5350637435913086, \"umap_y\": -1.4222570657730103, \"post_id\": 7817.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7821, \"umap_x\": -1.3414278030395508, \"umap_y\": 2.7976672649383545, \"post_id\": 7821.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 7823, \"umap_x\": 1.0022867918014526, \"umap_y\": -0.45558202266693115, \"post_id\": 7823.0, \"author_id\": 592.0, \"id_y\": 592.0, \"author\": \"Thomas Bothe\", \"author_group\": \"Other\"}, {\"id_x\": 7837, \"umap_x\": 0.14158011972904205, \"umap_y\": 0.919323205947876, \"post_id\": 7837.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 7842, \"umap_x\": -0.20427857339382172, \"umap_y\": 3.708631992340088, \"post_id\": 7842.0, \"author_id\": 593.0, \"id_y\": 593.0, \"author\": \"ACAT\", \"author_group\": \"Other\"}, {\"id_x\": 7845, \"umap_x\": -3.02284574508667, \"umap_y\": 0.11846509575843811, \"post_id\": 7845.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 7848, \"umap_x\": -1.4520574808120728, \"umap_y\": -1.586868405342102, \"post_id\": 7848.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 7850, \"umap_x\": -1.8135792016983032, \"umap_y\": -1.0276178121566772, \"post_id\": 7850.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 7852, \"umap_x\": 1.2095345258712769, \"umap_y\": -0.549821138381958, \"post_id\": 7852.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7854, \"umap_x\": -2.2794761657714844, \"umap_y\": 0.2138449102640152, \"post_id\": 7854.0, \"author_id\": 594.0, \"id_y\": 594.0, \"author\": \"Zentralorgan\", \"author_group\": \"Other\"}, {\"id_x\": 7854, \"umap_x\": -2.2794761657714844, \"umap_y\": 0.2138449102640152, \"post_id\": 7854.0, \"author_id\": 595.0, \"id_y\": 595.0, \"author\": \"Leser\", \"author_group\": \"Other\"}, {\"id_x\": 7860, \"umap_x\": 1.257082223892212, \"umap_y\": 0.057238347828388214, \"post_id\": 7860.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 7862, \"umap_x\": -2.602994441986084, \"umap_y\": 4.207040786743164, \"post_id\": 7862.0, \"author_id\": 596.0, \"id_y\": 596.0, \"author\": \"Anarchist_innen\", \"author_group\": \"Other\"}, {\"id_x\": 7865, \"umap_x\": -2.420513391494751, \"umap_y\": 0.3959541916847229, \"post_id\": 7865.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7867, \"umap_x\": -1.294457197189331, \"umap_y\": -0.6102823615074158, \"post_id\": 7867.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 7869, \"umap_x\": -3.340447187423706, \"umap_y\": 1.418877363204956, \"post_id\": 7869.0, \"author_id\": 597.0, \"id_y\": 597.0, \"author\": \"Andreas Dunte\", \"author_group\": \"Other\"}, {\"id_x\": 7871, \"umap_x\": -1.523796558380127, \"umap_y\": -0.9804503917694092, \"post_id\": 7871.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7873, \"umap_x\": -0.01823829673230648, \"umap_y\": 4.256145000457764, \"post_id\": 7873.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 7873, \"umap_x\": -0.01823829673230648, \"umap_y\": 4.256145000457764, \"post_id\": 7873.0, \"author_id\": 599.0, \"id_y\": 599.0, \"author\": \"antifaschistische Gruppe Erfurt\", \"author_group\": \"Other\"}, {\"id_x\": 7873, \"umap_x\": -0.01823829673230648, \"umap_y\": 4.256145000457764, \"post_id\": 7873.0, \"author_id\": 600.0, \"id_y\": 600.0, \"author\": \"dissens\", \"author_group\": \"Other\"}, {\"id_x\": 7876, \"umap_x\": -0.7688723206520081, \"umap_y\": 2.634000062942505, \"post_id\": 7876.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 7881, \"umap_x\": -3.003610610961914, \"umap_y\": 1.7381953001022339, \"post_id\": 7881.0, \"author_id\": 601.0, \"id_y\": 601.0, \"author\": \"Interventionistische Linke\", \"author_group\": \"Other\"}, {\"id_x\": 7884, \"umap_x\": -3.171875238418579, \"umap_y\": 2.2235395908355713, \"post_id\": 7884.0, \"author_id\": 88.0, \"id_y\": 88.0, \"author\": \"Maximilian Helm\", \"author_group\": \"Other\"}, {\"id_x\": 7884, \"umap_x\": -3.171875238418579, \"umap_y\": 2.2235395908355713, \"post_id\": 7884.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7886, \"umap_x\": 0.399919718503952, \"umap_y\": -0.5542386770248413, \"post_id\": 7886.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 7886, \"umap_x\": 0.399919718503952, \"umap_y\": -0.5542386770248413, \"post_id\": 7886.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 7889, \"umap_x\": -3.509650707244873, \"umap_y\": -0.13468141853809357, \"post_id\": 7889.0, \"author_id\": 500.0, \"id_y\": 500.0, \"author\": \"Julia Grunwald\", \"author_group\": \"Other\"}, {\"id_x\": 7889, \"umap_x\": -3.509650707244873, \"umap_y\": -0.13468141853809357, \"post_id\": 7889.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 7891, \"umap_x\": -2.464564561843872, \"umap_y\": 0.13663557171821594, \"post_id\": 7891.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 7891, \"umap_x\": -2.464564561843872, \"umap_y\": 0.13663557171821594, \"post_id\": 7891.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 7893, \"umap_x\": 1.354575276374817, \"umap_y\": 0.09972628206014633, \"post_id\": 7893.0, \"author_id\": 602.0, \"id_y\": 602.0, \"author\": \"Dirk Schulze\", \"author_group\": \"Other\"}, {\"id_x\": 7893, \"umap_x\": 1.354575276374817, \"umap_y\": 0.09972628206014633, \"post_id\": 7893.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7895, \"umap_x\": 0.79522305727005, \"umap_y\": 0.8679884672164917, \"post_id\": 7895.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 7895, \"umap_x\": 0.79522305727005, \"umap_y\": 0.8679884672164917, \"post_id\": 7895.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7897, \"umap_x\": 0.8447806239128113, \"umap_y\": 2.750561475753784, \"post_id\": 7897.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 7905, \"umap_x\": -2.779449939727783, \"umap_y\": 1.9100855588912964, \"post_id\": 7905.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 7907, \"umap_x\": -1.0073838233947754, \"umap_y\": -0.3993932902812958, \"post_id\": 7907.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 7907, \"umap_x\": -1.0073838233947754, \"umap_y\": -0.3993932902812958, \"post_id\": 7907.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7922, \"umap_x\": -0.9966121315956116, \"umap_y\": 2.5482640266418457, \"post_id\": 7922.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 7930, \"umap_x\": 1.051527976989746, \"umap_y\": -0.5553398132324219, \"post_id\": 7930.0, \"author_id\": 603.0, \"id_y\": 603.0, \"author\": \"Moritz Schloms\", \"author_group\": \"Other\"}, {\"id_x\": 7930, \"umap_x\": 1.051527976989746, \"umap_y\": -0.5553398132324219, \"post_id\": 7930.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7932, \"umap_x\": 1.1147370338439941, \"umap_y\": 0.5153141617774963, \"post_id\": 7932.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 7932, \"umap_x\": 1.1147370338439941, \"umap_y\": 0.5153141617774963, \"post_id\": 7932.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7934, \"umap_x\": -0.8150604963302612, \"umap_y\": 0.6610559821128845, \"post_id\": 7934.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 7939, \"umap_x\": -0.8575966358184814, \"umap_y\": -0.9782310724258423, \"post_id\": 7939.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7941, \"umap_x\": -0.1075526624917984, \"umap_y\": 1.679505467414856, \"post_id\": 7941.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7945, \"umap_x\": -0.4515722095966339, \"umap_y\": 1.1156179904937744, \"post_id\": 7945.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 7945, \"umap_x\": -0.4515722095966339, \"umap_y\": 1.1156179904937744, \"post_id\": 7945.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 7947, \"umap_x\": -2.3185877799987793, \"umap_y\": -1.9076675176620483, \"post_id\": 7947.0, \"author_id\": 604.0, \"id_y\": 604.0, \"author\": \"Jos Diegel\", \"author_group\": \"Other\"}, {\"id_x\": 7949, \"umap_x\": 1.0201159715652466, \"umap_y\": -0.7254721522331238, \"post_id\": 7949.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 7949, \"umap_x\": 1.0201159715652466, \"umap_y\": -0.7254721522331238, \"post_id\": 7949.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7953, \"umap_x\": -0.7448609471321106, \"umap_y\": 2.5912888050079346, \"post_id\": 7953.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 7956, \"umap_x\": -3.334237813949585, \"umap_y\": 1.557044506072998, \"post_id\": 7956.0, \"author_id\": 605.0, \"id_y\": 605.0, \"author\": \"Leonie Beyerlein\", \"author_group\": \"Other\"}, {\"id_x\": 7956, \"umap_x\": -3.334237813949585, \"umap_y\": 1.557044506072998, \"post_id\": 7956.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7961, \"umap_x\": -1.2063833475112915, \"umap_y\": 3.0632784366607666, \"post_id\": 7961.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 7963, \"umap_x\": 0.02553166076540947, \"umap_y\": 0.8793206810951233, \"post_id\": 7963.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 7963, \"umap_x\": 0.02553166076540947, \"umap_y\": 0.8793206810951233, \"post_id\": 7963.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 7965, \"umap_x\": -1.2214103937149048, \"umap_y\": 0.5091949701309204, \"post_id\": 7965.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7965, \"umap_x\": -1.2214103937149048, \"umap_y\": 0.5091949701309204, \"post_id\": 7965.0, \"author_id\": 606.0, \"id_y\": 606.0, \"author\": \"Ildiko R\\u00f6d\", \"author_group\": \"Other\"}, {\"id_x\": 7965, \"umap_x\": -1.2214103937149048, \"umap_y\": 0.5091949701309204, \"post_id\": 7965.0, \"author_id\": 607.0, \"id_y\": 607.0, \"author\": \"Ulrich Wangemann\", \"author_group\": \"Other\"}, {\"id_x\": 7967, \"umap_x\": -2.3198108673095703, \"umap_y\": -1.8849976062774658, \"post_id\": 7967.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7967, \"umap_x\": -2.3198108673095703, \"umap_y\": -1.8849976062774658, \"post_id\": 7967.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 7969, \"umap_x\": 1.048211932182312, \"umap_y\": 4.033749103546143, \"post_id\": 7969.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 7976, \"umap_x\": -4.250489234924316, \"umap_y\": -0.20299629867076874, \"post_id\": 7976.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 7976, \"umap_x\": -4.250489234924316, \"umap_y\": -0.20299629867076874, \"post_id\": 7976.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7978, \"umap_x\": 1.3114209175109863, \"umap_y\": 3.848517894744873, \"post_id\": 7978.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 7978, \"umap_x\": 1.3114209175109863, \"umap_y\": 3.848517894744873, \"post_id\": 7978.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 7995, \"umap_x\": 1.2017652988433838, \"umap_y\": 1.057228684425354, \"post_id\": 7995.0, \"author_id\": 608.0, \"id_y\": 608.0, \"author\": \"Harald Stutte\", \"author_group\": \"Other\"}, {\"id_x\": 7995, \"umap_x\": 1.2017652988433838, \"umap_y\": 1.057228684425354, \"post_id\": 7995.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 7999, \"umap_x\": 1.5218958854675293, \"umap_y\": 3.447511911392212, \"post_id\": 7999.0, \"author_id\": 335.0, \"id_y\": 335.0, \"author\": \"Indymedia\", \"author_group\": \"Other\"}, {\"id_x\": 8001, \"umap_x\": -1.615261435508728, \"umap_y\": -0.049767445772886276, \"post_id\": 8001.0, \"author_id\": 609.0, \"id_y\": 609.0, \"author\": \"Felix Schilk\", \"author_group\": \"Other\"}, {\"id_x\": 8003, \"umap_x\": -1.029253363609314, \"umap_y\": 1.7954617738723755, \"post_id\": 8003.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8005, \"umap_x\": -2.386812686920166, \"umap_y\": 0.64154052734375, \"post_id\": 8005.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8007, \"umap_x\": 1.2681472301483154, \"umap_y\": 0.06189616397023201, \"post_id\": 8007.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8007, \"umap_x\": 1.2681472301483154, \"umap_y\": 0.06189616397023201, \"post_id\": 8007.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8009, \"umap_x\": -1.394553542137146, \"umap_y\": 1.1245609521865845, \"post_id\": 8009.0, \"author_id\": 610.0, \"id_y\": 610.0, \"author\": \"Karin Christmann\", \"author_group\": \"Other\"}, {\"id_x\": 8018, \"umap_x\": -0.7927171587944031, \"umap_y\": 5.216126918792725, \"post_id\": 8018.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 8021, \"umap_x\": -1.9107520580291748, \"umap_y\": 2.05834698677063, \"post_id\": 8021.0, \"author_id\": 611.0, \"id_y\": 611.0, \"author\": \"Gerhard Jakob\", \"author_group\": \"Other\"}, {\"id_x\": 8021, \"umap_x\": -1.9107520580291748, \"umap_y\": 2.05834698677063, \"post_id\": 8021.0, \"author_id\": 612.0, \"id_y\": 612.0, \"author\": \"Hermann Tydecks\", \"author_group\": \"Other\"}, {\"id_x\": 8023, \"umap_x\": -3.288151979446411, \"umap_y\": 2.5714874267578125, \"post_id\": 8023.0, \"author_id\": 436.0, \"id_y\": 436.0, \"author\": \"Andreas Weller\", \"author_group\": \"Other\"}, {\"id_x\": 8025, \"umap_x\": -0.7820786833763123, \"umap_y\": 1.917922019958496, \"post_id\": 8025.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 8028, \"umap_x\": 1.0907310247421265, \"umap_y\": -0.5739158391952515, \"post_id\": 8028.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 8033, \"umap_x\": -1.3282959461212158, \"umap_y\": 4.190499305725098, \"post_id\": 8033.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8036, \"umap_x\": -0.963020384311676, \"umap_y\": -0.4646284580230713, \"post_id\": 8036.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 8039, \"umap_x\": -0.23739352822303772, \"umap_y\": 0.2547614872455597, \"post_id\": 8039.0, \"author_id\": 614.0, \"id_y\": 614.0, \"author\": \"Manuela M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 8044, \"umap_x\": 0.4030101001262665, \"umap_y\": 3.019289493560791, \"post_id\": 8044.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 8046, \"umap_x\": -0.1762387603521347, \"umap_y\": 4.269683837890625, \"post_id\": 8046.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 8049, \"umap_x\": -1.4519847631454468, \"umap_y\": 0.6519579291343689, \"post_id\": 8049.0, \"author_id\": 615.0, \"id_y\": 615.0, \"author\": \"Luise Mosig\", \"author_group\": \"Other\"}, {\"id_x\": 8051, \"umap_x\": -0.2470327466726303, \"umap_y\": 0.6668496131896973, \"post_id\": 8051.0, \"author_id\": 616.0, \"id_y\": 616.0, \"author\": \"Cristina Marina\", \"author_group\": \"Other\"}, {\"id_x\": 8053, \"umap_x\": -0.8146611452102661, \"umap_y\": -1.0525646209716797, \"post_id\": 8053.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 8055, \"umap_x\": -1.1969406604766846, \"umap_y\": 4.141325950622559, \"post_id\": 8055.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 8057, \"umap_x\": -0.28952401876449585, \"umap_y\": 0.8047743439674377, \"post_id\": 8057.0, \"author_id\": 484.0, \"id_y\": 484.0, \"author\": \"Christian Mathea\", \"author_group\": \"Other\"}, {\"id_x\": 8059, \"umap_x\": 0.5939769744873047, \"umap_y\": 1.57472562789917, \"post_id\": 8059.0, \"author_id\": 617.0, \"id_y\": 617.0, \"author\": \"Annett Heyse\", \"author_group\": \"Other\"}, {\"id_x\": 8078, \"umap_x\": -0.0830567330121994, \"umap_y\": 1.5118378400802612, \"post_id\": 8078.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 8082, \"umap_x\": 0.7898226380348206, \"umap_y\": -0.9364876747131348, \"post_id\": 8082.0, \"author_id\": 618.0, \"id_y\": 618.0, \"author\": \"Antifa News\", \"author_group\": \"Other\"}, {\"id_x\": 8084, \"umap_x\": -0.45821407437324524, \"umap_y\": 1.3391718864440918, \"post_id\": 8084.0, \"author_id\": 647.0, \"id_y\": 647.0, \"author\": \"Yaro Allisat\", \"author_group\": \"Other\"}, {\"id_x\": 8086, \"umap_x\": 0.2707379162311554, \"umap_y\": -0.9340813159942627, \"post_id\": 8086.0, \"author_id\": 620.0, \"id_y\": 620.0, \"author\": \"Anna-Louise Lang\", \"author_group\": \"Other\"}, {\"id_x\": 8090, \"umap_x\": -0.7166516184806824, \"umap_y\": 3.367708444595337, \"post_id\": 8090.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 8092, \"umap_x\": -0.7436434030532837, \"umap_y\": 3.7044830322265625, \"post_id\": 8092.0, \"author_id\": 579.0, \"id_y\": 579.0, \"author\": \"Antifavernetzung Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8099, \"umap_x\": -0.31915101408958435, \"umap_y\": 1.3447734117507935, \"post_id\": 8099.0, \"author_id\": 574.0, \"id_y\": 574.0, \"author\": \"Dirk Wurzel\", \"author_group\": \"Other\"}, {\"id_x\": 8099, \"umap_x\": -0.31915101408958435, \"umap_y\": 1.3447734117507935, \"post_id\": 8099.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8101, \"umap_x\": -2.227771520614624, \"umap_y\": 0.641353189945221, \"post_id\": 8101.0, \"author_id\": 621.0, \"id_y\": 621.0, \"author\": \"Presseschau\", \"author_group\": \"Other\"}, {\"id_x\": 8103, \"umap_x\": -2.6427876949310303, \"umap_y\": 1.3680449724197388, \"post_id\": 8103.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8103, \"umap_x\": -2.6427876949310303, \"umap_y\": 1.3680449724197388, \"post_id\": 8103.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8105, \"umap_x\": -1.5477781295776367, \"umap_y\": -1.0351005792617798, \"post_id\": 8105.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8105, \"umap_x\": -1.5477781295776367, \"umap_y\": -1.0351005792617798, \"post_id\": 8105.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8109, \"umap_x\": -3.128880023956299, \"umap_y\": 4.259984016418457, \"post_id\": 8109.0, \"author_id\": 239.0, \"id_y\": 239.0, \"author\": \"Kay W\\u00fcrker\", \"author_group\": \"Other\"}, {\"id_x\": 8109, \"umap_x\": -3.128880023956299, \"umap_y\": 4.259984016418457, \"post_id\": 8109.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8111, \"umap_x\": -0.2596302926540375, \"umap_y\": 1.6082504987716675, \"post_id\": 8111.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 8113, \"umap_x\": -3.5466365814208984, \"umap_y\": 2.4232711791992188, \"post_id\": 8113.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 8115, \"umap_x\": -3.8676517009735107, \"umap_y\": -1.0225672721862793, \"post_id\": 8115.0, \"author_id\": 623.0, \"id_y\": 623.0, \"author\": \"Lena Gr\\u00fctzmacher\", \"author_group\": \"Other\"}, {\"id_x\": 8120, \"umap_x\": -3.376720428466797, \"umap_y\": -0.663228452205658, \"post_id\": 8120.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 8120, \"umap_x\": -3.376720428466797, \"umap_y\": -0.663228452205658, \"post_id\": 8120.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8124, \"umap_x\": -3.609365940093994, \"umap_y\": 1.5436545610427856, \"post_id\": 8124.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8126, \"umap_x\": -2.6451351642608643, \"umap_y\": 5.602927207946777, \"post_id\": 8126.0, \"author_id\": 314.0, \"id_y\": 314.0, \"author\": \"FQZ\", \"author_group\": \"Other\"}, {\"id_x\": 8133, \"umap_x\": -1.036697268486023, \"umap_y\": 1.160111665725708, \"post_id\": 8133.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8135, \"umap_x\": -1.650655746459961, \"umap_y\": -0.9160677194595337, \"post_id\": 8135.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8137, \"umap_x\": -3.8027544021606445, \"umap_y\": -0.9853273034095764, \"post_id\": 8137.0, \"author_id\": 624.0, \"id_y\": 624.0, \"author\": \"Tanja de Wall\", \"author_group\": \"Other\"}, {\"id_x\": 8137, \"umap_x\": -3.8027544021606445, \"umap_y\": -0.9853273034095764, \"post_id\": 8137.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8139, \"umap_x\": 0.9439272880554199, \"umap_y\": -0.5716819167137146, \"post_id\": 8139.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 8139, \"umap_x\": 0.9439272880554199, \"umap_y\": -0.5716819167137146, \"post_id\": 8139.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8141, \"umap_x\": 0.4700559675693512, \"umap_y\": 5.820642471313477, \"post_id\": 8141.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8143, \"umap_x\": 0.4606322944164276, \"umap_y\": 5.759826183319092, \"post_id\": 8143.0, \"author_id\": 625.0, \"id_y\": 625.0, \"author\": \"Gruppe CAT\", \"author_group\": \"Other\"}, {\"id_x\": 8147, \"umap_x\": -0.31266364455223083, \"umap_y\": 0.259555846452713, \"post_id\": 8147.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 8147, \"umap_x\": -0.31266364455223083, \"umap_y\": 0.259555846452713, \"post_id\": 8147.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8149, \"umap_x\": -2.5313732624053955, \"umap_y\": -0.5295583009719849, \"post_id\": 8149.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8149, \"umap_x\": -2.5313732624053955, \"umap_y\": -0.5295583009719849, \"post_id\": 8149.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8159, \"umap_x\": 1.8762080669403076, \"umap_y\": 3.4099390506744385, \"post_id\": 8159.0, \"author_id\": 8.0, \"id_y\": 8.0, \"author\": \"ABC Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 8161, \"umap_x\": 1.4888508319854736, \"umap_y\": 3.67089581489563, \"post_id\": 8161.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 8163, \"umap_x\": 1.3239660263061523, \"umap_y\": 3.932983160018921, \"post_id\": 8163.0, \"author_id\": 626.0, \"id_y\": 626.0, \"author\": \"WSAL\", \"author_group\": \"Other\"}, {\"id_x\": 8165, \"umap_x\": 0.3449874818325043, \"umap_y\": 3.7972052097320557, \"post_id\": 8165.0, \"author_id\": 572.0, \"id_y\": 572.0, \"author\": \"Caf\\u00e9 Sabotage\", \"author_group\": \"Other\"}, {\"id_x\": 8165, \"umap_x\": 0.3449874818325043, \"umap_y\": 3.7972052097320557, \"post_id\": 8165.0, \"author_id\": 627.0, \"id_y\": 627.0, \"author\": \"Rosa Antifa Wien\", \"author_group\": \"Other\"}, {\"id_x\": 8167, \"umap_x\": -1.418976068496704, \"umap_y\": -1.4937222003936768, \"post_id\": 8167.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8169, \"umap_x\": -2.5118703842163086, \"umap_y\": 1.4413787126541138, \"post_id\": 8169.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 8171, \"umap_x\": 0.3140551447868347, \"umap_y\": 4.203198432922363, \"post_id\": 8171.0, \"author_id\": 628.0, \"id_y\": 628.0, \"author\": \"M\\u00fcnchen\", \"author_group\": \"Other\"}, {\"id_x\": 8173, \"umap_x\": -3.5100042819976807, \"umap_y\": 3.484018325805664, \"post_id\": 8173.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 8173, \"umap_x\": -3.5100042819976807, \"umap_y\": 3.484018325805664, \"post_id\": 8173.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8175, \"umap_x\": -2.538296937942505, \"umap_y\": -0.43653079867362976, \"post_id\": 8175.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 8175, \"umap_x\": -2.538296937942505, \"umap_y\": -0.43653079867362976, \"post_id\": 8175.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8177, \"umap_x\": -1.0100094079971313, \"umap_y\": 1.1149095296859741, \"post_id\": 8177.0, \"author_id\": 629.0, \"id_y\": 629.0, \"author\": \"J\\u00fcrgen Kleindienst\", \"author_group\": \"Other\"}, {\"id_x\": 8177, \"umap_x\": -1.0100094079971313, \"umap_y\": 1.1149095296859741, \"post_id\": 8177.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8179, \"umap_x\": -3.325054168701172, \"umap_y\": 2.9540600776672363, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 8187, \"umap_x\": -0.2582409679889679, \"umap_y\": 2.7161777019500732, \"post_id\": 8187.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8187, \"umap_x\": -0.2582409679889679, \"umap_y\": 2.7161777019500732, \"post_id\": 8187.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8191, \"umap_x\": -0.19302892684936523, \"umap_y\": 2.57995343208313, \"post_id\": 8191.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 8196, \"umap_x\": -0.9817057251930237, \"umap_y\": 1.0856471061706543, \"post_id\": 8196.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 8196, \"umap_x\": -0.9817057251930237, \"umap_y\": 1.0856471061706543, \"post_id\": 8196.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8198, \"umap_x\": -3.4322073459625244, \"umap_y\": 1.2972526550292969, \"post_id\": 8198.0, \"author_id\": 630.0, \"id_y\": 630.0, \"author\": \"Leon Meckler\", \"author_group\": \"Other\"}, {\"id_x\": 8198, \"umap_x\": -3.4322073459625244, \"umap_y\": 1.2972526550292969, \"post_id\": 8198.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8200, \"umap_x\": -1.4256179332733154, \"umap_y\": -1.0886141061782837, \"post_id\": 8200.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8200, \"umap_x\": -1.4256179332733154, \"umap_y\": -1.0886141061782837, \"post_id\": 8200.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8202, \"umap_x\": -2.8990726470947266, \"umap_y\": -1.6569490432739258, \"post_id\": 8202.0, \"author_id\": 631.0, \"id_y\": 631.0, \"author\": \"Amalia Seefeldt\", \"author_group\": \"Other\"}, {\"id_x\": 8202, \"umap_x\": -2.8990726470947266, \"umap_y\": -1.6569490432739258, \"post_id\": 8202.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8204, \"umap_x\": -1.1108230352401733, \"umap_y\": 1.472162127494812, \"post_id\": 8204.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8214, \"umap_x\": -2.5399999618530273, \"umap_y\": -1.8179601430892944, \"post_id\": 8214.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8214, \"umap_x\": -2.5399999618530273, \"umap_y\": -1.8179601430892944, \"post_id\": 8214.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8216, \"umap_x\": 1.146168828010559, \"umap_y\": -0.7137728929519653, \"post_id\": 8216.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 8216, \"umap_x\": 1.146168828010559, \"umap_y\": -0.7137728929519653, \"post_id\": 8216.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8216, \"umap_x\": 1.146168828010559, \"umap_y\": -0.7137728929519653, \"post_id\": 8216.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8218, \"umap_x\": -2.232006311416626, \"umap_y\": 0.8684405088424683, \"post_id\": 8218.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 8220, \"umap_x\": 0.16639068722724915, \"umap_y\": 3.7253565788269043, \"post_id\": 8220.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8222, \"umap_x\": -2.2151176929473877, \"umap_y\": 1.5777796506881714, \"post_id\": 8222.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 8224, \"umap_x\": 1.0582269430160522, \"umap_y\": -0.36849114298820496, \"post_id\": 8224.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 8224, \"umap_x\": 1.0582269430160522, \"umap_y\": -0.36849114298820496, \"post_id\": 8224.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 8224, \"umap_x\": 1.0582269430160522, \"umap_y\": -0.36849114298820496, \"post_id\": 8224.0, \"author_id\": 632.0, \"id_y\": 632.0, \"author\": \"S\\u00e4chsische\", \"author_group\": \"Other\"}, {\"id_x\": 8229, \"umap_x\": -2.509904623031616, \"umap_y\": -0.7382681369781494, \"post_id\": 8229.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8229, \"umap_x\": -2.509904623031616, \"umap_y\": -0.7382681369781494, \"post_id\": 8229.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 8231, \"umap_x\": -0.03998873755335808, \"umap_y\": 4.875256538391113, \"post_id\": 8231.0, \"author_id\": 633.0, \"id_y\": 633.0, \"author\": \"Lea von der Hude\", \"author_group\": \"Other\"}, {\"id_x\": 8231, \"umap_x\": -0.03998873755335808, \"umap_y\": 4.875256538391113, \"post_id\": 8231.0, \"author_id\": 634.0, \"id_y\": 634.0, \"author\": \"Standard\", \"author_group\": \"Other\"}, {\"id_x\": 8233, \"umap_x\": -2.707346200942993, \"umap_y\": 2.1174802780151367, \"post_id\": 8233.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8235, \"umap_x\": -0.49049147963523865, \"umap_y\": 2.87027907371521, \"post_id\": 8235.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 8239, \"umap_x\": 1.0691114664077759, \"umap_y\": 4.001825332641602, \"post_id\": 8239.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8241, \"umap_x\": 1.6493375301361084, \"umap_y\": 3.5520095825195312, \"post_id\": 8241.0, \"author_id\": 635.0, \"id_y\": 635.0, \"author\": \"Antifa-Solidarit\\u00e4t\", \"author_group\": \"Other\"}, {\"id_x\": 8243, \"umap_x\": -0.38483771681785583, \"umap_y\": -1.7807828187942505, \"post_id\": 8243.0, \"author_id\": 636.0, \"id_y\": 636.0, \"author\": \"Anti-Repressions-B\\u00fcndnis Halle\", \"author_group\": \"Other\"}, {\"id_x\": 8253, \"umap_x\": -3.004060745239258, \"umap_y\": 1.6402382850646973, \"post_id\": 8253.0, \"author_id\": 637.0, \"id_y\": 637.0, \"author\": \"Nicole Grziwa\", \"author_group\": \"Other\"}, {\"id_x\": 8253, \"umap_x\": -3.004060745239258, \"umap_y\": 1.6402382850646973, \"post_id\": 8253.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 8253, \"umap_x\": -3.004060745239258, \"umap_y\": 1.6402382850646973, \"post_id\": 8253.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8255, \"umap_x\": -1.060329794883728, \"umap_y\": 0.08087510615587234, \"post_id\": 8255.0, \"author_id\": 227.0, \"id_y\": 227.0, \"author\": \"Erik Kiwitter\", \"author_group\": \"Other\"}, {\"id_x\": 8255, \"umap_x\": -1.060329794883728, \"umap_y\": 0.08087510615587234, \"post_id\": 8255.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8257, \"umap_x\": -2.9390103816986084, \"umap_y\": 0.6312251091003418, \"post_id\": 8257.0, \"author_id\": 630.0, \"id_y\": 630.0, \"author\": \"Leon Meckler\", \"author_group\": \"Other\"}, {\"id_x\": 8257, \"umap_x\": -2.9390103816986084, \"umap_y\": 0.6312251091003418, \"post_id\": 8257.0, \"author_id\": 638.0, \"id_y\": 638.0, \"author\": \"Paul Hildebrand\", \"author_group\": \"Other\"}, {\"id_x\": 8259, \"umap_x\": -1.2488160133361816, \"umap_y\": 4.153384685516357, \"post_id\": 8259.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 8261, \"umap_x\": -2.6131255626678467, \"umap_y\": 0.029590653255581856, \"post_id\": 8261.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8263, \"umap_x\": -0.9760791659355164, \"umap_y\": 6.263047695159912, \"post_id\": 8263.0, \"author_id\": 253.0, \"id_y\": 253.0, \"author\": \"Soligruppe B34\", \"author_group\": \"Other\"}, {\"id_x\": 8266, \"umap_x\": 0.6009564399719238, \"umap_y\": 3.584840774536133, \"post_id\": 8266.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 8266, \"umap_x\": 0.6009564399719238, \"umap_y\": 3.584840774536133, \"post_id\": 8266.0, \"author_id\": 316.0, \"id_y\": 316.0, \"author\": \"Kommunistische Gruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8270, \"umap_x\": -3.077477216720581, \"umap_y\": 1.759757399559021, \"post_id\": 8270.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 8270, \"umap_x\": -3.077477216720581, \"umap_y\": 1.759757399559021, \"post_id\": 8270.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8272, \"umap_x\": -1.4773632287979126, \"umap_y\": -0.7539505362510681, \"post_id\": 8272.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 8272, \"umap_x\": -1.4773632287979126, \"umap_y\": -0.7539505362510681, \"post_id\": 8272.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8274, \"umap_x\": -0.08548951894044876, \"umap_y\": 3.789759635925293, \"post_id\": 8274.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 8274, \"umap_x\": -0.08548951894044876, \"umap_y\": 3.789759635925293, \"post_id\": 8274.0, \"author_id\": 640.0, \"id_y\": 640.0, \"author\": \"AIB\", \"author_group\": \"Other\"}, {\"id_x\": 8276, \"umap_x\": 1.1474121809005737, \"umap_y\": 3.6033012866973877, \"post_id\": 8276.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 8278, \"umap_x\": 0.08811044692993164, \"umap_y\": 3.8117516040802, \"post_id\": 8278.0, \"author_id\": 640.0, \"id_y\": 640.0, \"author\": \"AIB\", \"author_group\": \"Other\"}, {\"id_x\": 8280, \"umap_x\": 0.27048367261886597, \"umap_y\": 3.7528064250946045, \"post_id\": 8280.0, \"author_id\": 641.0, \"id_y\": 641.0, \"author\": \"Henning v. Stoltzenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8280, \"umap_x\": 0.27048367261886597, \"umap_y\": 3.7528064250946045, \"post_id\": 8280.0, \"author_id\": 642.0, \"id_y\": 642.0, \"author\": \"Bundesvorstand der Roten Hilfe e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 8284, \"umap_x\": -0.41023844480514526, \"umap_y\": 0.45730167627334595, \"post_id\": 8284.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 8284, \"umap_x\": -0.41023844480514526, \"umap_y\": 0.45730167627334595, \"post_id\": 8284.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8286, \"umap_x\": 0.8590466380119324, \"umap_y\": -0.18442252278327942, \"post_id\": 8286.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8295, \"umap_x\": -2.8038179874420166, \"umap_y\": 0.3256370723247528, \"post_id\": 8295.0, \"author_id\": 643.0, \"id_y\": 643.0, \"author\": \"antifa\", \"author_group\": \"Other\"}, {\"id_x\": 8302, \"umap_x\": -2.973879814147949, \"umap_y\": -1.2467482089996338, \"post_id\": 8302.0, \"author_id\": 638.0, \"id_y\": 638.0, \"author\": \"Paul Hildebrand\", \"author_group\": \"Other\"}, {\"id_x\": 8302, \"umap_x\": -2.973879814147949, \"umap_y\": -1.2467482089996338, \"post_id\": 8302.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8304, \"umap_x\": -1.680302619934082, \"umap_y\": -0.44238096475601196, \"post_id\": 8304.0, \"author_id\": 644.0, \"id_y\": 644.0, \"author\": \"EA Hamburg\", \"author_group\": \"Other\"}, {\"id_x\": 8308, \"umap_x\": 0.22122451663017273, \"umap_y\": 0.5917954444885254, \"post_id\": 8308.0, \"author_id\": 645.0, \"id_y\": 645.0, \"author\": \"Sophie Tiedemann\", \"author_group\": \"Other\"}, {\"id_x\": 8308, \"umap_x\": 0.22122451663017273, \"umap_y\": 0.5917954444885254, \"post_id\": 8308.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 8310, \"umap_x\": -1.0832229852676392, \"umap_y\": 2.2953310012817383, \"post_id\": 8310.0, \"author_id\": 646.0, \"id_y\": 646.0, \"author\": \"Lilli Neuhaus\", \"author_group\": \"Other\"}, {\"id_x\": 8310, \"umap_x\": -1.0832229852676392, \"umap_y\": 2.2953310012817383, \"post_id\": 8310.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8312, \"umap_x\": 1.7078510522842407, \"umap_y\": 3.540384292602539, \"post_id\": 8312.0, \"author_id\": 132.0, \"id_y\": 132.0, \"author\": \"Criminals for Freedom\", \"author_group\": \"Other\"}, {\"id_x\": 8314, \"umap_x\": -1.2090407609939575, \"umap_y\": 4.0267720222473145, \"post_id\": 8314.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8318, \"umap_x\": -2.3048627376556396, \"umap_y\": 1.9343516826629639, \"post_id\": 8318.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8318, \"umap_x\": -2.3048627376556396, \"umap_y\": 1.9343516826629639, \"post_id\": 8318.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8321, \"umap_x\": -2.327986478805542, \"umap_y\": 2.507153272628784, \"post_id\": 8321.0, \"author_id\": 647.0, \"id_y\": 647.0, \"author\": \"Yaro Allisat\", \"author_group\": \"Other\"}, {\"id_x\": 8321, \"umap_x\": -2.327986478805542, \"umap_y\": 2.507153272628784, \"post_id\": 8321.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8329, \"umap_x\": -0.5108381509780884, \"umap_y\": -0.7670766711235046, \"post_id\": 8329.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8331, \"umap_x\": -3.254260778427124, \"umap_y\": 0.33578968048095703, \"post_id\": 8331.0, \"author_id\": 648.0, \"id_y\": 648.0, \"author\": \"Maximilian B\\u00e4r\", \"author_group\": \"Other\"}, {\"id_x\": 8333, \"umap_x\": 0.8173006772994995, \"umap_y\": 1.251478672027588, \"post_id\": 8333.0, \"author_id\": 649.0, \"id_y\": 649.0, \"author\": \"Robert Feustel\", \"author_group\": \"Other\"}, {\"id_x\": 8335, \"umap_x\": 0.34317779541015625, \"umap_y\": -0.3640092611312866, \"post_id\": 8335.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8337, \"umap_x\": 0.8207727670669556, \"umap_y\": -0.3947414755821228, \"post_id\": 8337.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8339, \"umap_x\": 1.1462125778198242, \"umap_y\": 3.442965507507324, \"post_id\": 8339.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8341, \"umap_x\": -0.9660834074020386, \"umap_y\": 4.970818042755127, \"post_id\": 8341.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8343, \"umap_x\": -3.4443347454071045, \"umap_y\": 3.58070707321167, \"post_id\": 8343.0, \"author_id\": 650.0, \"id_y\": 650.0, \"author\": \"Maika Schmitt\", \"author_group\": \"Other\"}, {\"id_x\": 8347, \"umap_x\": -4.266394138336182, \"umap_y\": -0.3222928047180176, \"post_id\": 8347.0, \"author_id\": 651.0, \"id_y\": 651.0, \"author\": \"RHK\", \"author_group\": \"Other\"}, {\"id_x\": 8366, \"umap_x\": 0.166203573346138, \"umap_y\": 0.692948043346405, \"post_id\": 8366.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8368, \"umap_x\": -4.558471202850342, \"umap_y\": 4.510885238647461, \"post_id\": 8368.0, \"author_id\": 652.0, \"id_y\": 652.0, \"author\": \"Pressespiegel\", \"author_group\": \"Other\"}, {\"id_x\": 8370, \"umap_x\": -3.6327579021453857, \"umap_y\": 2.5729079246520996, \"post_id\": 8370.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8372, \"umap_x\": -1.9505447149276733, \"umap_y\": 2.3809406757354736, \"post_id\": 8372.0, \"author_id\": 653.0, \"id_y\": 653.0, \"author\": \"Doris Akrap\", \"author_group\": \"Other\"}, {\"id_x\": 8374, \"umap_x\": -2.6363816261291504, \"umap_y\": 0.23408243060112, \"post_id\": 8374.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 8374, \"umap_x\": -2.6363816261291504, \"umap_y\": 0.23408243060112, \"post_id\": 8374.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8376, \"umap_x\": -0.44387874007225037, \"umap_y\": 1.4378749132156372, \"post_id\": 8376.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 8376, \"umap_x\": -0.44387874007225037, \"umap_y\": 1.4378749132156372, \"post_id\": 8376.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8379, \"umap_x\": -4.499955654144287, \"umap_y\": 4.481741905212402, \"post_id\": 8379.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8382, \"umap_x\": -2.3780975341796875, \"umap_y\": -0.1327224224805832, \"post_id\": 8382.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8384, \"umap_x\": 0.3549802601337433, \"umap_y\": -0.1843327432870865, \"post_id\": 8384.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 8386, \"umap_x\": 0.9418486952781677, \"umap_y\": -0.8419314026832581, \"post_id\": 8386.0, \"author_id\": 654.0, \"id_y\": 654.0, \"author\": \"Andrea R\\u00f6pke\", \"author_group\": \"Other\"}, {\"id_x\": 8392, \"umap_x\": 0.13267555832862854, \"umap_y\": 2.115464925765991, \"post_id\": 8392.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 8392, \"umap_x\": 0.13267555832862854, \"umap_y\": 2.115464925765991, \"post_id\": 8392.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8399, \"umap_x\": -3.6536865234375, \"umap_y\": 2.551482677459717, \"post_id\": 8399.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8401, \"umap_x\": -0.6433393955230713, \"umap_y\": -0.9701282978057861, \"post_id\": 8401.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8401, \"umap_x\": -0.6433393955230713, \"umap_y\": -0.9701282978057861, \"post_id\": 8401.0, \"author_id\": 655.0, \"id_y\": 655.0, \"author\": \"Axel Hemmerling\", \"author_group\": \"Other\"}, {\"id_x\": 8401, \"umap_x\": -0.6433393955230713, \"umap_y\": -0.9701282978057861, \"post_id\": 8401.0, \"author_id\": 656.0, \"id_y\": 656.0, \"author\": \"Ludwig Kendzia\", \"author_group\": \"Other\"}, {\"id_x\": 8403, \"umap_x\": -2.4168238639831543, \"umap_y\": 0.6060543060302734, \"post_id\": 8403.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 8405, \"umap_x\": -2.7224791049957275, \"umap_y\": 1.7830984592437744, \"post_id\": 8405.0, \"author_id\": 657.0, \"id_y\": 657.0, \"author\": \"Der Tag\", \"author_group\": \"Other\"}, {\"id_x\": 8408, \"umap_x\": -1.5258004665374756, \"umap_y\": -1.2200974225997925, \"post_id\": 8408.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8411, \"umap_x\": 0.0272565595805645, \"umap_y\": 4.141118049621582, \"post_id\": 8411.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8416, \"umap_x\": -2.280219078063965, \"umap_y\": -0.3250886797904968, \"post_id\": 8416.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8418, \"umap_x\": -1.4699361324310303, \"umap_y\": -0.973236620426178, \"post_id\": 8418.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8418, \"umap_x\": -1.4699361324310303, \"umap_y\": -0.973236620426178, \"post_id\": 8418.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8420, \"umap_x\": -2.2235491275787354, \"umap_y\": -1.029754400253296, \"post_id\": 8420.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8420, \"umap_x\": -2.2235491275787354, \"umap_y\": -1.029754400253296, \"post_id\": 8420.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8422, \"umap_x\": 1.6370233297348022, \"umap_y\": 0.16246815025806427, \"post_id\": 8422.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8424, \"umap_x\": 0.782431960105896, \"umap_y\": -0.03572401776909828, \"post_id\": 8424.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8424, \"umap_x\": 0.782431960105896, \"umap_y\": -0.03572401776909828, \"post_id\": 8424.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8426, \"umap_x\": -1.9825249910354614, \"umap_y\": -0.8066250085830688, \"post_id\": 8426.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 8426, \"umap_x\": -1.9825249910354614, \"umap_y\": -0.8066250085830688, \"post_id\": 8426.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8428, \"umap_x\": -2.4772884845733643, \"umap_y\": 2.347698450088501, \"post_id\": 8428.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8428, \"umap_x\": -2.4772884845733643, \"umap_y\": 2.347698450088501, \"post_id\": 8428.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8430, \"umap_x\": 1.2778350114822388, \"umap_y\": 0.41101351380348206, \"post_id\": 8430.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 8439, \"umap_x\": 1.1688674688339233, \"umap_y\": 3.962380886077881, \"post_id\": 8439.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8443, \"umap_x\": -0.9795296788215637, \"umap_y\": 1.0317448377609253, \"post_id\": 8443.0, \"author_id\": 658.0, \"id_y\": 658.0, \"author\": \"Johanna Hemkentokrax\", \"author_group\": \"Other\"}, {\"id_x\": 8443, \"umap_x\": -0.9795296788215637, \"umap_y\": 1.0317448377609253, \"post_id\": 8443.0, \"author_id\": 659.0, \"id_y\": 659.0, \"author\": \"MDR Investigativ\", \"author_group\": \"Other\"}, {\"id_x\": 8449, \"umap_x\": -0.9513261318206787, \"umap_y\": 2.2107462882995605, \"post_id\": 8449.0, \"author_id\": 660.0, \"id_y\": 660.0, \"author\": \"Clemens Burger\", \"author_group\": \"Other\"}, {\"id_x\": 8451, \"umap_x\": 1.1737496852874756, \"umap_y\": 3.445848226547241, \"post_id\": 8451.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 8451, \"umap_x\": 1.1737496852874756, \"umap_y\": 3.445848226547241, \"post_id\": 8451.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8457, \"umap_x\": -2.1344828605651855, \"umap_y\": -0.941371500492096, \"post_id\": 8457.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8457, \"umap_x\": -2.1344828605651855, \"umap_y\": -0.941371500492096, \"post_id\": 8457.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8459, \"umap_x\": -1.4966093301773071, \"umap_y\": -0.7750216126441956, \"post_id\": 8459.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 8459, \"umap_x\": -1.4966093301773071, \"umap_y\": -0.7750216126441956, \"post_id\": 8459.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8461, \"umap_x\": -1.5043370723724365, \"umap_y\": -1.0467180013656616, \"post_id\": 8461.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8461, \"umap_x\": -1.5043370723724365, \"umap_y\": -1.0467180013656616, \"post_id\": 8461.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8463, \"umap_x\": -2.092432737350464, \"umap_y\": 3.2462613582611084, \"post_id\": 8463.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 8463, \"umap_x\": -2.092432737350464, \"umap_y\": 3.2462613582611084, \"post_id\": 8463.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8465, \"umap_x\": -1.4134831428527832, \"umap_y\": -0.1845628023147583, \"post_id\": 8465.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 8465, \"umap_x\": -1.4134831428527832, \"umap_y\": -0.1845628023147583, \"post_id\": 8465.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8467, \"umap_x\": 1.3258072137832642, \"umap_y\": 0.3630768954753876, \"post_id\": 8467.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8467, \"umap_x\": 1.3258072137832642, \"umap_y\": 0.3630768954753876, \"post_id\": 8467.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8475, \"umap_x\": 0.3362216651439667, \"umap_y\": 0.46640464663505554, \"post_id\": 8475.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8475, \"umap_x\": 0.3362216651439667, \"umap_y\": 0.46640464663505554, \"post_id\": 8475.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8477, \"umap_x\": -4.563740253448486, \"umap_y\": 4.402505397796631, \"post_id\": 8477.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 8480, \"umap_x\": -0.5836024284362793, \"umap_y\": -1.2644011974334717, \"post_id\": 8480.0, \"author_id\": 494.0, \"id_y\": 494.0, \"author\": \"Thomas Datt\", \"author_group\": \"Other\"}, {\"id_x\": 8480, \"umap_x\": -0.5836024284362793, \"umap_y\": -1.2644011974334717, \"post_id\": 8480.0, \"author_id\": 661.0, \"id_y\": 661.0, \"author\": \"Rebecca Kupfner\", \"author_group\": \"Other\"}, {\"id_x\": 8480, \"umap_x\": -0.5836024284362793, \"umap_y\": -1.2644011974334717, \"post_id\": 8480.0, \"author_id\": 662.0, \"id_y\": 662.0, \"author\": \"Matthias P\\u00f6ls\", \"author_group\": \"Other\"}, {\"id_x\": 8480, \"umap_x\": -0.5836024284362793, \"umap_y\": -1.2644011974334717, \"post_id\": 8480.0, \"author_id\": 659.0, \"id_y\": 659.0, \"author\": \"MDR Investigativ\", \"author_group\": \"Other\"}, {\"id_x\": 8482, \"umap_x\": 0.3977546989917755, \"umap_y\": -0.5112907290458679, \"post_id\": 8482.0, \"author_id\": 663.0, \"id_y\": 663.0, \"author\": \"Kristian Schulze\", \"author_group\": \"Other\"}, {\"id_x\": 8482, \"umap_x\": 0.3977546989917755, \"umap_y\": -0.5112907290458679, \"post_id\": 8482.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8484, \"umap_x\": 0.46152937412261963, \"umap_y\": 5.536590099334717, \"post_id\": 8484.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 8484, \"umap_x\": 0.46152937412261963, \"umap_y\": 5.536590099334717, \"post_id\": 8484.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8486, \"umap_x\": 1.1315340995788574, \"umap_y\": 3.9419026374816895, \"post_id\": 8486.0, \"author_id\": 664.0, \"id_y\": 664.0, \"author\": \"Tobias Bachmann\", \"author_group\": \"Other\"}, {\"id_x\": 8488, \"umap_x\": 1.3607628345489502, \"umap_y\": 3.7866601943969727, \"post_id\": 8488.0, \"author_id\": 187.0, \"id_y\": 187.0, \"author\": \"Jean-Philipp Baeck\", \"author_group\": \"Other\"}, {\"id_x\": 8490, \"umap_x\": 1.2128338813781738, \"umap_y\": 3.6641435623168945, \"post_id\": 8490.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8492, \"umap_x\": 0.825387716293335, \"umap_y\": -0.5484813451766968, \"post_id\": 8492.0, \"author_id\": 665.0, \"id_y\": 665.0, \"author\": \"Hannah Jagemast\", \"author_group\": \"Other\"}, {\"id_x\": 8492, \"umap_x\": 0.825387716293335, \"umap_y\": -0.5484813451766968, \"post_id\": 8492.0, \"author_id\": 666.0, \"id_y\": 666.0, \"author\": \"Thomas Degkwitz\", \"author_group\": \"Other\"}, {\"id_x\": 8492, \"umap_x\": 0.825387716293335, \"umap_y\": -0.5484813451766968, \"post_id\": 8492.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8494, \"umap_x\": -1.777827262878418, \"umap_y\": 2.2865450382232666, \"post_id\": 8494.0, \"author_id\": 667.0, \"id_y\": 667.0, \"author\": \"Christopher Wimmer\", \"author_group\": \"Other\"}, {\"id_x\": 8494, \"umap_x\": -1.777827262878418, \"umap_y\": 2.2865450382232666, \"post_id\": 8494.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8520, \"umap_x\": -2.1258668899536133, \"umap_y\": -0.32043343782424927, \"post_id\": 8520.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 8520, \"umap_x\": -2.1258668899536133, \"umap_y\": -0.32043343782424927, \"post_id\": 8520.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8522, \"umap_x\": -2.5338079929351807, \"umap_y\": 1.916581630706787, \"post_id\": 8522.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8524, \"umap_x\": -1.4388784170150757, \"umap_y\": 0.9586909413337708, \"post_id\": 8524.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8526, \"umap_x\": 0.09245574474334717, \"umap_y\": 4.785253524780273, \"post_id\": 8526.0, \"author_id\": 546.0, \"id_y\": 546.0, \"author\": \"Janina Fleischer\", \"author_group\": \"Other\"}, {\"id_x\": 8526, \"umap_x\": 0.09245574474334717, \"umap_y\": 4.785253524780273, \"post_id\": 8526.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8528, \"umap_x\": -0.19425971806049347, \"umap_y\": 0.12377510219812393, \"post_id\": 8528.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 8528, \"umap_x\": -0.19425971806049347, \"umap_y\": 0.12377510219812393, \"post_id\": 8528.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8530, \"umap_x\": -2.8727643489837646, \"umap_y\": -1.1315383911132812, \"post_id\": 8530.0, \"author_id\": 127.0, \"id_y\": 127.0, \"author\": \"Mirko Jakubowsky\", \"author_group\": \"Other\"}, {\"id_x\": 8530, \"umap_x\": -2.8727643489837646, \"umap_y\": -1.1315383911132812, \"post_id\": 8530.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8532, \"umap_x\": -0.8329688906669617, \"umap_y\": 1.2534922361373901, \"post_id\": 8532.0, \"author_id\": 668.0, \"id_y\": 668.0, \"author\": \"Anne Lena M\\u00f6sken\", \"author_group\": \"Other\"}, {\"id_x\": 8532, \"umap_x\": -0.8329688906669617, \"umap_y\": 1.2534922361373901, \"post_id\": 8532.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8539, \"umap_x\": -0.2599489390850067, \"umap_y\": -0.01609226129949093, \"post_id\": 8539.0, \"author_id\": 574.0, \"id_y\": 574.0, \"author\": \"Dirk Wurzel\", \"author_group\": \"Other\"}, {\"id_x\": 8539, \"umap_x\": -0.2599489390850067, \"umap_y\": -0.01609226129949093, \"post_id\": 8539.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8541, \"umap_x\": 0.5958271622657776, \"umap_y\": 6.1922993659973145, \"post_id\": 8541.0, \"author_id\": 669.0, \"id_y\": 669.0, \"author\": \"Kristin Helberg\", \"author_group\": \"Other\"}, {\"id_x\": 8541, \"umap_x\": 0.5958271622657776, \"umap_y\": 6.1922993659973145, \"post_id\": 8541.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 8543, \"umap_x\": -2.415724039077759, \"umap_y\": 2.2108473777770996, \"post_id\": 8543.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8548, \"umap_x\": -2.6981353759765625, \"umap_y\": 1.5263804197311401, \"post_id\": 8548.0, \"author_id\": 670.0, \"id_y\": 670.0, \"author\": \"Aiko Kempen\", \"author_group\": \"Other\"}, {\"id_x\": 8550, \"umap_x\": 1.1252914667129517, \"umap_y\": 3.2054603099823, \"post_id\": 8550.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 8550, \"umap_x\": 1.1252914667129517, \"umap_y\": 3.2054603099823, \"post_id\": 8550.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8554, \"umap_x\": -1.8332444429397583, \"umap_y\": -0.19065307080745697, \"post_id\": 8554.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8554, \"umap_x\": -1.8332444429397583, \"umap_y\": -0.19065307080745697, \"post_id\": 8554.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8556, \"umap_x\": -0.4105975329875946, \"umap_y\": 1.8387144804000854, \"post_id\": 8556.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8558, \"umap_x\": -1.38413405418396, \"umap_y\": -1.0922510623931885, \"post_id\": 8558.0, \"author_id\": 671.0, \"id_y\": 671.0, \"author\": \"Tilman Kortenhaus\", \"author_group\": \"Other\"}, {\"id_x\": 8558, \"umap_x\": -1.38413405418396, \"umap_y\": -1.0922510623931885, \"post_id\": 8558.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 8558, \"umap_x\": -1.38413405418396, \"umap_y\": -1.0922510623931885, \"post_id\": 8558.0, \"author_id\": 672.0, \"id_y\": 672.0, \"author\": \"Frank Schober\", \"author_group\": \"Other\"}, {\"id_x\": 8558, \"umap_x\": -1.38413405418396, \"umap_y\": -1.0922510623931885, \"post_id\": 8558.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8560, \"umap_x\": 1.302941083908081, \"umap_y\": -0.041439905762672424, \"post_id\": 8560.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8562, \"umap_x\": -0.9191081523895264, \"umap_y\": 3.4879229068756104, \"post_id\": 8562.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8566, \"umap_x\": -2.8951165676116943, \"umap_y\": 1.9246506690979004, \"post_id\": 8566.0, \"author_id\": 673.0, \"id_y\": 673.0, \"author\": \"Sebastian B\\u00e4hr\", \"author_group\": \"Other\"}, {\"id_x\": 8566, \"umap_x\": -2.8951165676116943, \"umap_y\": 1.9246506690979004, \"post_id\": 8566.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 8568, \"umap_x\": -0.11857408285140991, \"umap_y\": 3.7603766918182373, \"post_id\": 8568.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8570, \"umap_x\": 1.3073962926864624, \"umap_y\": 0.25467732548713684, \"post_id\": 8570.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 8570, \"umap_x\": 1.3073962926864624, \"umap_y\": 0.25467732548713684, \"post_id\": 8570.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8572, \"umap_x\": 0.3820382356643677, \"umap_y\": 2.133340835571289, \"post_id\": 8572.0, \"author_id\": 674.0, \"id_y\": 674.0, \"author\": \"RAA\", \"author_group\": \"Other\"}, {\"id_x\": 8574, \"umap_x\": 0.37876635789871216, \"umap_y\": 4.04367208480835, \"post_id\": 8574.0, \"author_id\": 98.0, \"id_y\": 98.0, \"author\": \"Markus van Appeldorn\", \"author_group\": \"Other\"}, {\"id_x\": 8574, \"umap_x\": 0.37876635789871216, \"umap_y\": 4.04367208480835, \"post_id\": 8574.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8576, \"umap_x\": -2.5365514755249023, \"umap_y\": -0.6730205416679382, \"post_id\": 8576.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8582, \"umap_x\": -2.783210277557373, \"umap_y\": 1.6114749908447266, \"post_id\": 8582.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 8582, \"umap_x\": -2.783210277557373, \"umap_y\": 1.6114749908447266, \"post_id\": 8582.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8584, \"umap_x\": -2.4099385738372803, \"umap_y\": 0.5703125596046448, \"post_id\": 8584.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8586, \"umap_x\": -3.236194610595703, \"umap_y\": 0.010596593841910362, \"post_id\": 8586.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8588, \"umap_x\": -1.0688802003860474, \"umap_y\": -0.09287117421627045, \"post_id\": 8588.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 8588, \"umap_x\": -1.0688802003860474, \"umap_y\": -0.09287117421627045, \"post_id\": 8588.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8590, \"umap_x\": -0.6655282974243164, \"umap_y\": 0.1512480080127716, \"post_id\": 8590.0, \"author_id\": 1066.0, \"id_y\": 1066.0, \"author\": \"DNN\", \"author_group\": \"Other\"}, {\"id_x\": 8592, \"umap_x\": 1.443739891052246, \"umap_y\": 3.5117619037628174, \"post_id\": 8592.0, \"author_id\": 675.0, \"id_y\": 675.0, \"author\": \"VVN-BdA\", \"author_group\": \"Other\"}, {\"id_x\": 8599, \"umap_x\": -3.112516164779663, \"umap_y\": 1.7197775840759277, \"post_id\": 8599.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8601, \"umap_x\": -2.442984104156494, \"umap_y\": -0.18730437755584717, \"post_id\": 8601.0, \"author_id\": 676.0, \"id_y\": 676.0, \"author\": \"Gian Hedinger\", \"author_group\": \"Other\"}, {\"id_x\": 8601, \"umap_x\": -2.442984104156494, \"umap_y\": -0.18730437755584717, \"post_id\": 8601.0, \"author_id\": 677.0, \"id_y\": 677.0, \"author\": \"Manuel Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 8601, \"umap_x\": -2.442984104156494, \"umap_y\": -0.18730437755584717, \"post_id\": 8601.0, \"author_id\": 678.0, \"id_y\": 678.0, \"author\": \"WOZ\", \"author_group\": \"Other\"}, {\"id_x\": 8603, \"umap_x\": 5.477884769439697, \"umap_y\": 3.3719797134399414, \"post_id\": 8603.0, \"author_id\": 520.0, \"id_y\": 520.0, \"author\": \"Internationalist\", \"author_group\": \"Other\"}, {\"id_x\": 8607, \"umap_x\": 1.356438398361206, \"umap_y\": 3.008859872817993, \"post_id\": 8607.0, \"author_id\": 679.0, \"id_y\": 679.0, \"author\": \"Carlotta B\\u00f6ttcher\", \"author_group\": \"Other\"}, {\"id_x\": 8607, \"umap_x\": 1.356438398361206, \"umap_y\": 3.008859872817993, \"post_id\": 8607.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8612, \"umap_x\": 1.2762558460235596, \"umap_y\": 3.633913993835449, \"post_id\": 8612.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 8612, \"umap_x\": 1.2762558460235596, \"umap_y\": 3.633913993835449, \"post_id\": 8612.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8614, \"umap_x\": -1.4686447381973267, \"umap_y\": 1.5677450895309448, \"post_id\": 8614.0, \"author_id\": 680.0, \"id_y\": 680.0, \"author\": \"Rebecka Pohland\", \"author_group\": \"Other\"}, {\"id_x\": 8614, \"umap_x\": -1.4686447381973267, \"umap_y\": 1.5677450895309448, \"post_id\": 8614.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8616, \"umap_x\": 0.9309093952178955, \"umap_y\": -0.5853944420814514, \"post_id\": 8616.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8616, \"umap_x\": 0.9309093952178955, \"umap_y\": -0.5853944420814514, \"post_id\": 8616.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8620, \"umap_x\": -3.3825924396514893, \"umap_y\": 1.2616461515426636, \"post_id\": 8620.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 8620, \"umap_x\": -3.3825924396514893, \"umap_y\": 1.2616461515426636, \"post_id\": 8620.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8622, \"umap_x\": 1.1318813562393188, \"umap_y\": 0.4638229012489319, \"post_id\": 8622.0, \"author_id\": 681.0, \"id_y\": 681.0, \"author\": \"Pauline J\\u00e4ckels\", \"author_group\": \"Other\"}, {\"id_x\": 8622, \"umap_x\": 1.1318813562393188, \"umap_y\": 0.4638229012489319, \"post_id\": 8622.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8631, \"umap_x\": -2.7223434448242188, \"umap_y\": 3.7157883644104004, \"post_id\": 8631.0, \"author_id\": 140.0, \"id_y\": 140.0, \"author\": \"Anarchistische Tage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8638, \"umap_x\": -3.55605411529541, \"umap_y\": 2.8427069187164307, \"post_id\": 8638.0, \"author_id\": 44.0, \"id_y\": 44.0, \"author\": \"Andreas Speit\", \"author_group\": \"Other\"}, {\"id_x\": 8638, \"umap_x\": -3.55605411529541, \"umap_y\": 2.8427069187164307, \"post_id\": 8638.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 8640, \"umap_x\": 0.11672351509332657, \"umap_y\": 5.076171398162842, \"post_id\": 8640.0, \"author_id\": 682.0, \"id_y\": 682.0, \"author\": \"Matthias Meisner\", \"author_group\": \"Other\"}, {\"id_x\": 8640, \"umap_x\": 0.11672351509332657, \"umap_y\": 5.076171398162842, \"post_id\": 8640.0, \"author_id\": 683.0, \"id_y\": 683.0, \"author\": \"J\\u00fcdische Allgemeine\", \"author_group\": \"Other\"}, {\"id_x\": 8642, \"umap_x\": -0.9286028146743774, \"umap_y\": 1.2834157943725586, \"post_id\": 8642.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 8642, \"umap_x\": -0.9286028146743774, \"umap_y\": 1.2834157943725586, \"post_id\": 8642.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8644, \"umap_x\": -1.3558483123779297, \"umap_y\": 0.045667510479688644, \"post_id\": 8644.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 8644, \"umap_x\": -1.3558483123779297, \"umap_y\": 0.045667510479688644, \"post_id\": 8644.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8646, \"umap_x\": -0.07592598348855972, \"umap_y\": 0.03533935546875, \"post_id\": 8646.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8648, \"umap_x\": 0.5406744480133057, \"umap_y\": 6.008666515350342, \"post_id\": 8648.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 8648, \"umap_x\": 0.5406744480133057, \"umap_y\": 6.008666515350342, \"post_id\": 8648.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8650, \"umap_x\": 1.295680046081543, \"umap_y\": 3.888402223587036, \"post_id\": 8650.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 8650, \"umap_x\": 1.295680046081543, \"umap_y\": 3.888402223587036, \"post_id\": 8650.0, \"author_id\": 57.0, \"id_y\": 57.0, \"author\": \"Jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 8652, \"umap_x\": -0.30144810676574707, \"umap_y\": 1.0286999940872192, \"post_id\": 8652.0, \"author_id\": 500.0, \"id_y\": 500.0, \"author\": \"Julia Grunwald\", \"author_group\": \"Other\"}, {\"id_x\": 8652, \"umap_x\": -0.30144810676574707, \"umap_y\": 1.0286999940872192, \"post_id\": 8652.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8656, \"umap_x\": -2.6618783473968506, \"umap_y\": 0.6795793771743774, \"post_id\": 8656.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8658, \"umap_x\": -1.9091278314590454, \"umap_y\": 3.2100160121917725, \"post_id\": 8658.0, \"author_id\": 684.0, \"id_y\": 684.0, \"author\": \"Anarchist Black Cross Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 8661, \"umap_x\": 1.3893805742263794, \"umap_y\": 3.84555721282959, \"post_id\": 8661.0, \"author_id\": 685.0, \"id_y\": 685.0, \"author\": \"Carina Book\", \"author_group\": \"Other\"}, {\"id_x\": 8661, \"umap_x\": 1.3893805742263794, \"umap_y\": 3.84555721282959, \"post_id\": 8661.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 8663, \"umap_x\": 0.13935860991477966, \"umap_y\": 3.0308666229248047, \"post_id\": 8663.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 8670, \"umap_x\": 1.0643328428268433, \"umap_y\": 0.10092994570732117, \"post_id\": 8670.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 8670, \"umap_x\": 1.0643328428268433, \"umap_y\": 0.10092994570732117, \"post_id\": 8670.0, \"author_id\": 597.0, \"id_y\": 597.0, \"author\": \"Andreas Dunte\", \"author_group\": \"Other\"}, {\"id_x\": 8670, \"umap_x\": 1.0643328428268433, \"umap_y\": 0.10092994570732117, \"post_id\": 8670.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8672, \"umap_x\": -0.07486364990472794, \"umap_y\": 0.6380886435508728, \"post_id\": 8672.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 8672, \"umap_x\": -0.07486364990472794, \"umap_y\": 0.6380886435508728, \"post_id\": 8672.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8674, \"umap_x\": 1.0820434093475342, \"umap_y\": 1.1486401557922363, \"post_id\": 8674.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8676, \"umap_x\": 0.6899464726448059, \"umap_y\": 3.4570395946502686, \"post_id\": 8676.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 8676, \"umap_x\": 0.6899464726448059, \"umap_y\": 3.4570395946502686, \"post_id\": 8676.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8678, \"umap_x\": 0.5546333193778992, \"umap_y\": 0.9046930074691772, \"post_id\": 8678.0, \"author_id\": 978.0, \"id_y\": 978.0, \"author\": \"DPA\", \"author_group\": \"Other\"}, {\"id_x\": 8683, \"umap_x\": -1.4048645496368408, \"umap_y\": 5.154628753662109, \"post_id\": 8683.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8686, \"umap_x\": -2.2065868377685547, \"umap_y\": -0.6850302815437317, \"post_id\": 8686.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 8686, \"umap_x\": -2.2065868377685547, \"umap_y\": -0.6850302815437317, \"post_id\": 8686.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8688, \"umap_x\": -0.133904367685318, \"umap_y\": 2.2174835205078125, \"post_id\": 8688.0, \"author_id\": 687.0, \"id_y\": 687.0, \"author\": \"Thorsten Fuchs\", \"author_group\": \"Other\"}, {\"id_x\": 8688, \"umap_x\": -0.133904367685318, \"umap_y\": 2.2174835205078125, \"post_id\": 8688.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8690, \"umap_x\": 0.44774526357650757, \"umap_y\": 0.048958223313093185, \"post_id\": 8690.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8692, \"umap_x\": 0.13929560780525208, \"umap_y\": 2.8754637241363525, \"post_id\": 8692.0, \"author_id\": 688.0, \"id_y\": 688.0, \"author\": \"Leonie Schulte\", \"author_group\": \"Other\"}, {\"id_x\": 8692, \"umap_x\": 0.13929560780525208, \"umap_y\": 2.8754637241363525, \"post_id\": 8692.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8694, \"umap_x\": -2.2205371856689453, \"umap_y\": -0.7287114262580872, \"post_id\": 8694.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8694, \"umap_x\": -2.2205371856689453, \"umap_y\": -0.7287114262580872, \"post_id\": 8694.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8696, \"umap_x\": 1.0103251934051514, \"umap_y\": 1.3658567667007446, \"post_id\": 8696.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8698, \"umap_x\": -1.2693777084350586, \"umap_y\": 0.5046494007110596, \"post_id\": 8698.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8698, \"umap_x\": -1.2693777084350586, \"umap_y\": 0.5046494007110596, \"post_id\": 8698.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8700, \"umap_x\": -0.040085840970277786, \"umap_y\": -0.11867968738079071, \"post_id\": 8700.0, \"author_id\": 689.0, \"id_y\": 689.0, \"author\": \"Roland Kaiser\", \"author_group\": \"Other\"}, {\"id_x\": 8700, \"umap_x\": -0.040085840970277786, \"umap_y\": -0.11867968738079071, \"post_id\": 8700.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8702, \"umap_x\": 0.3280337154865265, \"umap_y\": 0.8559243083000183, \"post_id\": 8702.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8704, \"umap_x\": -1.3120853900909424, \"umap_y\": 2.443434953689575, \"post_id\": 8704.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 8706, \"umap_x\": 1.410872459411621, \"umap_y\": -0.08820141106843948, \"post_id\": 8706.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 8706, \"umap_x\": 1.410872459411621, \"umap_y\": -0.08820141106843948, \"post_id\": 8706.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8708, \"umap_x\": -2.4085628986358643, \"umap_y\": -1.0610824823379517, \"post_id\": 8708.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8708, \"umap_x\": -2.4085628986358643, \"umap_y\": -1.0610824823379517, \"post_id\": 8708.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8710, \"umap_x\": -0.3753902316093445, \"umap_y\": 1.2150728702545166, \"post_id\": 8710.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 8710, \"umap_x\": -0.3753902316093445, \"umap_y\": 1.2150728702545166, \"post_id\": 8710.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8712, \"umap_x\": -3.0249898433685303, \"umap_y\": 4.302868843078613, \"post_id\": 8712.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 8716, \"umap_x\": -1.6723213195800781, \"umap_y\": -1.1231637001037598, \"post_id\": 8716.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 8718, \"umap_x\": 1.6422808170318604, \"umap_y\": 0.13430701196193695, \"post_id\": 8718.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 8732, \"umap_x\": -2.1260457038879395, \"umap_y\": 2.515625476837158, \"post_id\": 8732.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 8741, \"umap_x\": -1.711199402809143, \"umap_y\": -1.4073761701583862, \"post_id\": 8741.0, \"author_id\": 691.0, \"id_y\": 691.0, \"author\": \"Jonas Patzwaldt\", \"author_group\": \"Other\"}, {\"id_x\": 8741, \"umap_x\": -1.711199402809143, \"umap_y\": -1.4073761701583862, \"post_id\": 8741.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8743, \"umap_x\": -0.783106803894043, \"umap_y\": 0.3529466986656189, \"post_id\": 8743.0, \"author_id\": 692.0, \"id_y\": 692.0, \"author\": \"Kai Biermann\", \"author_group\": \"Other\"}, {\"id_x\": 8743, \"umap_x\": -0.783106803894043, \"umap_y\": 0.3529466986656189, \"post_id\": 8743.0, \"author_id\": 693.0, \"id_y\": 693.0, \"author\": \"Astrid Geisler\", \"author_group\": \"Other\"}, {\"id_x\": 8743, \"umap_x\": -0.783106803894043, \"umap_y\": 0.3529466986656189, \"post_id\": 8743.0, \"author_id\": 694.0, \"id_y\": 694.0, \"author\": \"Mart\\u00edn Steinhagen\", \"author_group\": \"Other\"}, {\"id_x\": 8743, \"umap_x\": -0.783106803894043, \"umap_y\": 0.3529466986656189, \"post_id\": 8743.0, \"author_id\": 695.0, \"id_y\": 695.0, \"author\": \"Sascha Venohr\", \"author_group\": \"Other\"}, {\"id_x\": 8743, \"umap_x\": -0.783106803894043, \"umap_y\": 0.3529466986656189, \"post_id\": 8743.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 8746, \"umap_x\": -1.1734696626663208, \"umap_y\": 0.30580687522888184, \"post_id\": 8746.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 8746, \"umap_x\": -1.1734696626663208, \"umap_y\": 0.30580687522888184, \"post_id\": 8746.0, \"author_id\": 80.0, \"id_y\": 80.0, \"author\": \"Franziska Klemenz\", \"author_group\": \"Other\"}, {\"id_x\": 8746, \"umap_x\": -1.1734696626663208, \"umap_y\": 0.30580687522888184, \"post_id\": 8746.0, \"author_id\": 437.0, \"id_y\": 437.0, \"author\": \"Dirk Hein\", \"author_group\": \"Other\"}, {\"id_x\": 8746, \"umap_x\": -1.1734696626663208, \"umap_y\": 0.30580687522888184, \"post_id\": 8746.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8748, \"umap_x\": -0.8526463508605957, \"umap_y\": 6.204318523406982, \"post_id\": 8748.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 8750, \"umap_x\": -0.9917502403259277, \"umap_y\": 1.2333859205245972, \"post_id\": 8750.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 8750, \"umap_x\": -0.9917502403259277, \"umap_y\": 1.2333859205245972, \"post_id\": 8750.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8752, \"umap_x\": 1.2317781448364258, \"umap_y\": 0.6844067573547363, \"post_id\": 8752.0, \"author_id\": 385.0, \"id_y\": 385.0, \"author\": \"Kathrin Kabelitz\", \"author_group\": \"Other\"}, {\"id_x\": 8752, \"umap_x\": 1.2317781448364258, \"umap_y\": 0.6844067573547363, \"post_id\": 8752.0, \"author_id\": 386.0, \"id_y\": 386.0, \"author\": \"Mathias Sch\\u00f6nknecht\", \"author_group\": \"Other\"}, {\"id_x\": 8752, \"umap_x\": 1.2317781448364258, \"umap_y\": 0.6844067573547363, \"post_id\": 8752.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8754, \"umap_x\": -1.1719313859939575, \"umap_y\": 2.1400396823883057, \"post_id\": 8754.0, \"author_id\": 696.0, \"id_y\": 696.0, \"author\": \"Tom Uhlig\", \"author_group\": \"Other\"}, {\"id_x\": 8754, \"umap_x\": -1.1719313859939575, \"umap_y\": 2.1400396823883057, \"post_id\": 8754.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8756, \"umap_x\": -2.70080828666687, \"umap_y\": 2.0878658294677734, \"post_id\": 8756.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 8758, \"umap_x\": -0.01409998070448637, \"umap_y\": 1.2273211479187012, \"post_id\": 8758.0, \"author_id\": 697.0, \"id_y\": 697.0, \"author\": \"Ronen Steinke\", \"author_group\": \"Other\"}, {\"id_x\": 8758, \"umap_x\": -0.01409998070448637, \"umap_y\": 1.2273211479187012, \"post_id\": 8758.0, \"author_id\": 465.0, \"id_y\": 465.0, \"author\": \"SZ\", \"author_group\": \"Other\"}, {\"id_x\": 8772, \"umap_x\": -1.6949584484100342, \"umap_y\": -0.717022716999054, \"post_id\": 8772.0, \"author_id\": 643.0, \"id_y\": 643.0, \"author\": \"antifa\", \"author_group\": \"Other\"}, {\"id_x\": 8786, \"umap_x\": 1.1031161546707153, \"umap_y\": 1.4016306400299072, \"post_id\": 8786.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8792, \"umap_x\": -3.0546646118164062, \"umap_y\": 2.974560499191284, \"post_id\": 8792.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 8797, \"umap_x\": -1.3714207410812378, \"umap_y\": 1.5658600330352783, \"post_id\": 8797.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 8800, \"umap_x\": -1.958983063697815, \"umap_y\": 2.7408699989318848, \"post_id\": 8800.0, \"author_id\": 699.0, \"id_y\": 699.0, \"author\": \"Elisa Leimert\", \"author_group\": \"Other\"}, {\"id_x\": 8800, \"umap_x\": -1.958983063697815, \"umap_y\": 2.7408699989318848, \"post_id\": 8800.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8806, \"umap_x\": -0.26260411739349365, \"umap_y\": 4.235732078552246, \"post_id\": 8806.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 8808, \"umap_x\": -2.554431438446045, \"umap_y\": -1.8680161237716675, \"post_id\": 8808.0, \"author_id\": 700.0, \"id_y\": 700.0, \"author\": \"Felix Klopotek\", \"author_group\": \"Other\"}, {\"id_x\": 8808, \"umap_x\": -2.554431438446045, \"umap_y\": -1.8680161237716675, \"post_id\": 8808.0, \"author_id\": 701.0, \"id_y\": 701.0, \"author\": \"communaut.org\", \"author_group\": \"Other\"}, {\"id_x\": 8810, \"umap_x\": -1.827282428741455, \"umap_y\": 2.097123861312866, \"post_id\": 8810.0, \"author_id\": 702.0, \"id_y\": 702.0, \"author\": \"SoliZero\", \"author_group\": \"Other\"}, {\"id_x\": 8813, \"umap_x\": -2.9310567378997803, \"umap_y\": -1.2871143817901611, \"post_id\": 8813.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 8818, \"umap_x\": 0.2619163990020752, \"umap_y\": 3.3887360095977783, \"post_id\": 8818.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 8818, \"umap_x\": 0.2619163990020752, \"umap_y\": 3.3887360095977783, \"post_id\": 8818.0, \"author_id\": 316.0, \"id_y\": 316.0, \"author\": \"Kommunistische Gruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 8824, \"umap_x\": -0.7868622541427612, \"umap_y\": 4.330361366271973, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 8826, \"umap_x\": -0.6056052446365356, \"umap_y\": 1.5386221408843994, \"post_id\": 8826.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 8826, \"umap_x\": -0.6056052446365356, \"umap_y\": 1.5386221408843994, \"post_id\": 8826.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8828, \"umap_x\": -2.5604076385498047, \"umap_y\": -0.383545845746994, \"post_id\": 8828.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8830, \"umap_x\": -0.49789971113204956, \"umap_y\": 3.1893768310546875, \"post_id\": 8830.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8832, \"umap_x\": -2.404603958129883, \"umap_y\": 1.6457855701446533, \"post_id\": 8832.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8832, \"umap_x\": -2.404603958129883, \"umap_y\": 1.6457855701446533, \"post_id\": 8832.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8834, \"umap_x\": 0.31964045763015747, \"umap_y\": -0.5033431053161621, \"post_id\": 8834.0, \"author_id\": 703.0, \"id_y\": 703.0, \"author\": \"Patrick Hyslop\", \"author_group\": \"Other\"}, {\"id_x\": 8834, \"umap_x\": 0.31964045763015747, \"umap_y\": -0.5033431053161621, \"post_id\": 8834.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8836, \"umap_x\": -0.20701290667057037, \"umap_y\": 0.7607174515724182, \"post_id\": 8836.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 8836, \"umap_x\": -0.20701290667057037, \"umap_y\": 0.7607174515724182, \"post_id\": 8836.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 8838, \"umap_x\": -0.38679054379463196, \"umap_y\": 0.035010017454624176, \"post_id\": 8838.0, \"author_id\": 288.0, \"id_y\": 288.0, \"author\": \"Julian Feldmann\", \"author_group\": \"Other\"}, {\"id_x\": 8838, \"umap_x\": -0.38679054379463196, \"umap_y\": 0.035010017454624176, \"post_id\": 8838.0, \"author_id\": 704.0, \"id_y\": 704.0, \"author\": \"Florian Flade\", \"author_group\": \"Other\"}, {\"id_x\": 8840, \"umap_x\": 1.327346682548523, \"umap_y\": 1.058967113494873, \"post_id\": 8840.0, \"author_id\": 705.0, \"id_y\": 705.0, \"author\": \"Markus Liske\", \"author_group\": \"Other\"}, {\"id_x\": 8842, \"umap_x\": -1.1676913499832153, \"umap_y\": 3.6011738777160645, \"post_id\": 8842.0, \"author_id\": 706.0, \"id_y\": 706.0, \"author\": \"AK Untergrund & Perspektive Online\", \"author_group\": \"Other\"}, {\"id_x\": 8848, \"umap_x\": -2.431793451309204, \"umap_y\": -0.9308555126190186, \"post_id\": 8848.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 8848, \"umap_x\": -2.431793451309204, \"umap_y\": -0.9308555126190186, \"post_id\": 8848.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8850, \"umap_x\": -3.5079267024993896, \"umap_y\": 3.5013492107391357, \"post_id\": 8850.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8856, \"umap_x\": 0.6108754277229309, \"umap_y\": 5.94732141494751, \"post_id\": 8856.0, \"author_id\": 707.0, \"id_y\": 707.0, \"author\": \"Associazione Sapere Aude\", \"author_group\": \"Other\"}, {\"id_x\": 8862, \"umap_x\": 0.3805136978626251, \"umap_y\": 6.137339115142822, \"post_id\": 8862.0, \"author_id\": 708.0, \"id_y\": 708.0, \"author\": \"Lucie Wittenberg\", \"author_group\": \"Other\"}, {\"id_x\": 8862, \"umap_x\": 0.3805136978626251, \"umap_y\": 6.137339115142822, \"post_id\": 8862.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8864, \"umap_x\": 0.7848291993141174, \"umap_y\": 0.14978551864624023, \"post_id\": 8864.0, \"author_id\": 709.0, \"id_y\": 709.0, \"author\": \"Kilian Beck\", \"author_group\": \"Other\"}, {\"id_x\": 8866, \"umap_x\": 1.0030046701431274, \"umap_y\": 3.7577719688415527, \"post_id\": 8866.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 8866, \"umap_x\": 1.0030046701431274, \"umap_y\": 3.7577719688415527, \"post_id\": 8866.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8868, \"umap_x\": 1.3306117057800293, \"umap_y\": 3.832723617553711, \"post_id\": 8868.0, \"author_id\": 710.0, \"id_y\": 710.0, \"author\": \"Antifa International\", \"author_group\": \"Other\"}, {\"id_x\": 8872, \"umap_x\": -0.2514420747756958, \"umap_y\": -0.06712085008621216, \"post_id\": 8872.0, \"author_id\": 574.0, \"id_y\": 574.0, \"author\": \"Dirk Wurzel\", \"author_group\": \"Other\"}, {\"id_x\": 8872, \"umap_x\": -0.2514420747756958, \"umap_y\": -0.06712085008621216, \"post_id\": 8872.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8874, \"umap_x\": -2.4845409393310547, \"umap_y\": 2.2363784313201904, \"post_id\": 8874.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8876, \"umap_x\": -3.5106852054595947, \"umap_y\": 3.4854512214660645, \"post_id\": 8876.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 8878, \"umap_x\": 0.36438387632369995, \"umap_y\": 4.269631385803223, \"post_id\": 8878.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 8880, \"umap_x\": -3.7745628356933594, \"umap_y\": 0.40171149373054504, \"post_id\": 8880.0, \"author_id\": 711.0, \"id_y\": 711.0, \"author\": \"Timo Kr\\u00fcgener\", \"author_group\": \"Other\"}, {\"id_x\": 8880, \"umap_x\": -3.7745628356933594, \"umap_y\": 0.40171149373054504, \"post_id\": 8880.0, \"author_id\": 712.0, \"id_y\": 712.0, \"author\": \"reversed-magazine\", \"author_group\": \"Other\"}, {\"id_x\": 8882, \"umap_x\": -0.6465874314308167, \"umap_y\": 2.1334142684936523, \"post_id\": 8882.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 8896, \"umap_x\": -2.845376491546631, \"umap_y\": -1.7609490156173706, \"post_id\": 8896.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 8896, \"umap_x\": -2.845376491546631, \"umap_y\": -1.7609490156173706, \"post_id\": 8896.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8898, \"umap_x\": -0.6530235409736633, \"umap_y\": 3.2953402996063232, \"post_id\": 8898.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 8898, \"umap_x\": -0.6530235409736633, \"umap_y\": 3.2953402996063232, \"post_id\": 8898.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8900, \"umap_x\": -2.3446431159973145, \"umap_y\": 2.161259889602661, \"post_id\": 8900.0, \"author_id\": 713.0, \"id_y\": 713.0, \"author\": \"Nicole J\\u00e4hn\", \"author_group\": \"Other\"}, {\"id_x\": 8900, \"umap_x\": -2.3446431159973145, \"umap_y\": 2.161259889602661, \"post_id\": 8900.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8902, \"umap_x\": -4.261566162109375, \"umap_y\": -0.28822654485702515, \"post_id\": 8902.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 8904, \"umap_x\": 1.1056623458862305, \"umap_y\": -0.6905522346496582, \"post_id\": 8904.0, \"author_id\": 597.0, \"id_y\": 597.0, \"author\": \"Andreas Dunte\", \"author_group\": \"Other\"}, {\"id_x\": 8904, \"umap_x\": 1.1056623458862305, \"umap_y\": -0.6905522346496582, \"post_id\": 8904.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8906, \"umap_x\": -3.5594096183776855, \"umap_y\": 3.3759145736694336, \"post_id\": 8906.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8908, \"umap_x\": -0.8161088228225708, \"umap_y\": 4.365177154541016, \"post_id\": 8908.0, \"author_id\": 454.0, \"id_y\": 454.0, \"author\": \"Kira von der Brelie\", \"author_group\": \"Other\"}, {\"id_x\": 8908, \"umap_x\": -0.8161088228225708, \"umap_y\": 4.365177154541016, \"post_id\": 8908.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8912, \"umap_x\": -0.9325371980667114, \"umap_y\": 5.291249752044678, \"post_id\": 8912.0, \"author_id\": 714.0, \"id_y\": 714.0, \"author\": \"P\\u00f6ge-Haus e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 8912, \"umap_x\": -0.9325371980667114, \"umap_y\": 5.291249752044678, \"post_id\": 8912.0, \"author_id\": 715.0, \"id_y\": 715.0, \"author\": \"M\\u00fchlstrasse 14 e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 8918, \"umap_x\": -2.6706695556640625, \"umap_y\": 5.393154621124268, \"post_id\": 8918.0, \"author_id\": 314.0, \"id_y\": 314.0, \"author\": \"FQZ\", \"author_group\": \"Other\"}, {\"id_x\": 8924, \"umap_x\": 0.5031013488769531, \"umap_y\": -0.5259215235710144, \"post_id\": 8924.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 8924, \"umap_x\": 0.5031013488769531, \"umap_y\": -0.5259215235710144, \"post_id\": 8924.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8928, \"umap_x\": -3.2641897201538086, \"umap_y\": 1.6912765502929688, \"post_id\": 8928.0, \"author_id\": 716.0, \"id_y\": 716.0, \"author\": \"Mark Daniel und Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 8930, \"umap_x\": -3.780151605606079, \"umap_y\": 2.6485111713409424, \"post_id\": 8930.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 8930, \"umap_x\": -3.780151605606079, \"umap_y\": 2.6485111713409424, \"post_id\": 8930.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8932, \"umap_x\": -3.873614549636841, \"umap_y\": -1.0138475894927979, \"post_id\": 8932.0, \"author_id\": 717.0, \"id_y\": 717.0, \"author\": \"Henrik Merker\", \"author_group\": \"Other\"}, {\"id_x\": 8934, \"umap_x\": 0.3344716727733612, \"umap_y\": 5.729203224182129, \"post_id\": 8934.0, \"author_id\": 31.0, \"id_y\": 31.0, \"author\": \"Jessica Ramczik\", \"author_group\": \"Other\"}, {\"id_x\": 8934, \"umap_x\": 0.3344716727733612, \"umap_y\": 5.729203224182129, \"post_id\": 8934.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8936, \"umap_x\": -1.3443595170974731, \"umap_y\": 5.3834686279296875, \"post_id\": 8936.0, \"author_id\": 718.0, \"id_y\": 718.0, \"author\": \"Veronika Kracher\", \"author_group\": \"Other\"}, {\"id_x\": 8936, \"umap_x\": -1.3443595170974731, \"umap_y\": 5.3834686279296875, \"post_id\": 8936.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 8944, \"umap_x\": -1.7273586988449097, \"umap_y\": -0.3326660394668579, \"post_id\": 8944.0, \"author_id\": 59.0, \"id_y\": 59.0, \"author\": \"Andreas Tappert\", \"author_group\": \"Other\"}, {\"id_x\": 8944, \"umap_x\": -1.7273586988449097, \"umap_y\": -0.3326660394668579, \"post_id\": 8944.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8946, \"umap_x\": 0.6673698425292969, \"umap_y\": 0.106393963098526, \"post_id\": 8946.0, \"author_id\": 703.0, \"id_y\": 703.0, \"author\": \"Patrick Hyslop\", \"author_group\": \"Other\"}, {\"id_x\": 8946, \"umap_x\": 0.6673698425292969, \"umap_y\": 0.106393963098526, \"post_id\": 8946.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 8948, \"umap_x\": 0.9456589818000793, \"umap_y\": -0.40427690744400024, \"post_id\": 8948.0, \"author_id\": 719.0, \"id_y\": 719.0, \"author\": \"Thilo Alexe\", \"author_group\": \"Other\"}, {\"id_x\": 8948, \"umap_x\": 0.9456589818000793, \"umap_y\": -0.40427690744400024, \"post_id\": 8948.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8952, \"umap_x\": -0.4046189785003662, \"umap_y\": 4.6223015785217285, \"post_id\": 8952.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 8955, \"umap_x\": -1.6230558156967163, \"umap_y\": -0.08306203782558441, \"post_id\": 8955.0, \"author_id\": 720.0, \"id_y\": 720.0, \"author\": \"David Begrich\", \"author_group\": \"Other\"}, {\"id_x\": 8955, \"umap_x\": -1.6230558156967163, \"umap_y\": -0.08306203782558441, \"post_id\": 8955.0, \"author_id\": 721.0, \"id_y\": 721.0, \"author\": \"Bl\\u00e4tter\", \"author_group\": \"Other\"}, {\"id_x\": 8957, \"umap_x\": -0.5397735238075256, \"umap_y\": -1.6134229898452759, \"post_id\": 8957.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 8961, \"umap_x\": -4.30765438079834, \"umap_y\": -0.3726472556591034, \"post_id\": 8961.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 8961, \"umap_x\": -4.30765438079834, \"umap_y\": -0.3726472556591034, \"post_id\": 8961.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8963, \"umap_x\": 1.0006221532821655, \"umap_y\": 0.9905714392662048, \"post_id\": 8963.0, \"author_id\": 722.0, \"id_y\": 722.0, \"author\": \"\\u00d6RR\", \"author_group\": \"Other\"}, {\"id_x\": 8976, \"umap_x\": 0.14031706750392914, \"umap_y\": 0.19823454320430756, \"post_id\": 8976.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 8980, \"umap_x\": 0.7577425241470337, \"umap_y\": -0.35394370555877686, \"post_id\": 8980.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 8980, \"umap_x\": 0.7577425241470337, \"umap_y\": -0.35394370555877686, \"post_id\": 8980.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 8982, \"umap_x\": -0.6838884353637695, \"umap_y\": 0.03828689828515053, \"post_id\": 8982.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 8982, \"umap_x\": -0.6838884353637695, \"umap_y\": 0.03828689828515053, \"post_id\": 8982.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8984, \"umap_x\": 0.13226178288459778, \"umap_y\": 2.5824761390686035, \"post_id\": 8984.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 8984, \"umap_x\": 0.13226178288459778, \"umap_y\": 2.5824761390686035, \"post_id\": 8984.0, \"author_id\": 404.0, \"id_y\": 404.0, \"author\": \"Hanna Gerwig\", \"author_group\": \"Other\"}, {\"id_x\": 8984, \"umap_x\": 0.13226178288459778, \"umap_y\": 2.5824761390686035, \"post_id\": 8984.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8986, \"umap_x\": -3.9904329776763916, \"umap_y\": -0.5516924262046814, \"post_id\": 8986.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 8988, \"umap_x\": -0.8174203038215637, \"umap_y\": -0.9710865020751953, \"post_id\": 8988.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 8990, \"umap_x\": 0.44731882214546204, \"umap_y\": -0.5757354497909546, \"post_id\": 8990.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 8990, \"umap_x\": 0.44731882214546204, \"umap_y\": -0.5757354497909546, \"post_id\": 8990.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 8992, \"umap_x\": -0.7103484869003296, \"umap_y\": 0.09252733737230301, \"post_id\": 8992.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 8994, \"umap_x\": -0.22987282276153564, \"umap_y\": 0.8836111426353455, \"post_id\": 8994.0, \"author_id\": 723.0, \"id_y\": 723.0, \"author\": \"Steffi Suhr\", \"author_group\": \"Other\"}, {\"id_x\": 8994, \"umap_x\": -0.22987282276153564, \"umap_y\": 0.8836111426353455, \"post_id\": 8994.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 8996, \"umap_x\": -0.06257424503564835, \"umap_y\": 3.911530017852783, \"post_id\": 8996.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 8999, \"umap_x\": -2.922929048538208, \"umap_y\": 3.0234079360961914, \"post_id\": 8999.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 9002, \"umap_x\": -4.251129150390625, \"umap_y\": -0.12185196578502655, \"post_id\": 9002.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9002, \"umap_x\": -4.251129150390625, \"umap_y\": -0.12185196578502655, \"post_id\": 9002.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9004, \"umap_x\": -1.6962398290634155, \"umap_y\": 0.7795478105545044, \"post_id\": 9004.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 9004, \"umap_x\": -1.6962398290634155, \"umap_y\": 0.7795478105545044, \"post_id\": 9004.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9006, \"umap_x\": -0.983171820640564, \"umap_y\": -0.3765087425708771, \"post_id\": 9006.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 9008, \"umap_x\": -2.073869228363037, \"umap_y\": 1.52572762966156, \"post_id\": 9008.0, \"author_id\": 6.0, \"id_y\": 6.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9010, \"umap_x\": -0.7883369326591492, \"umap_y\": 1.4011729955673218, \"post_id\": 9010.0, \"author_id\": 725.0, \"id_y\": 725.0, \"author\": \"Bernd Rippert\", \"author_group\": \"Other\"}, {\"id_x\": 9010, \"umap_x\": -0.7883369326591492, \"umap_y\": 1.4011729955673218, \"post_id\": 9010.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9015, \"umap_x\": 0.8236439824104309, \"umap_y\": -0.6498762965202332, \"post_id\": 9015.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 9015, \"umap_x\": 0.8236439824104309, \"umap_y\": -0.6498762965202332, \"post_id\": 9015.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9017, \"umap_x\": 1.0456541776657104, \"umap_y\": 3.7887539863586426, \"post_id\": 9017.0, \"author_id\": 580.0, \"id_y\": 580.0, \"author\": \"Lukas Jocher\", \"author_group\": \"Other\"}, {\"id_x\": 9020, \"umap_x\": -2.717245101928711, \"umap_y\": 0.5078496932983398, \"post_id\": 9020.0, \"author_id\": 648.0, \"id_y\": 648.0, \"author\": \"Maximilian B\\u00e4r\", \"author_group\": \"Other\"}, {\"id_x\": 9022, \"umap_x\": -1.391121506690979, \"umap_y\": 5.403981685638428, \"post_id\": 9022.0, \"author_id\": 623.0, \"id_y\": 623.0, \"author\": \"Lena Gr\\u00fctzmacher\", \"author_group\": \"Other\"}, {\"id_x\": 9024, \"umap_x\": -0.18657194077968597, \"umap_y\": 2.2027804851531982, \"post_id\": 9024.0, \"author_id\": 420.0, \"id_y\": 420.0, \"author\": \"EA\", \"author_group\": \"Other\"}, {\"id_x\": 9027, \"umap_x\": 0.8767630457878113, \"umap_y\": -0.2772563695907593, \"post_id\": 9027.0, \"author_id\": 726.0, \"id_y\": 726.0, \"author\": \"Netzwerk\", \"author_group\": \"Other\"}, {\"id_x\": 9031, \"umap_x\": -0.3062085807323456, \"umap_y\": 0.613907516002655, \"post_id\": 9031.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9033, \"umap_x\": 1.6841908693313599, \"umap_y\": 0.34174415469169617, \"post_id\": 9033.0, \"author_id\": 727.0, \"id_y\": 727.0, \"author\": \"Nina B\\u00f6ckmann\", \"author_group\": \"Other\"}, {\"id_x\": 9033, \"umap_x\": 1.6841908693313599, \"umap_y\": 0.34174415469169617, \"post_id\": 9033.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9035, \"umap_x\": 1.230373740196228, \"umap_y\": 0.17513298988342285, \"post_id\": 9035.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 9035, \"umap_x\": 1.230373740196228, \"umap_y\": 0.17513298988342285, \"post_id\": 9035.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9037, \"umap_x\": -2.1649229526519775, \"umap_y\": 1.5114660263061523, \"post_id\": 9037.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9037, \"umap_x\": -2.1649229526519775, \"umap_y\": 1.5114660263061523, \"post_id\": 9037.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9039, \"umap_x\": 0.1511487066745758, \"umap_y\": 0.8704445362091064, \"post_id\": 9039.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 9039, \"umap_x\": 0.1511487066745758, \"umap_y\": 0.8704445362091064, \"post_id\": 9039.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9041, \"umap_x\": -1.2958369255065918, \"umap_y\": 2.532938003540039, \"post_id\": 9041.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9043, \"umap_x\": -1.1571612358093262, \"umap_y\": 2.056135654449463, \"post_id\": 9043.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9043, \"umap_x\": -1.1571612358093262, \"umap_y\": 2.056135654449463, \"post_id\": 9043.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9045, \"umap_x\": 0.4909156262874603, \"umap_y\": 0.7550610899925232, \"post_id\": 9045.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 9045, \"umap_x\": 0.4909156262874603, \"umap_y\": 0.7550610899925232, \"post_id\": 9045.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9047, \"umap_x\": -0.978049099445343, \"umap_y\": -0.16427145898342133, \"post_id\": 9047.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 9047, \"umap_x\": -0.978049099445343, \"umap_y\": -0.16427145898342133, \"post_id\": 9047.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9049, \"umap_x\": -1.3034104108810425, \"umap_y\": -1.011854648590088, \"post_id\": 9049.0, \"author_id\": 728.0, \"id_y\": 728.0, \"author\": \"Janina Papst\", \"author_group\": \"Other\"}, {\"id_x\": 9049, \"umap_x\": -1.3034104108810425, \"umap_y\": -1.011854648590088, \"post_id\": 9049.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9051, \"umap_x\": -1.0303728580474854, \"umap_y\": 6.220506191253662, \"post_id\": 9051.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 9055, \"umap_x\": -0.4657207727432251, \"umap_y\": 1.0140345096588135, \"post_id\": 9055.0, \"author_id\": 729.0, \"id_y\": 729.0, \"author\": \"Jana Peters\", \"author_group\": \"Other\"}, {\"id_x\": 9055, \"umap_x\": -0.4657207727432251, \"umap_y\": 1.0140345096588135, \"post_id\": 9055.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9057, \"umap_x\": -0.13913463056087494, \"umap_y\": 0.21037405729293823, \"post_id\": 9057.0, \"author_id\": 471.0, \"id_y\": 471.0, \"author\": \"Manuela Engelmann-Bunk\", \"author_group\": \"Other\"}, {\"id_x\": 9057, \"umap_x\": -0.13913463056087494, \"umap_y\": 0.21037405729293823, \"post_id\": 9057.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9059, \"umap_x\": -2.4960999488830566, \"umap_y\": 1.1287682056427002, \"post_id\": 9059.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9059, \"umap_x\": -2.4960999488830566, \"umap_y\": 1.1287682056427002, \"post_id\": 9059.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9061, \"umap_x\": 0.10032553225755692, \"umap_y\": 2.3959860801696777, \"post_id\": 9061.0, \"author_id\": 730.0, \"id_y\": 730.0, \"author\": \"Soligruppen\", \"author_group\": \"Other\"}, {\"id_x\": 9069, \"umap_x\": 1.852697730064392, \"umap_y\": 3.4719440937042236, \"post_id\": 9069.0, \"author_id\": 684.0, \"id_y\": 684.0, \"author\": \"Anarchist Black Cross Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9072, \"umap_x\": 0.34710371494293213, \"umap_y\": 0.35932832956314087, \"post_id\": 9072.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 9072, \"umap_x\": 0.34710371494293213, \"umap_y\": 0.35932832956314087, \"post_id\": 9072.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9074, \"umap_x\": 0.09073572605848312, \"umap_y\": 3.7708022594451904, \"post_id\": 9074.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 9076, \"umap_x\": -2.14735746383667, \"umap_y\": -1.4809354543685913, \"post_id\": 9076.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9078, \"umap_x\": -3.2608611583709717, \"umap_y\": 0.7042058110237122, \"post_id\": 9078.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9078, \"umap_x\": -3.2608611583709717, \"umap_y\": 0.7042058110237122, \"post_id\": 9078.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9080, \"umap_x\": -1.823183536529541, \"umap_y\": -0.6132633090019226, \"post_id\": 9080.0, \"author_id\": 510.0, \"id_y\": 510.0, \"author\": \"Steffen Brost\", \"author_group\": \"Other\"}, {\"id_x\": 9080, \"umap_x\": -1.823183536529541, \"umap_y\": -0.6132633090019226, \"post_id\": 9080.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9082, \"umap_x\": -2.4582509994506836, \"umap_y\": 1.173043131828308, \"post_id\": 9082.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 9082, \"umap_x\": -2.4582509994506836, \"umap_y\": 1.173043131828308, \"post_id\": 9082.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9084, \"umap_x\": -0.20138946175575256, \"umap_y\": 0.7346208691596985, \"post_id\": 9084.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 9084, \"umap_x\": -0.20138946175575256, \"umap_y\": 0.7346208691596985, \"post_id\": 9084.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9086, \"umap_x\": -3.6345653533935547, \"umap_y\": 1.9346457719802856, \"post_id\": 9086.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 9086, \"umap_x\": -3.6345653533935547, \"umap_y\": 1.9346457719802856, \"post_id\": 9086.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9088, \"umap_x\": 1.1909255981445312, \"umap_y\": 3.3621270656585693, \"post_id\": 9088.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 9088, \"umap_x\": 1.1909255981445312, \"umap_y\": 3.3621270656585693, \"post_id\": 9088.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 9091, \"umap_x\": -1.2848273515701294, \"umap_y\": 3.639456272125244, \"post_id\": 9091.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 9091, \"umap_x\": -1.2848273515701294, \"umap_y\": 3.639456272125244, \"post_id\": 9091.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 731.0, \"id_y\": 731.0, \"author\": \"Maik Baumg\\u00e4rtner\", \"author_group\": \"Other\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 732.0, \"id_y\": 732.0, \"author\": \"Martin Knobbe\", \"author_group\": \"Other\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 733.0, \"id_y\": 733.0, \"author\": \"Ann-Katrin M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 734.0, \"id_y\": 734.0, \"author\": \"Sven R\\u00f6bel\", \"author_group\": \"Other\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 735.0, \"id_y\": 735.0, \"author\": \"Wolf Wiedmann-Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 9093, \"umap_x\": 1.3716456890106201, \"umap_y\": -2.4119184017181396, \"post_id\": 9093.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 9095, \"umap_x\": 0.39384567737579346, \"umap_y\": -0.49552595615386963, \"post_id\": 9095.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 9095, \"umap_x\": 0.39384567737579346, \"umap_y\": -0.49552595615386963, \"post_id\": 9095.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9097, \"umap_x\": -1.0293488502502441, \"umap_y\": -0.5182218551635742, \"post_id\": 9097.0, \"author_id\": 736.0, \"id_y\": 736.0, \"author\": \"Anna Hoffmeister\", \"author_group\": \"Other\"}, {\"id_x\": 9103, \"umap_x\": -0.9332629442214966, \"umap_y\": 5.183282852172852, \"post_id\": 9103.0, \"author_id\": 737.0, \"id_y\": 737.0, \"author\": \"Noura\", \"author_group\": \"Other\"}, {\"id_x\": 9106, \"umap_x\": 1.385952353477478, \"umap_y\": 3.5827889442443848, \"post_id\": 9106.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 9108, \"umap_x\": 1.2214570045471191, \"umap_y\": -0.3251972794532776, \"post_id\": 9108.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 9108, \"umap_x\": 1.2214570045471191, \"umap_y\": -0.3251972794532776, \"post_id\": 9108.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9115, \"umap_x\": -0.8162527680397034, \"umap_y\": 0.9811167120933533, \"post_id\": 9115.0, \"author_id\": 738.0, \"id_y\": 738.0, \"author\": \"Hagen Eichler\", \"author_group\": \"Other\"}, {\"id_x\": 9115, \"umap_x\": -0.8162527680397034, \"umap_y\": 0.9811167120933533, \"post_id\": 9115.0, \"author_id\": 739.0, \"id_y\": 739.0, \"author\": \"MZ\", \"author_group\": \"Other\"}, {\"id_x\": 9120, \"umap_x\": -4.501574516296387, \"umap_y\": 4.356148719787598, \"post_id\": 9120.0, \"author_id\": 166.0, \"id_y\": 166.0, \"author\": \"Civaka Azad\", \"author_group\": \"Other\"}, {\"id_x\": 9122, \"umap_x\": -3.596816062927246, \"umap_y\": 2.811030864715576, \"post_id\": 9122.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9125, \"umap_x\": -0.606166422367096, \"umap_y\": 0.5992586612701416, \"post_id\": 9125.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9127, \"umap_x\": -1.0141232013702393, \"umap_y\": 0.3606394827365875, \"post_id\": 9127.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 9127, \"umap_x\": -1.0141232013702393, \"umap_y\": 0.3606394827365875, \"post_id\": 9127.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9134, \"umap_x\": -2.7657997608184814, \"umap_y\": -1.6536149978637695, \"post_id\": 9134.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9137, \"umap_x\": -1.2460300922393799, \"umap_y\": 4.845455169677734, \"post_id\": 9137.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9140, \"umap_x\": -0.5896572470664978, \"umap_y\": 2.726924419403076, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 9144, \"umap_x\": -0.3924810588359833, \"umap_y\": -0.6991581320762634, \"post_id\": 9144.0, \"author_id\": 740.0, \"id_y\": 740.0, \"author\": \"Mateo Morral\", \"author_group\": \"Other\"}, {\"id_x\": 9146, \"umap_x\": -2.2338459491729736, \"umap_y\": 4.387837886810303, \"post_id\": 9146.0, \"author_id\": 740.0, \"id_y\": 740.0, \"author\": \"Mateo Morral\", \"author_group\": \"Other\"}, {\"id_x\": 9148, \"umap_x\": 1.2387641668319702, \"umap_y\": 0.5405774712562561, \"post_id\": 9148.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 9148, \"umap_x\": 1.2387641668319702, \"umap_y\": 0.5405774712562561, \"post_id\": 9148.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9150, \"umap_x\": -2.793142080307007, \"umap_y\": -1.7163656949996948, \"post_id\": 9150.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9150, \"umap_x\": -2.793142080307007, \"umap_y\": -1.7163656949996948, \"post_id\": 9150.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9152, \"umap_x\": -2.670182228088379, \"umap_y\": 0.5249256491661072, \"post_id\": 9152.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9154, \"umap_x\": 0.13793396949768066, \"umap_y\": 4.351102352142334, \"post_id\": 9154.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 9154, \"umap_x\": 0.13793396949768066, \"umap_y\": 4.351102352142334, \"post_id\": 9154.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9156, \"umap_x\": -2.1383583545684814, \"umap_y\": 1.536370873451233, \"post_id\": 9156.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9156, \"umap_x\": -2.1383583545684814, \"umap_y\": 1.536370873451233, \"post_id\": 9156.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9158, \"umap_x\": -0.5439814329147339, \"umap_y\": -0.9200445413589478, \"post_id\": 9158.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9160, \"umap_x\": -3.104557514190674, \"umap_y\": 1.8904186487197876, \"post_id\": 9160.0, \"author_id\": 741.0, \"id_y\": 741.0, \"author\": \"Leven Wortmann\", \"author_group\": \"Other\"}, {\"id_x\": 9160, \"umap_x\": -3.104557514190674, \"umap_y\": 1.8904186487197876, \"post_id\": 9160.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9162, \"umap_x\": -2.771315574645996, \"umap_y\": -1.726235032081604, \"post_id\": 9162.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 9162, \"umap_x\": -2.771315574645996, \"umap_y\": -1.726235032081604, \"post_id\": 9162.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9177, \"umap_x\": -3.5366878509521484, \"umap_y\": 2.268761157989502, \"post_id\": 9177.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9177, \"umap_x\": -3.5366878509521484, \"umap_y\": 2.268761157989502, \"post_id\": 9177.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9179, \"umap_x\": -4.241340160369873, \"umap_y\": -0.35571762919425964, \"post_id\": 9179.0, \"author_id\": 671.0, \"id_y\": 671.0, \"author\": \"Tilman Kortenhaus\", \"author_group\": \"Other\"}, {\"id_x\": 9179, \"umap_x\": -4.241340160369873, \"umap_y\": -0.35571762919425964, \"post_id\": 9179.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9181, \"umap_x\": 1.0579363107681274, \"umap_y\": 0.42678362131118774, \"post_id\": 9181.0, \"author_id\": 742.0, \"id_y\": 742.0, \"author\": \"Nadja Malak\", \"author_group\": \"Other\"}, {\"id_x\": 9181, \"umap_x\": 1.0579363107681274, \"umap_y\": 0.42678362131118774, \"post_id\": 9181.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9183, \"umap_x\": 0.8012920022010803, \"umap_y\": 0.12697286903858185, \"post_id\": 9183.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 9185, \"umap_x\": -3.305983781814575, \"umap_y\": 2.0143089294433594, \"post_id\": 9185.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 9187, \"umap_x\": 1.0873281955718994, \"umap_y\": 1.2908594608306885, \"post_id\": 9187.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9189, \"umap_x\": -1.5374133586883545, \"umap_y\": 2.948225736618042, \"post_id\": 9189.0, \"author_id\": 743.0, \"id_y\": 743.0, \"author\": \"Daniel Seiffert\", \"author_group\": \"Other\"}, {\"id_x\": 9192, \"umap_x\": 1.022778868675232, \"umap_y\": 0.5686572194099426, \"post_id\": 9192.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9192, \"umap_x\": 1.022778868675232, \"umap_y\": 0.5686572194099426, \"post_id\": 9192.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9194, \"umap_x\": -2.799485921859741, \"umap_y\": -0.2619119882583618, \"post_id\": 9194.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9196, \"umap_x\": -2.8226051330566406, \"umap_y\": 4.114421367645264, \"post_id\": 9196.0, \"author_id\": 595.0, \"id_y\": 595.0, \"author\": \"Leser\", \"author_group\": \"Other\"}, {\"id_x\": 9216, \"umap_x\": -3.862150192260742, \"umap_y\": -1.0484869480133057, \"post_id\": 9216.0, \"author_id\": 659.0, \"id_y\": 659.0, \"author\": \"MDR Investigativ\", \"author_group\": \"Other\"}, {\"id_x\": 9223, \"umap_x\": -1.6292327642440796, \"umap_y\": -0.6816747188568115, \"post_id\": 9223.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9223, \"umap_x\": -1.6292327642440796, \"umap_y\": -0.6816747188568115, \"post_id\": 9223.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9225, \"umap_x\": -3.0551607608795166, \"umap_y\": -1.4121663570404053, \"post_id\": 9225.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9229, \"umap_x\": -2.689117193222046, \"umap_y\": 5.295738697052002, \"post_id\": 9229.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9231, \"umap_x\": -0.3960795998573303, \"umap_y\": 2.9158685207366943, \"post_id\": 9231.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 9231, \"umap_x\": -0.3960795998573303, \"umap_y\": 2.9158685207366943, \"post_id\": 9231.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9233, \"umap_x\": 0.49596211314201355, \"umap_y\": 0.7959477305412292, \"post_id\": 9233.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 9233, \"umap_x\": 0.49596211314201355, \"umap_y\": 0.7959477305412292, \"post_id\": 9233.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9235, \"umap_x\": -0.9448780417442322, \"umap_y\": 6.28315544128418, \"post_id\": 9235.0, \"author_id\": 560.0, \"id_y\": 560.0, \"author\": \"Klaus Haus\", \"author_group\": \"Other\"}, {\"id_x\": 9239, \"umap_x\": -2.7677366733551025, \"umap_y\": -0.2433996945619583, \"post_id\": 9239.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9242, \"umap_x\": -1.7857542037963867, \"umap_y\": 2.7893009185791016, \"post_id\": 9242.0, \"author_id\": 744.0, \"id_y\": 744.0, \"author\": \"antirepkongress\", \"author_group\": \"Other\"}, {\"id_x\": 9247, \"umap_x\": 0.36886027455329895, \"umap_y\": 3.7055768966674805, \"post_id\": 9247.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9250, \"umap_x\": -2.530000925064087, \"umap_y\": 0.2351294606924057, \"post_id\": 9250.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 9250, \"umap_x\": -2.530000925064087, \"umap_y\": 0.2351294606924057, \"post_id\": 9250.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9252, \"umap_x\": -0.06063948571681976, \"umap_y\": -0.13149988651275635, \"post_id\": 9252.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9259, \"umap_x\": 0.6689446568489075, \"umap_y\": 2.532186269760132, \"post_id\": 9259.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9262, \"umap_x\": -3.7675018310546875, \"umap_y\": 0.3932082951068878, \"post_id\": 9262.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9265, \"umap_x\": 0.1317174881696701, \"umap_y\": 2.0332300662994385, \"post_id\": 9265.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 9272, \"umap_x\": -2.920171022415161, \"umap_y\": 0.5698028206825256, \"post_id\": 9272.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9280, \"umap_x\": -3.2511403560638428, \"umap_y\": 0.4843961298465729, \"post_id\": 9280.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 9284, \"umap_x\": -0.9348433017730713, \"umap_y\": 3.0120127201080322, \"post_id\": 9284.0, \"author_id\": 745.0, \"id_y\": 745.0, \"author\": \"FAU Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9287, \"umap_x\": 0.6844753623008728, \"umap_y\": 0.4508403241634369, \"post_id\": 9287.0, \"author_id\": 746.0, \"id_y\": 746.0, \"author\": \"Bernd Appel\", \"author_group\": \"Other\"}, {\"id_x\": 9287, \"umap_x\": 0.6844753623008728, \"umap_y\": 0.4508403241634369, \"post_id\": 9287.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9289, \"umap_x\": -1.814943552017212, \"umap_y\": 2.7712693214416504, \"post_id\": 9289.0, \"author_id\": 747.0, \"id_y\": 747.0, \"author\": \"Holger Frenzel\", \"author_group\": \"Other\"}, {\"id_x\": 9289, \"umap_x\": -1.814943552017212, \"umap_y\": 2.7712693214416504, \"post_id\": 9289.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9291, \"umap_x\": 0.8520520925521851, \"umap_y\": 1.9346559047698975, \"post_id\": 9291.0, \"author_id\": 748.0, \"id_y\": 748.0, \"author\": \"Giancarlo Castelli\", \"author_group\": \"Other\"}, {\"id_x\": 9295, \"umap_x\": -3.407440185546875, \"umap_y\": -0.8527636528015137, \"post_id\": 9295.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 9295, \"umap_x\": -3.407440185546875, \"umap_y\": -0.8527636528015137, \"post_id\": 9295.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9297, \"umap_x\": -2.196558713912964, \"umap_y\": 1.4320769309997559, \"post_id\": 9297.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9297, \"umap_x\": -2.196558713912964, \"umap_y\": 1.4320769309997559, \"post_id\": 9297.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9299, \"umap_x\": 1.401524543762207, \"umap_y\": 3.668840169906616, \"post_id\": 9299.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 9299, \"umap_x\": 1.401524543762207, \"umap_y\": 3.668840169906616, \"post_id\": 9299.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9301, \"umap_x\": -0.6401587724685669, \"umap_y\": 0.28839537501335144, \"post_id\": 9301.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9303, \"umap_x\": 0.05700303986668587, \"umap_y\": 3.6483001708984375, \"post_id\": 9303.0, \"author_id\": 749.0, \"id_y\": 749.0, \"author\": \"Markus Sulzbacher\", \"author_group\": \"Other\"}, {\"id_x\": 9305, \"umap_x\": -1.1681171655654907, \"umap_y\": 0.5913520455360413, \"post_id\": 9305.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9305, \"umap_x\": -1.1681171655654907, \"umap_y\": 0.5913520455360413, \"post_id\": 9305.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9309, \"umap_x\": -1.843599796295166, \"umap_y\": 0.3697817027568817, \"post_id\": 9309.0, \"author_id\": 750.0, \"id_y\": 750.0, \"author\": \"Heike Hubricht\", \"author_group\": \"Other\"}, {\"id_x\": 9309, \"umap_x\": -1.843599796295166, \"umap_y\": 0.3697817027568817, \"post_id\": 9309.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9311, \"umap_x\": -1.872230887413025, \"umap_y\": -0.22008363902568817, \"post_id\": 9311.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 9311, \"umap_x\": -1.872230887413025, \"umap_y\": -0.22008363902568817, \"post_id\": 9311.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9319, \"umap_x\": 0.8891689777374268, \"umap_y\": -0.7099704146385193, \"post_id\": 9319.0, \"author_id\": 751.0, \"id_y\": 751.0, \"author\": \"Uwe M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9319, \"umap_x\": 0.8891689777374268, \"umap_y\": -0.7099704146385193, \"post_id\": 9319.0, \"author_id\": 752.0, \"id_y\": 752.0, \"author\": \"Frederik Schindler\", \"author_group\": \"Other\"}, {\"id_x\": 9319, \"umap_x\": 0.8891689777374268, \"umap_y\": -0.7099704146385193, \"post_id\": 9319.0, \"author_id\": 753.0, \"id_y\": 753.0, \"author\": \"Dirk Banse\", \"author_group\": \"Other\"}, {\"id_x\": 9319, \"umap_x\": 0.8891689777374268, \"umap_y\": -0.7099704146385193, \"post_id\": 9319.0, \"author_id\": 754.0, \"id_y\": 754.0, \"author\": \"Kevin Culina\", \"author_group\": \"Other\"}, {\"id_x\": 9319, \"umap_x\": 0.8891689777374268, \"umap_y\": -0.7099704146385193, \"post_id\": 9319.0, \"author_id\": 755.0, \"id_y\": 755.0, \"author\": \"Martin Lutz\", \"author_group\": \"Other\"}, {\"id_x\": 9321, \"umap_x\": 0.9550983309745789, \"umap_y\": 0.09661810845136642, \"post_id\": 9321.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 9321, \"umap_x\": 0.9550983309745789, \"umap_y\": 0.09661810845136642, \"post_id\": 9321.0, \"author_id\": 57.0, \"id_y\": 57.0, \"author\": \"Jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 9325, \"umap_x\": -2.1886250972747803, \"umap_y\": 4.410375595092773, \"post_id\": 9325.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9327, \"umap_x\": -2.045553684234619, \"umap_y\": 3.993061065673828, \"post_id\": 9327.0, \"author_id\": 756.0, \"id_y\": 756.0, \"author\": \"Patrick Rossineri\", \"author_group\": \"Other\"}, {\"id_x\": 9330, \"umap_x\": 1.1657284498214722, \"umap_y\": 3.9805307388305664, \"post_id\": 9330.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9333, \"umap_x\": -1.2630047798156738, \"umap_y\": 0.4416835308074951, \"post_id\": 9333.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 9333, \"umap_x\": -1.2630047798156738, \"umap_y\": 0.4416835308074951, \"post_id\": 9333.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9335, \"umap_x\": -4.326621055603027, \"umap_y\": -0.3791084587574005, \"post_id\": 9335.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 9335, \"umap_x\": -4.326621055603027, \"umap_y\": -0.3791084587574005, \"post_id\": 9335.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9337, \"umap_x\": -1.4173601865768433, \"umap_y\": 0.27488207817077637, \"post_id\": 9337.0, \"author_id\": 757.0, \"id_y\": 757.0, \"author\": \"Georg M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9337, \"umap_x\": -1.4173601865768433, \"umap_y\": 0.27488207817077637, \"post_id\": 9337.0, \"author_id\": 758.0, \"id_y\": 758.0, \"author\": \"Joseph Wenzel\", \"author_group\": \"Other\"}, {\"id_x\": 9337, \"umap_x\": -1.4173601865768433, \"umap_y\": 0.27488207817077637, \"post_id\": 9337.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 9339, \"umap_x\": -1.778985857963562, \"umap_y\": 0.9689943194389343, \"post_id\": 9339.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9339, \"umap_x\": -1.778985857963562, \"umap_y\": 0.9689943194389343, \"post_id\": 9339.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9341, \"umap_x\": 0.9041992425918579, \"umap_y\": 1.3045752048492432, \"post_id\": 9341.0, \"author_id\": 388.0, \"id_y\": 388.0, \"author\": \"FAZ\", \"author_group\": \"Other\"}, {\"id_x\": 9343, \"umap_x\": -1.7960834503173828, \"umap_y\": -0.08725356310606003, \"post_id\": 9343.0, \"author_id\": 759.0, \"id_y\": 759.0, \"author\": \"Lilli Sulser\", \"author_group\": \"Other\"}, {\"id_x\": 9345, \"umap_x\": -2.257308006286621, \"umap_y\": 0.5320683717727661, \"post_id\": 9345.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 9347, \"umap_x\": 0.7570580244064331, \"umap_y\": 0.8330168724060059, \"post_id\": 9347.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9349, \"umap_x\": 0.8580679297447205, \"umap_y\": 0.2897341549396515, \"post_id\": 9349.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9349, \"umap_x\": 0.8580679297447205, \"umap_y\": 0.2897341549396515, \"post_id\": 9349.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 9349, \"umap_x\": 0.8580679297447205, \"umap_y\": 0.2897341549396515, \"post_id\": 9349.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9351, \"umap_x\": -0.932491660118103, \"umap_y\": -0.42705991864204407, \"post_id\": 9351.0, \"author_id\": 757.0, \"id_y\": 757.0, \"author\": \"Georg M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9351, \"umap_x\": -0.932491660118103, \"umap_y\": -0.42705991864204407, \"post_id\": 9351.0, \"author_id\": 266.0, \"id_y\": 266.0, \"author\": \"Annett Honscha\", \"author_group\": \"Other\"}, {\"id_x\": 9351, \"umap_x\": -0.932491660118103, \"umap_y\": -0.42705991864204407, \"post_id\": 9351.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9353, \"umap_x\": -1.8755574226379395, \"umap_y\": 1.4564887285232544, \"post_id\": 9353.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 9353, \"umap_x\": -1.8755574226379395, \"umap_y\": 1.4564887285232544, \"post_id\": 9353.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9355, \"umap_x\": -2.1509761810302734, \"umap_y\": 1.4967918395996094, \"post_id\": 9355.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 9355, \"umap_x\": -2.1509761810302734, \"umap_y\": 1.4967918395996094, \"post_id\": 9355.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9365, \"umap_x\": -1.2939164638519287, \"umap_y\": 5.278616428375244, \"post_id\": 9365.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9369, \"umap_x\": -0.9373622536659241, \"umap_y\": 6.270733833312988, \"post_id\": 9369.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9383, \"umap_x\": -2.761488914489746, \"umap_y\": 5.274195194244385, \"post_id\": 9383.0, \"author_id\": 760.0, \"id_y\": 760.0, \"author\": \"Anarchist Black Cross Belarus\", \"author_group\": \"Other\"}, {\"id_x\": 9385, \"umap_x\": -0.9948195815086365, \"umap_y\": 3.5027339458465576, \"post_id\": 9385.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9392, \"umap_x\": 0.4413096308708191, \"umap_y\": 3.1659297943115234, \"post_id\": 9392.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9398, \"umap_x\": -4.376578330993652, \"umap_y\": 4.6765947341918945, \"post_id\": 9398.0, \"author_id\": 761.0, \"id_y\": 761.0, \"author\": \"Antifa Enternasyonal\", \"author_group\": \"Other\"}, {\"id_x\": 9401, \"umap_x\": -1.347032904624939, \"umap_y\": -1.7586570978164673, \"post_id\": 9401.0, \"author_id\": 762.0, \"id_y\": 762.0, \"author\": \"Frank D\\u00f6rfelt\", \"author_group\": \"Other\"}, {\"id_x\": 9401, \"umap_x\": -1.347032904624939, \"umap_y\": -1.7586570978164673, \"post_id\": 9401.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9403, \"umap_x\": -1.3419522047042847, \"umap_y\": 3.7017407417297363, \"post_id\": 9403.0, \"author_id\": 614.0, \"id_y\": 614.0, \"author\": \"Manuela M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9403, \"umap_x\": -1.3419522047042847, \"umap_y\": 3.7017407417297363, \"post_id\": 9403.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9405, \"umap_x\": -3.7047057151794434, \"umap_y\": 2.720284938812256, \"post_id\": 9405.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 9405, \"umap_x\": -3.7047057151794434, \"umap_y\": 2.720284938812256, \"post_id\": 9405.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9407, \"umap_x\": 0.8424391746520996, \"umap_y\": 0.05759613588452339, \"post_id\": 9407.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 9407, \"umap_x\": 0.8424391746520996, \"umap_y\": 0.05759613588452339, \"post_id\": 9407.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9409, \"umap_x\": 1.507353663444519, \"umap_y\": 0.26933038234710693, \"post_id\": 9409.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 9409, \"umap_x\": 1.507353663444519, \"umap_y\": 0.26933038234710693, \"post_id\": 9409.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9411, \"umap_x\": 1.0584464073181152, \"umap_y\": -0.2194610983133316, \"post_id\": 9411.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9413, \"umap_x\": 0.12077562510967255, \"umap_y\": 0.3221549391746521, \"post_id\": 9413.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9421, \"umap_x\": -2.5071828365325928, \"umap_y\": 0.7271373867988586, \"post_id\": 9421.0, \"author_id\": 763.0, \"id_y\": 763.0, \"author\": \"CSD Wurzen\", \"author_group\": \"Other\"}, {\"id_x\": 9425, \"umap_x\": -0.8292163610458374, \"umap_y\": 1.5272274017333984, \"post_id\": 9425.0, \"author_id\": 764.0, \"id_y\": 764.0, \"author\": \"Manuel Niemann\", \"author_group\": \"Other\"}, {\"id_x\": 9425, \"umap_x\": -0.8292163610458374, \"umap_y\": 1.5272274017333984, \"post_id\": 9425.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9427, \"umap_x\": -0.23943394422531128, \"umap_y\": -0.23226523399353027, \"post_id\": 9427.0, \"author_id\": 733.0, \"id_y\": 733.0, \"author\": \"Ann-Katrin M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9427, \"umap_x\": -0.23943394422531128, \"umap_y\": -0.23226523399353027, \"post_id\": 9427.0, \"author_id\": 735.0, \"id_y\": 735.0, \"author\": \"Wolf Wiedmann-Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 9427, \"umap_x\": -0.23943394422531128, \"umap_y\": -0.23226523399353027, \"post_id\": 9427.0, \"author_id\": 765.0, \"id_y\": 765.0, \"author\": \"Roman H\\u00f6fner\", \"author_group\": \"Other\"}, {\"id_x\": 9429, \"umap_x\": -2.310168981552124, \"umap_y\": 4.416096210479736, \"post_id\": 9429.0, \"author_id\": 140.0, \"id_y\": 140.0, \"author\": \"Anarchistische Tage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9432, \"umap_x\": 1.0276519060134888, \"umap_y\": 1.6344698667526245, \"post_id\": 9432.0, \"author_id\": 766.0, \"id_y\": 766.0, \"author\": \"Charlotte L\\u00fcder\", \"author_group\": \"Other\"}, {\"id_x\": 9432, \"umap_x\": 1.0276519060134888, \"umap_y\": 1.6344698667526245, \"post_id\": 9432.0, \"author_id\": 733.0, \"id_y\": 733.0, \"author\": \"Ann-Katrin M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9434, \"umap_x\": -0.21037305891513824, \"umap_y\": 3.404059648513794, \"post_id\": 9434.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 9437, \"umap_x\": -0.8669306635856628, \"umap_y\": 1.758065938949585, \"post_id\": 9437.0, \"author_id\": 356.0, \"id_y\": 356.0, \"author\": \"welt\", \"author_group\": \"Other\"}, {\"id_x\": 9439, \"umap_x\": -1.9810309410095215, \"umap_y\": 0.9228872656822205, \"post_id\": 9439.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9442, \"umap_x\": -1.3263657093048096, \"umap_y\": -0.2913958430290222, \"post_id\": 9442.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9445, \"umap_x\": 0.16602055728435516, \"umap_y\": 1.9801599979400635, \"post_id\": 9445.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 9445, \"umap_x\": 0.16602055728435516, \"umap_y\": 1.9801599979400635, \"post_id\": 9445.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9447, \"umap_x\": -1.6753679513931274, \"umap_y\": 1.442631721496582, \"post_id\": 9447.0, \"author_id\": 767.0, \"id_y\": 767.0, \"author\": \"Laura Meinfelder\", \"author_group\": \"Other\"}, {\"id_x\": 9447, \"umap_x\": -1.6753679513931274, \"umap_y\": 1.442631721496582, \"post_id\": 9447.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 9449, \"umap_x\": -2.297187566757202, \"umap_y\": -0.8435395956039429, \"post_id\": 9449.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 9449, \"umap_x\": -2.297187566757202, \"umap_y\": -0.8435395956039429, \"post_id\": 9449.0, \"author_id\": 499.0, \"id_y\": 499.0, \"author\": \"Emma Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 9451, \"umap_x\": -2.1209092140197754, \"umap_y\": 1.9153096675872803, \"post_id\": 9451.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9457, \"umap_x\": -2.444929361343384, \"umap_y\": 0.1466149240732193, \"post_id\": 9457.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9462, \"umap_x\": 0.5756102800369263, \"umap_y\": 1.139479160308838, \"post_id\": 9462.0, \"author_id\": 768.0, \"id_y\": 768.0, \"author\": \"Pro Choice Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9465, \"umap_x\": -3.6131978034973145, \"umap_y\": 0.17429110407829285, \"post_id\": 9465.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9468, \"umap_x\": -1.9899722337722778, \"umap_y\": -0.406645268201828, \"post_id\": 9468.0, \"author_id\": 71.0, \"id_y\": 71.0, \"author\": \"Nancy Dietrich\", \"author_group\": \"Other\"}, {\"id_x\": 9468, \"umap_x\": -1.9899722337722778, \"umap_y\": -0.406645268201828, \"post_id\": 9468.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 9468, \"umap_x\": -1.9899722337722778, \"umap_y\": -0.406645268201828, \"post_id\": 9468.0, \"author_id\": 169.0, \"id_y\": 169.0, \"author\": \"freiepresse\", \"author_group\": \"Other\"}, {\"id_x\": 9475, \"umap_x\": -1.5077930688858032, \"umap_y\": 5.153469562530518, \"post_id\": 9475.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9477, \"umap_x\": -1.3399842977523804, \"umap_y\": 4.816188335418701, \"post_id\": 9477.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 9477, \"umap_x\": -1.3399842977523804, \"umap_y\": 4.816188335418701, \"post_id\": 9477.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9479, \"umap_x\": -1.3342076539993286, \"umap_y\": -1.7285974025726318, \"post_id\": 9479.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9481, \"umap_x\": -1.5400919914245605, \"umap_y\": 2.91149640083313, \"post_id\": 9481.0, \"author_id\": 769.0, \"id_y\": 769.0, \"author\": \"Oliver Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 9481, \"umap_x\": -1.5400919914245605, \"umap_y\": 2.91149640083313, \"post_id\": 9481.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9483, \"umap_x\": -3.005695343017578, \"umap_y\": 1.2982406616210938, \"post_id\": 9483.0, \"author_id\": 98.0, \"id_y\": 98.0, \"author\": \"Markus van Appeldorn\", \"author_group\": \"Other\"}, {\"id_x\": 9483, \"umap_x\": -3.005695343017578, \"umap_y\": 1.2982406616210938, \"post_id\": 9483.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9485, \"umap_x\": -1.3568215370178223, \"umap_y\": -1.7665032148361206, \"post_id\": 9485.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 9485, \"umap_x\": -1.3568215370178223, \"umap_y\": -1.7665032148361206, \"post_id\": 9485.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9487, \"umap_x\": -0.08337535709142685, \"umap_y\": 3.6444454193115234, \"post_id\": 9487.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9487, \"umap_x\": -0.08337535709142685, \"umap_y\": 3.6444454193115234, \"post_id\": 9487.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9489, \"umap_x\": -0.8718989491462708, \"umap_y\": 0.7646254301071167, \"post_id\": 9489.0, \"author_id\": 770.0, \"id_y\": 770.0, \"author\": \"Osman O\\u011fuz\", \"author_group\": \"Other\"}, {\"id_x\": 9491, \"umap_x\": -0.3053186535835266, \"umap_y\": 0.4902079999446869, \"post_id\": 9491.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 9491, \"umap_x\": -0.3053186535835266, \"umap_y\": 0.4902079999446869, \"post_id\": 9491.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9491, \"umap_x\": -0.3053186535835266, \"umap_y\": 0.4902079999446869, \"post_id\": 9491.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9493, \"umap_x\": 0.14497433602809906, \"umap_y\": 0.4714972972869873, \"post_id\": 9493.0, \"author_id\": 771.0, \"id_y\": 771.0, \"author\": \"Denise M\\u00e4rkisch\", \"author_group\": \"Other\"}, {\"id_x\": 9493, \"umap_x\": 0.14497433602809906, \"umap_y\": 0.4714972972869873, \"post_id\": 9493.0, \"author_id\": 91.0, \"id_y\": 91.0, \"author\": \"Ronny Schilder\", \"author_group\": \"Other\"}, {\"id_x\": 9493, \"umap_x\": 0.14497433602809906, \"umap_y\": 0.4714972972869873, \"post_id\": 9493.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9500, \"umap_x\": 0.3229838013648987, \"umap_y\": 1.8518617153167725, \"post_id\": 9500.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9503, \"umap_x\": -0.9522546529769897, \"umap_y\": 4.2471137046813965, \"post_id\": 9503.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 9510, \"umap_x\": -2.0472986698150635, \"umap_y\": 3.8263463973999023, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 9515, \"umap_x\": -1.5143295526504517, \"umap_y\": 2.524475336074829, \"post_id\": 9515.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9518, \"umap_x\": 0.8840058445930481, \"umap_y\": 3.936723470687866, \"post_id\": 9518.0, \"author_id\": 534.0, \"id_y\": 534.0, \"author\": \"Solikreis N\\u00fcrnberg\", \"author_group\": \"Other\"}, {\"id_x\": 9518, \"umap_x\": 0.8840058445930481, \"umap_y\": 3.936723470687866, \"post_id\": 9518.0, \"author_id\": 335.0, \"id_y\": 335.0, \"author\": \"Indymedia\", \"author_group\": \"Other\"}, {\"id_x\": 9523, \"umap_x\": 0.2883819043636322, \"umap_y\": 1.9656059741973877, \"post_id\": 9523.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 9525, \"umap_x\": 0.42711392045021057, \"umap_y\": 2.251681327819824, \"post_id\": 9525.0, \"author_id\": 772.0, \"id_y\": 772.0, \"author\": \"Lars Tun\\u00e7ay\", \"author_group\": \"Other\"}, {\"id_x\": 9527, \"umap_x\": -1.398161768913269, \"umap_y\": -0.7663233280181885, \"post_id\": 9527.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 9529, \"umap_x\": -0.1255776435136795, \"umap_y\": 4.112059593200684, \"post_id\": 9529.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 9533, \"umap_x\": -1.0611772537231445, \"umap_y\": 4.393924713134766, \"post_id\": 9533.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9538, \"umap_x\": -1.3903725147247314, \"umap_y\": -1.7007073163986206, \"post_id\": 9538.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 9542, \"umap_x\": -2.5445632934570312, \"umap_y\": 4.2045674324035645, \"post_id\": 9542.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9545, \"umap_x\": -1.6822893619537354, \"umap_y\": 2.974604606628418, \"post_id\": 9545.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9548, \"umap_x\": 0.19677585363388062, \"umap_y\": 5.005043983459473, \"post_id\": 9548.0, \"author_id\": 773.0, \"id_y\": 773.0, \"author\": \"Rudolf M\\u00fchland\", \"author_group\": \"Other\"}, {\"id_x\": 9550, \"umap_x\": 0.391821950674057, \"umap_y\": 0.9403189420700073, \"post_id\": 9550.0, \"author_id\": 679.0, \"id_y\": 679.0, \"author\": \"Carlotta B\\u00f6ttcher\", \"author_group\": \"Other\"}, {\"id_x\": 9550, \"umap_x\": 0.391821950674057, \"umap_y\": 0.9403189420700073, \"post_id\": 9550.0, \"author_id\": 774.0, \"id_y\": 774.0, \"author\": \"Johannes Frese\", \"author_group\": \"Other\"}, {\"id_x\": 9550, \"umap_x\": 0.391821950674057, \"umap_y\": 0.9403189420700073, \"post_id\": 9550.0, \"author_id\": 775.0, \"id_y\": 775.0, \"author\": \"Jonas Niesmann\", \"author_group\": \"Other\"}, {\"id_x\": 9550, \"umap_x\": 0.391821950674057, \"umap_y\": 0.9403189420700073, \"post_id\": 9550.0, \"author_id\": 776.0, \"id_y\": 776.0, \"author\": \"S\\u00e4chsische ZEitung\", \"author_group\": \"Other\"}, {\"id_x\": 9552, \"umap_x\": 0.035834621638059616, \"umap_y\": 1.7231940031051636, \"post_id\": 9552.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 9552, \"umap_x\": 0.035834621638059616, \"umap_y\": 1.7231940031051636, \"post_id\": 9552.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 9554, \"umap_x\": -2.0807554721832275, \"umap_y\": 0.28257834911346436, \"post_id\": 9554.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9556, \"umap_x\": 0.041462671011686325, \"umap_y\": 2.106456995010376, \"post_id\": 9556.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 9559, \"umap_x\": 0.9363168478012085, \"umap_y\": 1.964726209640503, \"post_id\": 9559.0, \"author_id\": 777.0, \"id_y\": 777.0, \"author\": \"Thies Marsen\", \"author_group\": \"Other\"}, {\"id_x\": 9573, \"umap_x\": -1.6193137168884277, \"umap_y\": 0.23222868144512177, \"post_id\": 9573.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 9573, \"umap_x\": -1.6193137168884277, \"umap_y\": 0.23222868144512177, \"post_id\": 9573.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 9573, \"umap_x\": -1.6193137168884277, \"umap_y\": 0.23222868144512177, \"post_id\": 9573.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9576, \"umap_x\": -1.5143780708312988, \"umap_y\": 3.379434823989868, \"post_id\": 9576.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9580, \"umap_x\": 0.2861429452896118, \"umap_y\": 0.7387020587921143, \"post_id\": 9580.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9585, \"umap_x\": -4.160086631774902, \"umap_y\": -0.45111650228500366, \"post_id\": 9585.0, \"author_id\": 778.0, \"id_y\": 778.0, \"author\": \"Thomas Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 9585, \"umap_x\": -4.160086631774902, \"umap_y\": -0.45111650228500366, \"post_id\": 9585.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9587, \"umap_x\": 1.0329464673995972, \"umap_y\": -0.07292291522026062, \"post_id\": 9587.0, \"author_id\": 764.0, \"id_y\": 764.0, \"author\": \"Manuel Niemann\", \"author_group\": \"Other\"}, {\"id_x\": 9587, \"umap_x\": 1.0329464673995972, \"umap_y\": -0.07292291522026062, \"post_id\": 9587.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9589, \"umap_x\": -0.501192033290863, \"umap_y\": 2.365870952606201, \"post_id\": 9589.0, \"author_id\": 500.0, \"id_y\": 500.0, \"author\": \"Julia Grunwald\", \"author_group\": \"Other\"}, {\"id_x\": 9589, \"umap_x\": -0.501192033290863, \"umap_y\": 2.365870952606201, \"post_id\": 9589.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9591, \"umap_x\": 1.1673352718353271, \"umap_y\": -0.45117318630218506, \"post_id\": 9591.0, \"author_id\": 685.0, \"id_y\": 685.0, \"author\": \"Carina Book\", \"author_group\": \"Other\"}, {\"id_x\": 9591, \"umap_x\": 1.1673352718353271, \"umap_y\": -0.45117318630218506, \"post_id\": 9591.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 9593, \"umap_x\": 0.6363680362701416, \"umap_y\": -1.0078750848770142, \"post_id\": 9593.0, \"author_id\": 259.0, \"id_y\": 259.0, \"author\": \"Patrick Herrl\", \"author_group\": \"Other\"}, {\"id_x\": 9593, \"umap_x\": 0.6363680362701416, \"umap_y\": -1.0078750848770142, \"post_id\": 9593.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9595, \"umap_x\": -0.8478899598121643, \"umap_y\": -1.3358057737350464, \"post_id\": 9595.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9597, \"umap_x\": -2.1557424068450928, \"umap_y\": -0.31706365942955017, \"post_id\": 9597.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9599, \"umap_x\": -2.3796565532684326, \"umap_y\": 0.2237546741962433, \"post_id\": 9599.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 9599, \"umap_x\": -2.3796565532684326, \"umap_y\": 0.2237546741962433, \"post_id\": 9599.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9601, \"umap_x\": 1.4217313528060913, \"umap_y\": -0.0020008001010864973, \"post_id\": 9601.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 9601, \"umap_x\": 1.4217313528060913, \"umap_y\": -0.0020008001010864973, \"post_id\": 9601.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9603, \"umap_x\": 1.0455838441848755, \"umap_y\": 1.1525925397872925, \"post_id\": 9603.0, \"author_id\": 779.0, \"id_y\": 779.0, \"author\": \"Philippe Debionne\", \"author_group\": \"Other\"}, {\"id_x\": 9605, \"umap_x\": -1.1378047466278076, \"umap_y\": -0.8960095643997192, \"post_id\": 9605.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 9605, \"umap_x\": -1.1378047466278076, \"umap_y\": -0.8960095643997192, \"post_id\": 9605.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9607, \"umap_x\": -3.0364363193511963, \"umap_y\": 2.4044606685638428, \"post_id\": 9607.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 9607, \"umap_x\": -3.0364363193511963, \"umap_y\": 2.4044606685638428, \"post_id\": 9607.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9607, \"umap_x\": -3.0364363193511963, \"umap_y\": 2.4044606685638428, \"post_id\": 9607.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9609, \"umap_x\": -2.549994945526123, \"umap_y\": 1.2086230516433716, \"post_id\": 9609.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9611, \"umap_x\": 1.2520403861999512, \"umap_y\": -0.7235189080238342, \"post_id\": 9611.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 9611, \"umap_x\": 1.2520403861999512, \"umap_y\": -0.7235189080238342, \"post_id\": 9611.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9613, \"umap_x\": -1.6327540874481201, \"umap_y\": 0.06139509007334709, \"post_id\": 9613.0, \"author_id\": 780.0, \"id_y\": 780.0, \"author\": \"Aktionsb\\u00fcndnis gegen Neonazis\", \"author_group\": \"Other\"}, {\"id_x\": 9616, \"umap_x\": -0.2085184007883072, \"umap_y\": -0.3499048948287964, \"post_id\": 9616.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9616, \"umap_x\": -0.2085184007883072, \"umap_y\": -0.3499048948287964, \"post_id\": 9616.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9628, \"umap_x\": 0.15756182372570038, \"umap_y\": 2.1517555713653564, \"post_id\": 9628.0, \"author_id\": 781.0, \"id_y\": 781.0, \"author\": \"Eva-Maria Hommel\", \"author_group\": \"Other\"}, {\"id_x\": 9628, \"umap_x\": 0.15756182372570038, \"umap_y\": 2.1517555713653564, \"post_id\": 9628.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9647, \"umap_x\": -1.1960536241531372, \"umap_y\": 2.012519359588623, \"post_id\": 9647.0, \"author_id\": 782.0, \"id_y\": 782.0, \"author\": \"Achim\", \"author_group\": \"Other\"}, {\"id_x\": 9655, \"umap_x\": 1.7210710048675537, \"umap_y\": 0.35819005966186523, \"post_id\": 9655.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 9655, \"umap_x\": 1.7210710048675537, \"umap_y\": 0.35819005966186523, \"post_id\": 9655.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9657, \"umap_x\": -2.2418460845947266, \"umap_y\": 1.4583083391189575, \"post_id\": 9657.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9659, \"umap_x\": -2.32739520072937, \"umap_y\": -1.289617896080017, \"post_id\": 9659.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9661, \"umap_x\": -1.6690906286239624, \"umap_y\": 0.9858907461166382, \"post_id\": 9661.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9661, \"umap_x\": -1.6690906286239624, \"umap_y\": 0.9858907461166382, \"post_id\": 9661.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9663, \"umap_x\": -0.6111581325531006, \"umap_y\": 4.267444610595703, \"post_id\": 9663.0, \"author_id\": 783.0, \"id_y\": 783.0, \"author\": \"Felyx Feyerabend\", \"author_group\": \"Other\"}, {\"id_x\": 9665, \"umap_x\": 0.8424198031425476, \"umap_y\": 0.4036999046802521, \"post_id\": 9665.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 9665, \"umap_x\": 0.8424198031425476, \"umap_y\": 0.4036999046802521, \"post_id\": 9665.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9667, \"umap_x\": -2.359299421310425, \"umap_y\": -0.3044169843196869, \"post_id\": 9667.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 9667, \"umap_x\": -2.359299421310425, \"umap_y\": -0.3044169843196869, \"post_id\": 9667.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9669, \"umap_x\": -1.3881795406341553, \"umap_y\": 4.89224100112915, \"post_id\": 9669.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9669, \"umap_x\": -1.3881795406341553, \"umap_y\": 4.89224100112915, \"post_id\": 9669.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9671, \"umap_x\": 0.8979751467704773, \"umap_y\": 0.6581876277923584, \"post_id\": 9671.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9673, \"umap_x\": -0.5067417025566101, \"umap_y\": 3.7844460010528564, \"post_id\": 9673.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9675, \"umap_x\": -3.247507095336914, \"umap_y\": 0.7560645937919617, \"post_id\": 9675.0, \"author_id\": 784.0, \"id_y\": 784.0, \"author\": \"Constanze Knappe\", \"author_group\": \"Other\"}, {\"id_x\": 9675, \"umap_x\": -3.247507095336914, \"umap_y\": 0.7560645937919617, \"post_id\": 9675.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9689, \"umap_x\": 0.528641402721405, \"umap_y\": 6.016152381896973, \"post_id\": 9689.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 9689, \"umap_x\": 0.528641402721405, \"umap_y\": 6.016152381896973, \"post_id\": 9689.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9689, \"umap_x\": 0.528641402721405, \"umap_y\": 6.016152381896973, \"post_id\": 9689.0, \"author_id\": 785.0, \"id_y\": 785.0, \"author\": \"Leipziger Volkszeitung\", \"author_group\": \"Other\"}, {\"id_x\": 9692, \"umap_x\": 0.6985755562782288, \"umap_y\": -0.3719114065170288, \"post_id\": 9692.0, \"author_id\": 786.0, \"id_y\": 786.0, \"author\": \"Daniel Stern\", \"author_group\": \"Other\"}, {\"id_x\": 9692, \"umap_x\": 0.6985755562782288, \"umap_y\": -0.3719114065170288, \"post_id\": 9692.0, \"author_id\": 678.0, \"id_y\": 678.0, \"author\": \"WOZ\", \"author_group\": \"Other\"}, {\"id_x\": 9694, \"umap_x\": 0.4567759037017822, \"umap_y\": 1.4901516437530518, \"post_id\": 9694.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9696, \"umap_x\": -1.5633052587509155, \"umap_y\": 1.2280890941619873, \"post_id\": 9696.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 9696, \"umap_x\": -1.5633052587509155, \"umap_y\": 1.2280890941619873, \"post_id\": 9696.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9698, \"umap_x\": 0.25530651211738586, \"umap_y\": 0.5902895927429199, \"post_id\": 9698.0, \"author_id\": 764.0, \"id_y\": 764.0, \"author\": \"Manuel Niemann\", \"author_group\": \"Other\"}, {\"id_x\": 9698, \"umap_x\": 0.25530651211738586, \"umap_y\": 0.5902895927429199, \"post_id\": 9698.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9700, \"umap_x\": -2.312878131866455, \"umap_y\": -1.234310507774353, \"post_id\": 9700.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9702, \"umap_x\": -0.13014331459999084, \"umap_y\": 2.805457592010498, \"post_id\": 9702.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9705, \"umap_x\": -1.4186311960220337, \"umap_y\": -0.26558971405029297, \"post_id\": 9705.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9707, \"umap_x\": 1.1202213764190674, \"umap_y\": 3.8732643127441406, \"post_id\": 9707.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 9716, \"umap_x\": -2.960214853286743, \"umap_y\": -1.476594090461731, \"post_id\": 9716.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9719, \"umap_x\": -0.745576798915863, \"umap_y\": 4.356391429901123, \"post_id\": 9719.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 9721, \"umap_x\": 1.0552674531936646, \"umap_y\": -0.5671321749687195, \"post_id\": 9721.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9721, \"umap_x\": 1.0552674531936646, \"umap_y\": -0.5671321749687195, \"post_id\": 9721.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 9721, \"umap_x\": 1.0552674531936646, \"umap_y\": -0.5671321749687195, \"post_id\": 9721.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9724, \"umap_x\": -3.7644975185394287, \"umap_y\": 2.642296552658081, \"post_id\": 9724.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 787.0, \"id_y\": 787.0, \"author\": \"Antifa Kollektiv Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 788.0, \"id_y\": 788.0, \"author\": \"Schwarze Katze Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 789.0, \"id_y\": 789.0, \"author\": \"Antifascista Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 790.0, \"id_y\": 790.0, \"author\": \"Antifaschistische Initiative L\\u00f6btau\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 791.0, \"id_y\": 791.0, \"author\": \"WUMS\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 792.0, \"id_y\": 792.0, \"author\": \"Pirnaer Autonome Linke\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 438.0, \"id_y\": 438.0, \"author\": \"Ermittlungsausschuss Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 793.0, \"id_y\": 793.0, \"author\": \"Referat Politische Bildung\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 794.0, \"id_y\": 794.0, \"author\": \"Rotes Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 795.0, \"id_y\": 795.0, \"author\": \"Buchladen K\\u00f6nig Kurt\", \"author_group\": \"Other\"}, {\"id_x\": 9732, \"umap_x\": -0.479627400636673, \"umap_y\": 4.203563213348389, \"post_id\": 9732.0, \"author_id\": 796.0, \"id_y\": 796.0, \"author\": \"Kosmotique\", \"author_group\": \"Other\"}, {\"id_x\": 9735, \"umap_x\": -1.5354654788970947, \"umap_y\": 3.5871291160583496, \"post_id\": 9735.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9738, \"umap_x\": -2.1216108798980713, \"umap_y\": 0.8846478462219238, \"post_id\": 9738.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9740, \"umap_x\": -2.315680980682373, \"umap_y\": 1.0604113340377808, \"post_id\": 9740.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9742, \"umap_x\": -3.4564826488494873, \"umap_y\": 1.9674168825149536, \"post_id\": 9742.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9744, \"umap_x\": -1.9835532903671265, \"umap_y\": 1.1037030220031738, \"post_id\": 9744.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9746, \"umap_x\": -2.990288019180298, \"umap_y\": -1.4438755512237549, \"post_id\": 9746.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9748, \"umap_x\": -0.7523902058601379, \"umap_y\": -0.2630675733089447, \"post_id\": 9748.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 9748, \"umap_x\": -0.7523902058601379, \"umap_y\": -0.2630675733089447, \"post_id\": 9748.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9750, \"umap_x\": -1.810376524925232, \"umap_y\": -0.25193068385124207, \"post_id\": 9750.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9750, \"umap_x\": -1.810376524925232, \"umap_y\": -0.25193068385124207, \"post_id\": 9750.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9752, \"umap_x\": -1.9844025373458862, \"umap_y\": -0.24903644621372223, \"post_id\": 9752.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 9752, \"umap_x\": -1.9844025373458862, \"umap_y\": -0.24903644621372223, \"post_id\": 9752.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9754, \"umap_x\": 0.6525698304176331, \"umap_y\": -0.4568285644054413, \"post_id\": 9754.0, \"author_id\": 597.0, \"id_y\": 597.0, \"author\": \"Andreas Dunte\", \"author_group\": \"Other\"}, {\"id_x\": 9754, \"umap_x\": 0.6525698304176331, \"umap_y\": -0.4568285644054413, \"post_id\": 9754.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9756, \"umap_x\": -2.957151174545288, \"umap_y\": 0.9395665526390076, \"post_id\": 9756.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9758, \"umap_x\": -4.2869954109191895, \"umap_y\": -0.24408327043056488, \"post_id\": 9758.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 9758, \"umap_x\": -4.2869954109191895, \"umap_y\": -0.24408327043056488, \"post_id\": 9758.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9760, \"umap_x\": -1.9371224641799927, \"umap_y\": 0.7631530165672302, \"post_id\": 9760.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 9760, \"umap_x\": -1.9371224641799927, \"umap_y\": 0.7631530165672302, \"post_id\": 9760.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9762, \"umap_x\": -2.457252025604248, \"umap_y\": -0.3035745918750763, \"post_id\": 9762.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 9762, \"umap_x\": -2.457252025604248, \"umap_y\": -0.3035745918750763, \"post_id\": 9762.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9764, \"umap_x\": -0.42631492018699646, \"umap_y\": 2.3739233016967773, \"post_id\": 9764.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 9764, \"umap_x\": -0.42631492018699646, \"umap_y\": 2.3739233016967773, \"post_id\": 9764.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9766, \"umap_x\": -3.71116304397583, \"umap_y\": 2.6928305625915527, \"post_id\": 9766.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9771, \"umap_x\": -2.4144184589385986, \"umap_y\": -0.6611579656600952, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 9774, \"umap_x\": 0.9658499956130981, \"umap_y\": 0.6595801115036011, \"post_id\": 9774.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 9774, \"umap_x\": 0.9658499956130981, \"umap_y\": 0.6595801115036011, \"post_id\": 9774.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9776, \"umap_x\": -1.3803597688674927, \"umap_y\": 1.271125316619873, \"post_id\": 9776.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 9776, \"umap_x\": -1.3803597688674927, \"umap_y\": 1.271125316619873, \"post_id\": 9776.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9778, \"umap_x\": -4.101892471313477, \"umap_y\": -0.32842522859573364, \"post_id\": 9778.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9778, \"umap_x\": -4.101892471313477, \"umap_y\": -0.32842522859573364, \"post_id\": 9778.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9783, \"umap_x\": -3.5218522548675537, \"umap_y\": 2.32675838470459, \"post_id\": 9783.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 9783, \"umap_x\": -3.5218522548675537, \"umap_y\": 2.32675838470459, \"post_id\": 9783.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9785, \"umap_x\": -0.28893956542015076, \"umap_y\": -0.8804969191551208, \"post_id\": 9785.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9785, \"umap_x\": -0.28893956542015076, \"umap_y\": -0.8804969191551208, \"post_id\": 9785.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9787, \"umap_x\": -2.5675320625305176, \"umap_y\": 0.02576982043683529, \"post_id\": 9787.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 9787, \"umap_x\": -2.5675320625305176, \"umap_y\": 0.02576982043683529, \"post_id\": 9787.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9789, \"umap_x\": -1.0611947774887085, \"umap_y\": 0.36052724719047546, \"post_id\": 9789.0, \"author_id\": 102.0, \"id_y\": 102.0, \"author\": \"Annika Leister\", \"author_group\": \"Other\"}, {\"id_x\": 9791, \"umap_x\": -3.172680616378784, \"umap_y\": -0.38136184215545654, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 9794, \"umap_x\": 0.7623604536056519, \"umap_y\": -0.1971619725227356, \"post_id\": 9794.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9794, \"umap_x\": 0.7623604536056519, \"umap_y\": -0.1971619725227356, \"post_id\": 9794.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9796, \"umap_x\": -2.2026896476745605, \"umap_y\": 0.4963693618774414, \"post_id\": 9796.0, \"author_id\": 22.0, \"id_y\": 22.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 9809, \"umap_x\": -0.08157781511545181, \"umap_y\": 3.8727571964263916, \"post_id\": 9809.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 9811, \"umap_x\": -2.0005452632904053, \"umap_y\": -0.773021936416626, \"post_id\": 9811.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 9811, \"umap_x\": -2.0005452632904053, \"umap_y\": -0.773021936416626, \"post_id\": 9811.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9813, \"umap_x\": 0.7918961644172668, \"umap_y\": -0.31810885667800903, \"post_id\": 9813.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9813, \"umap_x\": 0.7918961644172668, \"umap_y\": -0.31810885667800903, \"post_id\": 9813.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9815, \"umap_x\": -2.5880701541900635, \"umap_y\": 0.19840845465660095, \"post_id\": 9815.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9815, \"umap_x\": -2.5880701541900635, \"umap_y\": 0.19840845465660095, \"post_id\": 9815.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9817, \"umap_x\": 0.9671112895011902, \"umap_y\": 0.6441097855567932, \"post_id\": 9817.0, \"author_id\": 797.0, \"id_y\": 797.0, \"author\": \"Ricardo Vogel\", \"author_group\": \"Other\"}, {\"id_x\": 9817, \"umap_x\": 0.9671112895011902, \"umap_y\": 0.6441097855567932, \"post_id\": 9817.0, \"author_id\": 1066.0, \"id_y\": 1066.0, \"author\": \"DNN\", \"author_group\": \"Other\"}, {\"id_x\": 9819, \"umap_x\": 0.9868148565292358, \"umap_y\": 0.2605549991130829, \"post_id\": 9819.0, \"author_id\": 757.0, \"id_y\": 757.0, \"author\": \"Georg M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9819, \"umap_x\": 0.9868148565292358, \"umap_y\": 0.2605549991130829, \"post_id\": 9819.0, \"author_id\": 798.0, \"id_y\": 798.0, \"author\": \"Thomas Wittig\", \"author_group\": \"Other\"}, {\"id_x\": 9823, \"umap_x\": 0.0943509042263031, \"umap_y\": 3.7361457347869873, \"post_id\": 9823.0, \"author_id\": 799.0, \"id_y\": 799.0, \"author\": \"Leipziger Soligruppen\", \"author_group\": \"Other\"}, {\"id_x\": 9829, \"umap_x\": 0.9409115314483643, \"umap_y\": 1.9925645589828491, \"post_id\": 9829.0, \"author_id\": 734.0, \"id_y\": 734.0, \"author\": \"Sven R\\u00f6bel\", \"author_group\": \"Other\"}, {\"id_x\": 9829, \"umap_x\": 0.9409115314483643, \"umap_y\": 1.9925645589828491, \"post_id\": 9829.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 9832, \"umap_x\": -3.346457004547119, \"umap_y\": -0.6402715444564819, \"post_id\": 9832.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9832, \"umap_x\": -3.346457004547119, \"umap_y\": -0.6402715444564819, \"post_id\": 9832.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9836, \"umap_x\": -0.817581832408905, \"umap_y\": -0.7600259184837341, \"post_id\": 9836.0, \"author_id\": 256.0, \"id_y\": 256.0, \"author\": \"Thomas Haegeler\", \"author_group\": \"Other\"}, {\"id_x\": 9836, \"umap_x\": -0.817581832408905, \"umap_y\": -0.7600259184837341, \"post_id\": 9836.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9846, \"umap_x\": 0.7101214528083801, \"umap_y\": 0.44252562522888184, \"post_id\": 9846.0, \"author_id\": 800.0, \"id_y\": 800.0, \"author\": \"Markus Reuter\", \"author_group\": \"Other\"}, {\"id_x\": 9846, \"umap_x\": 0.7101214528083801, \"umap_y\": 0.44252562522888184, \"post_id\": 9846.0, \"author_id\": 801.0, \"id_y\": 801.0, \"author\": \"Netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 9850, \"umap_x\": 0.7218892574310303, \"umap_y\": 0.607545018196106, \"post_id\": 9850.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 9853, \"umap_x\": -2.004826545715332, \"umap_y\": -0.6933209896087646, \"post_id\": 9853.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 9856, \"umap_x\": -0.24109356105327606, \"umap_y\": 4.251774311065674, \"post_id\": 9856.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9866, \"umap_x\": -1.9126989841461182, \"umap_y\": -0.7797077894210815, \"post_id\": 9866.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 9866, \"umap_x\": -1.9126989841461182, \"umap_y\": -0.7797077894210815, \"post_id\": 9866.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9868, \"umap_x\": -0.6509576439857483, \"umap_y\": 2.9173130989074707, \"post_id\": 9868.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 9871, \"umap_x\": 0.5291069746017456, \"umap_y\": 3.4731836318969727, \"post_id\": 9871.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9875, \"umap_x\": -3.666745901107788, \"umap_y\": 2.57726788520813, \"post_id\": 9875.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 9875, \"umap_x\": -3.666745901107788, \"umap_y\": 2.57726788520813, \"post_id\": 9875.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9877, \"umap_x\": -2.1916275024414062, \"umap_y\": -0.33885297179222107, \"post_id\": 9877.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 9877, \"umap_x\": -2.1916275024414062, \"umap_y\": -0.33885297179222107, \"post_id\": 9877.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9879, \"umap_x\": 0.11169441044330597, \"umap_y\": 1.8563122749328613, \"post_id\": 9879.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 9879, \"umap_x\": 0.11169441044330597, \"umap_y\": 1.8563122749328613, \"post_id\": 9879.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9881, \"umap_x\": 0.21820788085460663, \"umap_y\": 0.47121134400367737, \"post_id\": 9881.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 9881, \"umap_x\": 0.21820788085460663, \"umap_y\": 0.47121134400367737, \"post_id\": 9881.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9883, \"umap_x\": -2.4712347984313965, \"umap_y\": -0.5219854712486267, \"post_id\": 9883.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 9883, \"umap_x\": -2.4712347984313965, \"umap_y\": -0.5219854712486267, \"post_id\": 9883.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9885, \"umap_x\": -1.242089867591858, \"umap_y\": 1.8881913423538208, \"post_id\": 9885.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 9887, \"umap_x\": 0.6203187704086304, \"umap_y\": 0.49399515986442566, \"post_id\": 9887.0, \"author_id\": 804.0, \"id_y\": 804.0, \"author\": \"Daniel Gro\\u00dfe\", \"author_group\": \"Other\"}, {\"id_x\": 9889, \"umap_x\": 0.28295010328292847, \"umap_y\": 2.1152491569519043, \"post_id\": 9889.0, \"author_id\": 645.0, \"id_y\": 645.0, \"author\": \"Sophie Tiedemann\", \"author_group\": \"Other\"}, {\"id_x\": 9889, \"umap_x\": 0.28295010328292847, \"umap_y\": 2.1152491569519043, \"post_id\": 9889.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 9891, \"umap_x\": 0.8941319584846497, \"umap_y\": 0.7131259441375732, \"post_id\": 9891.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9891, \"umap_x\": 0.8941319584846497, \"umap_y\": 0.7131259441375732, \"post_id\": 9891.0, \"author_id\": 801.0, \"id_y\": 801.0, \"author\": \"Netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 9893, \"umap_x\": 1.7951347827911377, \"umap_y\": 3.4785330295562744, \"post_id\": 9893.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 9896, \"umap_x\": -0.9028522968292236, \"umap_y\": 6.319597244262695, \"post_id\": 9896.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9898, \"umap_x\": 0.20003776252269745, \"umap_y\": 4.233621597290039, \"post_id\": 9898.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 9902, \"umap_x\": -0.3009829521179199, \"umap_y\": 3.6377007961273193, \"post_id\": 9902.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9905, \"umap_x\": -2.339113235473633, \"umap_y\": -0.6147714257240295, \"post_id\": 9905.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 9905, \"umap_x\": -2.339113235473633, \"umap_y\": -0.6147714257240295, \"post_id\": 9905.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9907, \"umap_x\": -1.8216291666030884, \"umap_y\": -0.42497360706329346, \"post_id\": 9907.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 9907, \"umap_x\": -1.8216291666030884, \"umap_y\": -0.42497360706329346, \"post_id\": 9907.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9914, \"umap_x\": 0.11336566507816315, \"umap_y\": 5.32579231262207, \"post_id\": 9914.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 9916, \"umap_x\": -1.073232889175415, \"umap_y\": 1.0303505659103394, \"post_id\": 9916.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 9916, \"umap_x\": -1.073232889175415, \"umap_y\": 1.0303505659103394, \"post_id\": 9916.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9927, \"umap_x\": -1.7171605825424194, \"umap_y\": 3.5754337310791016, \"post_id\": 9927.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 9933, \"umap_x\": -2.4116768836975098, \"umap_y\": 2.6212096214294434, \"post_id\": 9933.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 9937, \"umap_x\": -0.8597703576087952, \"umap_y\": -1.4433056116104126, \"post_id\": 9937.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9939, \"umap_x\": -4.246334552764893, \"umap_y\": -0.23943893611431122, \"post_id\": 9939.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 9939, \"umap_x\": -4.246334552764893, \"umap_y\": -0.23943893611431122, \"post_id\": 9939.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9941, \"umap_x\": -2.5820324420928955, \"umap_y\": -1.682281255722046, \"post_id\": 9941.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9943, \"umap_x\": -1.047540545463562, \"umap_y\": 4.246915340423584, \"post_id\": 9943.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 9946, \"umap_x\": -0.19169922173023224, \"umap_y\": 0.8252401351928711, \"post_id\": 9946.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 9946, \"umap_x\": -0.19169922173023224, \"umap_y\": 0.8252401351928711, \"post_id\": 9946.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9948, \"umap_x\": -3.349980354309082, \"umap_y\": -0.6219768524169922, \"post_id\": 9948.0, \"author_id\": 805.0, \"id_y\": 805.0, \"author\": \"Sina Mei\\u00dfgeier\", \"author_group\": \"Other\"}, {\"id_x\": 9948, \"umap_x\": -3.349980354309082, \"umap_y\": -0.6219768524169922, \"post_id\": 9948.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 9952, \"umap_x\": 1.3898617029190063, \"umap_y\": 3.894714117050171, \"post_id\": 9952.0, \"author_id\": 806.0, \"id_y\": 806.0, \"author\": \"Autonome Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 9954, \"umap_x\": -2.9972033500671387, \"umap_y\": 1.9872535467147827, \"post_id\": 9954.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 9956, \"umap_x\": -2.6721296310424805, \"umap_y\": -0.48411765694618225, \"post_id\": 9956.0, \"author_id\": 225.0, \"id_y\": 225.0, \"author\": \"Aktion Antifa Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 9959, \"umap_x\": -1.5018280744552612, \"umap_y\": -1.0949078798294067, \"post_id\": 9959.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 9959, \"umap_x\": -1.5018280744552612, \"umap_y\": -1.0949078798294067, \"post_id\": 9959.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9961, \"umap_x\": -2.414860725402832, \"umap_y\": -0.6214597821235657, \"post_id\": 9961.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9963, \"umap_x\": -0.8157064914703369, \"umap_y\": -0.9745941758155823, \"post_id\": 9963.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 9965, \"umap_x\": 0.6615702509880066, \"umap_y\": -0.2084328532218933, \"post_id\": 9965.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 9967, \"umap_x\": -4.2246222496032715, \"umap_y\": -0.2740538418292999, \"post_id\": 9967.0, \"author_id\": 807.0, \"id_y\": 807.0, \"author\": \"Fabian Kunow\", \"author_group\": \"Other\"}, {\"id_x\": 9967, \"umap_x\": -4.2246222496032715, \"umap_y\": -0.2740538418292999, \"post_id\": 9967.0, \"author_id\": 57.0, \"id_y\": 57.0, \"author\": \"Jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 9969, \"umap_x\": 0.10074064880609512, \"umap_y\": -0.5865434408187866, \"post_id\": 9969.0, \"author_id\": 719.0, \"id_y\": 719.0, \"author\": \"Thilo Alexe\", \"author_group\": \"Other\"}, {\"id_x\": 9969, \"umap_x\": 0.10074064880609512, \"umap_y\": -0.5865434408187866, \"post_id\": 9969.0, \"author_id\": 105.0, \"id_y\": 105.0, \"author\": \"Tobias Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 9969, \"umap_x\": 0.10074064880609512, \"umap_y\": -0.5865434408187866, \"post_id\": 9969.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9971, \"umap_x\": -0.28895053267478943, \"umap_y\": 0.44889524579048157, \"post_id\": 9971.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 9971, \"umap_x\": -0.28895053267478943, \"umap_y\": 0.44889524579048157, \"post_id\": 9971.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9973, \"umap_x\": -3.504953622817993, \"umap_y\": 2.780806064605713, \"post_id\": 9973.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 9973, \"umap_x\": -3.504953622817993, \"umap_y\": 2.780806064605713, \"post_id\": 9973.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 9975, \"umap_x\": -3.2990500926971436, \"umap_y\": 1.323618769645691, \"post_id\": 9975.0, \"author_id\": 746.0, \"id_y\": 746.0, \"author\": \"Bernd Appel\", \"author_group\": \"Other\"}, {\"id_x\": 9975, \"umap_x\": -3.2990500926971436, \"umap_y\": 1.323618769645691, \"post_id\": 9975.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 9977, \"umap_x\": -0.19469816982746124, \"umap_y\": -1.0088001489639282, \"post_id\": 9977.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 9979, \"umap_x\": -1.0981791019439697, \"umap_y\": -1.5020803213119507, \"post_id\": 9979.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 9979, \"umap_x\": -1.0981791019439697, \"umap_y\": -1.5020803213119507, \"post_id\": 9979.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 9981, \"umap_x\": -2.9550833702087402, \"umap_y\": 0.13242582976818085, \"post_id\": 9981.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 9981, \"umap_x\": -2.9550833702087402, \"umap_y\": 0.13242582976818085, \"post_id\": 9981.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9983, \"umap_x\": -2.291602611541748, \"umap_y\": -1.0686028003692627, \"post_id\": 9983.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 9983, \"umap_x\": -2.291602611541748, \"umap_y\": -1.0686028003692627, \"post_id\": 9983.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9985, \"umap_x\": -1.9389262199401855, \"umap_y\": -0.6891909241676331, \"post_id\": 9985.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 9985, \"umap_x\": -1.9389262199401855, \"umap_y\": -0.6891909241676331, \"post_id\": 9985.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 9987, \"umap_x\": -1.6526813507080078, \"umap_y\": -1.1201006174087524, \"post_id\": 9987.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 9989, \"umap_x\": -0.4830041527748108, \"umap_y\": 3.474226713180542, \"post_id\": 9989.0, \"author_id\": 31.0, \"id_y\": 31.0, \"author\": \"Jessica Ramczik\", \"author_group\": \"Other\"}, {\"id_x\": 9991, \"umap_x\": 0.24825960397720337, \"umap_y\": 2.201429605484009, \"post_id\": 9991.0, \"author_id\": 808.0, \"id_y\": 808.0, \"author\": \"Florian Kaufmann\", \"author_group\": \"Other\"}, {\"id_x\": 9991, \"umap_x\": 0.24825960397720337, \"umap_y\": 2.201429605484009, \"post_id\": 9991.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10000, \"umap_x\": -0.2818897068500519, \"umap_y\": -0.34552663564682007, \"post_id\": 10000.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 10000, \"umap_x\": -0.2818897068500519, \"umap_y\": -0.34552663564682007, \"post_id\": 10000.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10002, \"umap_x\": -1.7303340435028076, \"umap_y\": -0.5223901271820068, \"post_id\": 10002.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10004, \"umap_x\": 0.9330940842628479, \"umap_y\": -0.5842983722686768, \"post_id\": 10004.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 10004, \"umap_x\": 0.9330940842628479, \"umap_y\": -0.5842983722686768, \"post_id\": 10004.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10006, \"umap_x\": 0.058627136051654816, \"umap_y\": 4.048294544219971, \"post_id\": 10006.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10011, \"umap_x\": 0.5347656607627869, \"umap_y\": 3.0370447635650635, \"post_id\": 10011.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 10014, \"umap_x\": -3.5830466747283936, \"umap_y\": 2.801659107208252, \"post_id\": 10014.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 10014, \"umap_x\": -3.5830466747283936, \"umap_y\": 2.801659107208252, \"post_id\": 10014.0, \"author_id\": 809.0, \"id_y\": 809.0, \"author\": \"TAZ\", \"author_group\": \"Other\"}, {\"id_x\": 10016, \"umap_x\": -1.3606071472167969, \"umap_y\": 1.4673802852630615, \"post_id\": 10016.0, \"author_id\": 810.0, \"id_y\": 810.0, \"author\": \"Leonie Gubela\", \"author_group\": \"Other\"}, {\"id_x\": 10018, \"umap_x\": -0.8324496746063232, \"umap_y\": 0.797382116317749, \"post_id\": 10018.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 10018, \"umap_x\": -0.8324496746063232, \"umap_y\": 0.797382116317749, \"post_id\": 10018.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10020, \"umap_x\": -0.3085016906261444, \"umap_y\": 0.44769003987312317, \"post_id\": 10020.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 10020, \"umap_x\": -0.3085016906261444, \"umap_y\": 0.44769003987312317, \"post_id\": 10020.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10022, \"umap_x\": -2.441615343093872, \"umap_y\": -0.5724547505378723, \"post_id\": 10022.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10022, \"umap_x\": -2.441615343093872, \"umap_y\": -0.5724547505378723, \"post_id\": 10022.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10024, \"umap_x\": -3.3399195671081543, \"umap_y\": -0.6168304085731506, \"post_id\": 10024.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10024, \"umap_x\": -3.3399195671081543, \"umap_y\": -0.6168304085731506, \"post_id\": 10024.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10026, \"umap_x\": -0.2932153642177582, \"umap_y\": 0.46347764134407043, \"post_id\": 10026.0, \"author_id\": 811.0, \"id_y\": 811.0, \"author\": \"Lila-Marie Schulze\", \"author_group\": \"Other\"}, {\"id_x\": 10026, \"umap_x\": -0.2932153642177582, \"umap_y\": 0.46347764134407043, \"post_id\": 10026.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10028, \"umap_x\": -1.3220503330230713, \"umap_y\": -1.685385823249817, \"post_id\": 10028.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10030, \"umap_x\": -1.1353576183319092, \"umap_y\": 4.24472713470459, \"post_id\": 10030.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 10033, \"umap_x\": 0.6299275159835815, \"umap_y\": 6.158651351928711, \"post_id\": 10033.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 10033, \"umap_x\": 0.6299275159835815, \"umap_y\": 6.158651351928711, \"post_id\": 10033.0, \"author_id\": 812.0, \"id_y\": 812.0, \"author\": \"Luca Lang\", \"author_group\": \"Other\"}, {\"id_x\": 10035, \"umap_x\": 0.8220486044883728, \"umap_y\": 1.8763773441314697, \"post_id\": 10035.0, \"author_id\": 813.0, \"id_y\": 813.0, \"author\": \"Mariam Lau\", \"author_group\": \"Other\"}, {\"id_x\": 10035, \"umap_x\": 0.8220486044883728, \"umap_y\": 1.8763773441314697, \"post_id\": 10035.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10037, \"umap_x\": -0.029431169852614403, \"umap_y\": -0.9788737893104553, \"post_id\": 10037.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10039, \"umap_x\": 1.9477221965789795, \"umap_y\": 3.450371742248535, \"post_id\": 10039.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 10039, \"umap_x\": 1.9477221965789795, \"umap_y\": 3.450371742248535, \"post_id\": 10039.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 10044, \"umap_x\": -0.36279553174972534, \"umap_y\": 4.5739426612854, \"post_id\": 10044.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10047, \"umap_x\": 0.20965197682380676, \"umap_y\": -0.5224284529685974, \"post_id\": 10047.0, \"author_id\": 60.0, \"id_y\": 60.0, \"author\": \"ANF\", \"author_group\": \"Other\"}, {\"id_x\": 10050, \"umap_x\": -1.1993329524993896, \"umap_y\": 1.100541591644287, \"post_id\": 10050.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10050, \"umap_x\": -1.1993329524993896, \"umap_y\": 1.100541591644287, \"post_id\": 10050.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10052, \"umap_x\": 1.1497864723205566, \"umap_y\": 0.3012746274471283, \"post_id\": 10052.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 10052, \"umap_x\": 1.1497864723205566, \"umap_y\": 0.3012746274471283, \"post_id\": 10052.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10054, \"umap_x\": -1.3909192085266113, \"umap_y\": -0.3294418454170227, \"post_id\": 10054.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 10056, \"umap_x\": 0.9331678152084351, \"umap_y\": 1.397478699684143, \"post_id\": 10056.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10059, \"umap_x\": 1.8693958520889282, \"umap_y\": 3.4595143795013428, \"post_id\": 10059.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 10059, \"umap_x\": 1.8693958520889282, \"umap_y\": 3.4595143795013428, \"post_id\": 10059.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 10062, \"umap_x\": -2.8004682064056396, \"umap_y\": 5.4380645751953125, \"post_id\": 10062.0, \"author_id\": 814.0, \"id_y\": 814.0, \"author\": \"AKI\", \"author_group\": \"Other\"}, {\"id_x\": 10071, \"umap_x\": -2.0975334644317627, \"umap_y\": 3.3071632385253906, \"post_id\": 10071.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10075, \"umap_x\": -4.609710693359375, \"umap_y\": 4.500636100769043, \"post_id\": 10075.0, \"author_id\": 248.0, \"id_y\": 248.0, \"author\": \"schwi\", \"author_group\": \"Other\"}, {\"id_x\": 10081, \"umap_x\": -1.5126678943634033, \"umap_y\": 3.192791700363159, \"post_id\": 10081.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10084, \"umap_x\": -2.151257276535034, \"umap_y\": 3.2097344398498535, \"post_id\": 10084.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10090, \"umap_x\": -1.1414594650268555, \"umap_y\": 2.082782506942749, \"post_id\": 10090.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10092, \"umap_x\": -0.4342842698097229, \"umap_y\": -0.1670656055212021, \"post_id\": 10092.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10094, \"umap_x\": -2.930874824523926, \"umap_y\": 1.0021356344223022, \"post_id\": 10094.0, \"author_id\": 815.0, \"id_y\": 815.0, \"author\": \"Christian Beck\", \"author_group\": \"Other\"}, {\"id_x\": 10094, \"umap_x\": -2.930874824523926, \"umap_y\": 1.0021356344223022, \"post_id\": 10094.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10096, \"umap_x\": -0.8849433660507202, \"umap_y\": -1.4098490476608276, \"post_id\": 10096.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10100, \"umap_x\": -2.3831467628479004, \"umap_y\": -0.9680168628692627, \"post_id\": 10100.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 10100, \"umap_x\": -2.3831467628479004, \"umap_y\": -0.9680168628692627, \"post_id\": 10100.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10102, \"umap_x\": -1.975104570388794, \"umap_y\": -0.5050173997879028, \"post_id\": 10102.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10102, \"umap_x\": -1.975104570388794, \"umap_y\": -0.5050173997879028, \"post_id\": 10102.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10104, \"umap_x\": -1.4002041816711426, \"umap_y\": 0.09909967333078384, \"post_id\": 10104.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10104, \"umap_x\": -1.4002041816711426, \"umap_y\": 0.09909967333078384, \"post_id\": 10104.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10106, \"umap_x\": -1.9371062517166138, \"umap_y\": 1.4577445983886719, \"post_id\": 10106.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10106, \"umap_x\": -1.9371062517166138, \"umap_y\": 1.4577445983886719, \"post_id\": 10106.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10110, \"umap_x\": 0.971490204334259, \"umap_y\": -0.8140557408332825, \"post_id\": 10110.0, \"author_id\": 673.0, \"id_y\": 673.0, \"author\": \"Sebastian B\\u00e4hr\", \"author_group\": \"Other\"}, {\"id_x\": 10110, \"umap_x\": 0.971490204334259, \"umap_y\": -0.8140557408332825, \"post_id\": 10110.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 10112, \"umap_x\": -2.6296098232269287, \"umap_y\": 1.7925397157669067, \"post_id\": 10112.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 10112, \"umap_x\": -2.6296098232269287, \"umap_y\": 1.7925397157669067, \"post_id\": 10112.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10114, \"umap_x\": -0.1760895997285843, \"umap_y\": 1.1869360208511353, \"post_id\": 10114.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 10114, \"umap_x\": -0.1760895997285843, \"umap_y\": 1.1869360208511353, \"post_id\": 10114.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10119, \"umap_x\": -2.351367950439453, \"umap_y\": 0.01880604401230812, \"post_id\": 10119.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 10121, \"umap_x\": -2.901071071624756, \"umap_y\": -0.6130712628364563, \"post_id\": 10121.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 10121, \"umap_x\": -2.901071071624756, \"umap_y\": -0.6130712628364563, \"post_id\": 10121.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10123, \"umap_x\": 0.8579221963882446, \"umap_y\": 3.8156561851501465, \"post_id\": 10123.0, \"author_id\": 817.0, \"id_y\": 817.0, \"author\": \"LE-Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 10131, \"umap_x\": 1.1781312227249146, \"umap_y\": 3.871615409851074, \"post_id\": 10131.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 10134, \"umap_x\": 0.04474477842450142, \"umap_y\": 4.412578582763672, \"post_id\": 10134.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10139, \"umap_x\": 0.78279048204422, \"umap_y\": 0.21673201024532318, \"post_id\": 10139.0, \"author_id\": 568.0, \"id_y\": 568.0, \"author\": \"Michael Deutschmann\", \"author_group\": \"Other\"}, {\"id_x\": 10139, \"umap_x\": 0.78279048204422, \"umap_y\": 0.21673201024532318, \"post_id\": 10139.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 10141, \"umap_x\": 1.0205341577529907, \"umap_y\": -0.7093003988265991, \"post_id\": 10141.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10143, \"umap_x\": 1.453032374382019, \"umap_y\": 3.343064546585083, \"post_id\": 10143.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10143, \"umap_x\": 1.453032374382019, \"umap_y\": 3.343064546585083, \"post_id\": 10143.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10145, \"umap_x\": -2.72579288482666, \"umap_y\": -0.7152084112167358, \"post_id\": 10145.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 10145, \"umap_x\": -2.72579288482666, \"umap_y\": -0.7152084112167358, \"post_id\": 10145.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10147, \"umap_x\": -0.5418373942375183, \"umap_y\": 1.2891902923583984, \"post_id\": 10147.0, \"author_id\": 818.0, \"id_y\": 818.0, \"author\": \"Henry Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 10147, \"umap_x\": -0.5418373942375183, \"umap_y\": 1.2891902923583984, \"post_id\": 10147.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10149, \"umap_x\": 1.7092190980911255, \"umap_y\": 3.1848018169403076, \"post_id\": 10149.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 10149, \"umap_x\": 1.7092190980911255, \"umap_y\": 3.1848018169403076, \"post_id\": 10149.0, \"author_id\": 819.0, \"id_y\": 819.0, \"author\": \"Marcus Engert\", \"author_group\": \"Other\"}, {\"id_x\": 10151, \"umap_x\": 1.370932936668396, \"umap_y\": 3.607856035232544, \"post_id\": 10151.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10151, \"umap_x\": 1.370932936668396, \"umap_y\": 3.607856035232544, \"post_id\": 10151.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10157, \"umap_x\": 0.5682552456855774, \"umap_y\": 5.446949005126953, \"post_id\": 10157.0, \"author_id\": 718.0, \"id_y\": 718.0, \"author\": \"Veronika Kracher\", \"author_group\": \"Other\"}, {\"id_x\": 10157, \"umap_x\": 0.5682552456855774, \"umap_y\": 5.446949005126953, \"post_id\": 10157.0, \"author_id\": 820.0, \"id_y\": 820.0, \"author\": \"kaput-mag\", \"author_group\": \"Other\"}, {\"id_x\": 10159, \"umap_x\": 0.37495139241218567, \"umap_y\": 0.8817398548126221, \"post_id\": 10159.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 10159, \"umap_x\": 0.37495139241218567, \"umap_y\": 0.8817398548126221, \"post_id\": 10159.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10162, \"umap_x\": -2.33798885345459, \"umap_y\": 3.760989189147949, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10165, \"umap_x\": -1.3519184589385986, \"umap_y\": 1.3646228313446045, \"post_id\": 10165.0, \"author_id\": 821.0, \"id_y\": 821.0, \"author\": \"Julian Winkler\", \"author_group\": \"Other\"}, {\"id_x\": 10165, \"umap_x\": -1.3519184589385986, \"umap_y\": 1.3646228313446045, \"post_id\": 10165.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10169, \"umap_x\": -2.4669370651245117, \"umap_y\": -1.2666995525360107, \"post_id\": 10169.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10169, \"umap_x\": -2.4669370651245117, \"umap_y\": -1.2666995525360107, \"post_id\": 10169.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10171, \"umap_x\": -2.288062810897827, \"umap_y\": -0.831695020198822, \"post_id\": 10171.0, \"author_id\": 591.0, \"id_y\": 591.0, \"author\": \"Nikos Natsidis\", \"author_group\": \"Other\"}, {\"id_x\": 10171, \"umap_x\": -2.288062810897827, \"umap_y\": -0.831695020198822, \"post_id\": 10171.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10173, \"umap_x\": -0.4718598425388336, \"umap_y\": 0.06449729949235916, \"post_id\": 10173.0, \"author_id\": 822.0, \"id_y\": 822.0, \"author\": \"Luisa Zenker\", \"author_group\": \"Other\"}, {\"id_x\": 10173, \"umap_x\": -0.4718598425388336, \"umap_y\": 0.06449729949235916, \"post_id\": 10173.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10175, \"umap_x\": -0.1230509877204895, \"umap_y\": -0.799646258354187, \"post_id\": 10175.0, \"author_id\": 823.0, \"id_y\": 823.0, \"author\": \"Anja Weber\", \"author_group\": \"Other\"}, {\"id_x\": 10175, \"umap_x\": -0.1230509877204895, \"umap_y\": -0.799646258354187, \"post_id\": 10175.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10177, \"umap_x\": -0.03470076620578766, \"umap_y\": -0.9754199981689453, \"post_id\": 10177.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 10177, \"umap_x\": -0.03470076620578766, \"umap_y\": -0.9754199981689453, \"post_id\": 10177.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10179, \"umap_x\": 1.2532888650894165, \"umap_y\": 0.11860693246126175, \"post_id\": 10179.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 10181, \"umap_x\": -0.42357808351516724, \"umap_y\": 2.3544909954071045, \"post_id\": 10181.0, \"author_id\": 500.0, \"id_y\": 500.0, \"author\": \"Julia Grunwald\", \"author_group\": \"Other\"}, {\"id_x\": 10181, \"umap_x\": -0.42357808351516724, \"umap_y\": 2.3544909954071045, \"post_id\": 10181.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10183, \"umap_x\": -2.06070876121521, \"umap_y\": 1.6858183145523071, \"post_id\": 10183.0, \"author_id\": 824.0, \"id_y\": 824.0, \"author\": \"Michael Krell\", \"author_group\": \"Other\"}, {\"id_x\": 10183, \"umap_x\": -2.06070876121521, \"umap_y\": 1.6858183145523071, \"post_id\": 10183.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10185, \"umap_x\": -3.3853189945220947, \"umap_y\": 0.9212266802787781, \"post_id\": 10185.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10189, \"umap_x\": 0.7026272416114807, \"umap_y\": 1.6243751049041748, \"post_id\": 10189.0, \"author_id\": 825.0, \"id_y\": 825.0, \"author\": \"Nils Lenthe\", \"author_group\": \"Other\"}, {\"id_x\": 10191, \"umap_x\": -0.8425670862197876, \"umap_y\": 3.974036455154419, \"post_id\": 10191.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10193, \"umap_x\": 0.8334415555000305, \"umap_y\": 0.9879146218299866, \"post_id\": 10193.0, \"author_id\": 725.0, \"id_y\": 725.0, \"author\": \"Bernd Rippert\", \"author_group\": \"Other\"}, {\"id_x\": 10193, \"umap_x\": 0.8334415555000305, \"umap_y\": 0.9879146218299866, \"post_id\": 10193.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 10195, \"umap_x\": -2.078721046447754, \"umap_y\": 0.7573447227478027, \"post_id\": 10195.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10195, \"umap_x\": -2.078721046447754, \"umap_y\": 0.7573447227478027, \"post_id\": 10195.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10197, \"umap_x\": -1.76640784740448, \"umap_y\": 1.3356621265411377, \"post_id\": 10197.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10197, \"umap_x\": -1.76640784740448, \"umap_y\": 1.3356621265411377, \"post_id\": 10197.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10199, \"umap_x\": -1.047150731086731, \"umap_y\": 1.4155824184417725, \"post_id\": 10199.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10201, \"umap_x\": -0.1753072887659073, \"umap_y\": 0.06658276170492172, \"post_id\": 10201.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10203, \"umap_x\": -1.1840295791625977, \"umap_y\": 1.4568651914596558, \"post_id\": 10203.0, \"author_id\": 98.0, \"id_y\": 98.0, \"author\": \"Markus van Appeldorn\", \"author_group\": \"Other\"}, {\"id_x\": 10203, \"umap_x\": -1.1840295791625977, \"umap_y\": 1.4568651914596558, \"post_id\": 10203.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10207, \"umap_x\": -0.4732208549976349, \"umap_y\": 0.20319527387619019, \"post_id\": 10207.0, \"author_id\": 826.0, \"id_y\": 826.0, \"author\": \"Angelika Hardegger\", \"author_group\": \"Other\"}, {\"id_x\": 10207, \"umap_x\": -0.4732208549976349, \"umap_y\": 0.20319527387619019, \"post_id\": 10207.0, \"author_id\": 827.0, \"id_y\": 827.0, \"author\": \"republik\", \"author_group\": \"Other\"}, {\"id_x\": 10214, \"umap_x\": -3.43369197845459, \"umap_y\": -1.4986692667007446, \"post_id\": 10214.0, \"author_id\": 615.0, \"id_y\": 615.0, \"author\": \"Luise Mosig\", \"author_group\": \"Other\"}, {\"id_x\": 10214, \"umap_x\": -3.43369197845459, \"umap_y\": -1.4986692667007446, \"post_id\": 10214.0, \"author_id\": 828.0, \"id_y\": 828.0, \"author\": \"jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 10216, \"umap_x\": 0.38760167360305786, \"umap_y\": 1.7068451642990112, \"post_id\": 10216.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10221, \"umap_x\": 0.6908507943153381, \"umap_y\": -0.755072295665741, \"post_id\": 10221.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 10221, \"umap_x\": 0.6908507943153381, \"umap_y\": -0.755072295665741, \"post_id\": 10221.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10223, \"umap_x\": -1.1666780710220337, \"umap_y\": 1.3890382051467896, \"post_id\": 10223.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 10223, \"umap_x\": -1.1666780710220337, \"umap_y\": 1.3890382051467896, \"post_id\": 10223.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10225, \"umap_x\": 0.5065963864326477, \"umap_y\": 1.5265737771987915, \"post_id\": 10225.0, \"author_id\": 829.0, \"id_y\": 829.0, \"author\": \"Niklas Franzen\", \"author_group\": \"Other\"}, {\"id_x\": 10225, \"umap_x\": 0.5065963864326477, \"umap_y\": 1.5265737771987915, \"post_id\": 10225.0, \"author_id\": 721.0, \"id_y\": 721.0, \"author\": \"Bl\\u00e4tter\", \"author_group\": \"Other\"}, {\"id_x\": 10227, \"umap_x\": -0.030960645526647568, \"umap_y\": 1.5931906700134277, \"post_id\": 10227.0, \"author_id\": 830.0, \"id_y\": 830.0, \"author\": \"Benjamin Richter\", \"author_group\": \"Other\"}, {\"id_x\": 10229, \"umap_x\": -0.5849969983100891, \"umap_y\": 0.484892874956131, \"post_id\": 10229.0, \"author_id\": 267.0, \"id_y\": 267.0, \"author\": \"Verena Belzer\", \"author_group\": \"Other\"}, {\"id_x\": 10229, \"umap_x\": -0.5849969983100891, \"umap_y\": 0.484892874956131, \"post_id\": 10229.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10231, \"umap_x\": -0.2610759139060974, \"umap_y\": 3.7654945850372314, \"post_id\": 10231.0, \"author_id\": 831.0, \"id_y\": 831.0, \"author\": \"Ostdeutsche Antifas\", \"author_group\": \"Other\"}, {\"id_x\": 10237, \"umap_x\": -0.15520082414150238, \"umap_y\": 3.9614782333374023, \"post_id\": 10237.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10239, \"umap_x\": -2.513582229614258, \"umap_y\": -0.5497028231620789, \"post_id\": 10239.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10242, \"umap_x\": -2.1788241863250732, \"umap_y\": -1.2029824256896973, \"post_id\": 10242.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10242, \"umap_x\": -2.1788241863250732, \"umap_y\": -1.2029824256896973, \"post_id\": 10242.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10244, \"umap_x\": 1.2520058155059814, \"umap_y\": -0.1827549785375595, \"post_id\": 10244.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 10244, \"umap_x\": 1.2520058155059814, \"umap_y\": -0.1827549785375595, \"post_id\": 10244.0, \"author_id\": 832.0, \"id_y\": 832.0, \"author\": \"Bettina Junge\", \"author_group\": \"Other\"}, {\"id_x\": 10244, \"umap_x\": 1.2520058155059814, \"umap_y\": -0.1827549785375595, \"post_id\": 10244.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10246, \"umap_x\": -2.2916934490203857, \"umap_y\": 4.533117771148682, \"post_id\": 10246.0, \"author_id\": 22.0, \"id_y\": 22.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 10248, \"umap_x\": -2.099505662918091, \"umap_y\": 0.10338175296783447, \"post_id\": 10248.0, \"author_id\": 558.0, \"id_y\": 558.0, \"author\": \"Frauke Ott\", \"author_group\": \"Other\"}, {\"id_x\": 10248, \"umap_x\": -2.099505662918091, \"umap_y\": 0.10338175296783447, \"post_id\": 10248.0, \"author_id\": 833.0, \"id_y\": 833.0, \"author\": \"Julian Pietzko\", \"author_group\": \"Other\"}, {\"id_x\": 10248, \"umap_x\": -2.099505662918091, \"umap_y\": 0.10338175296783447, \"post_id\": 10248.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 10250, \"umap_x\": -1.2589361667633057, \"umap_y\": -1.5938892364501953, \"post_id\": 10250.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10257, \"umap_x\": 1.3791491985321045, \"umap_y\": -2.4213759899139404, \"post_id\": 10257.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 10257, \"umap_x\": 1.3791491985321045, \"umap_y\": -2.4213759899139404, \"post_id\": 10257.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10259, \"umap_x\": 1.1104583740234375, \"umap_y\": -0.7651623487472534, \"post_id\": 10259.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10265, \"umap_x\": 1.3644983768463135, \"umap_y\": -2.389333486557007, \"post_id\": 10265.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10267, \"umap_x\": 0.9654802083969116, \"umap_y\": 0.132671520113945, \"post_id\": 10267.0, \"author_id\": 497.0, \"id_y\": 497.0, \"author\": \"Philipp Brendel\", \"author_group\": \"Other\"}, {\"id_x\": 10267, \"umap_x\": 0.9654802083969116, \"umap_y\": 0.132671520113945, \"post_id\": 10267.0, \"author_id\": 834.0, \"id_y\": 834.0, \"author\": \"Benjamin Jakob\", \"author_group\": \"Other\"}, {\"id_x\": 10267, \"umap_x\": 0.9654802083969116, \"umap_y\": 0.132671520113945, \"post_id\": 10267.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10269, \"umap_x\": -0.589165210723877, \"umap_y\": 2.9033679962158203, \"post_id\": 10269.0, \"author_id\": 835.0, \"id_y\": 835.0, \"author\": \"Karl-Heinz Dellwo\", \"author_group\": \"Other\"}, {\"id_x\": 10271, \"umap_x\": -1.232694149017334, \"umap_y\": 0.365754634141922, \"post_id\": 10271.0, \"author_id\": 836.0, \"id_y\": 836.0, \"author\": \"Martin Piendl\", \"author_group\": \"Other\"}, {\"id_x\": 10271, \"umap_x\": -1.232694149017334, \"umap_y\": 0.365754634141922, \"post_id\": 10271.0, \"author_id\": 81.0, \"id_y\": 81.0, \"author\": \"BR\", \"author_group\": \"Other\"}, {\"id_x\": 10276, \"umap_x\": 0.06985430419445038, \"umap_y\": 4.226670265197754, \"post_id\": 10276.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10287, \"umap_x\": -1.73987877368927, \"umap_y\": 1.9595556259155273, \"post_id\": 10287.0, \"author_id\": 666.0, \"id_y\": 666.0, \"author\": \"Thomas Degkwitz\", \"author_group\": \"Other\"}, {\"id_x\": 10287, \"umap_x\": -1.73987877368927, \"umap_y\": 1.9595556259155273, \"post_id\": 10287.0, \"author_id\": 665.0, \"id_y\": 665.0, \"author\": \"Hannah Jagemast\", \"author_group\": \"Other\"}, {\"id_x\": 10287, \"umap_x\": -1.73987877368927, \"umap_y\": 1.9595556259155273, \"post_id\": 10287.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10293, \"umap_x\": 0.4733246862888336, \"umap_y\": 0.8553670048713684, \"post_id\": 10293.0, \"author_id\": 837.0, \"id_y\": 837.0, \"author\": \"RBB\", \"author_group\": \"Other\"}, {\"id_x\": 10295, \"umap_x\": 0.8217395544052124, \"umap_y\": -0.8104163408279419, \"post_id\": 10295.0, \"author_id\": 533.0, \"id_y\": 533.0, \"author\": \"Gunnar Klehm\", \"author_group\": \"Other\"}, {\"id_x\": 10295, \"umap_x\": 0.8217395544052124, \"umap_y\": -0.8104163408279419, \"post_id\": 10295.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10297, \"umap_x\": -2.103731632232666, \"umap_y\": 3.0345327854156494, \"post_id\": 10297.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 10300, \"umap_x\": -1.8784171342849731, \"umap_y\": 1.5631563663482666, \"post_id\": 10300.0, \"author_id\": 283.0, \"id_y\": 283.0, \"author\": \"Roberta Knoll\", \"author_group\": \"Other\"}, {\"id_x\": 10300, \"umap_x\": -1.8784171342849731, \"umap_y\": 1.5631563663482666, \"post_id\": 10300.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10302, \"umap_x\": -4.1744303703308105, \"umap_y\": -0.342542827129364, \"post_id\": 10302.0, \"author_id\": 638.0, \"id_y\": 638.0, \"author\": \"Paul Hildebrand\", \"author_group\": \"Other\"}, {\"id_x\": 10302, \"umap_x\": -4.1744303703308105, \"umap_y\": -0.342542827129364, \"post_id\": 10302.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10304, \"umap_x\": 1.3700833320617676, \"umap_y\": 0.0722011998295784, \"post_id\": 10304.0, \"author_id\": 388.0, \"id_y\": 388.0, \"author\": \"FAZ\", \"author_group\": \"Other\"}, {\"id_x\": 10312, \"umap_x\": 1.3750735521316528, \"umap_y\": -2.4149398803710938, \"post_id\": 10312.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 10314, \"umap_x\": 0.9334517121315002, \"umap_y\": 0.31233641505241394, \"post_id\": 10314.0, \"author_id\": 764.0, \"id_y\": 764.0, \"author\": \"Manuel Niemann\", \"author_group\": \"Other\"}, {\"id_x\": 10314, \"umap_x\": 0.9334517121315002, \"umap_y\": 0.31233641505241394, \"post_id\": 10314.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10316, \"umap_x\": -3.7600290775299072, \"umap_y\": 0.39083102345466614, \"post_id\": 10316.0, \"author_id\": 838.0, \"id_y\": 838.0, \"author\": \"Nora Kneer\", \"author_group\": \"Other\"}, {\"id_x\": 10316, \"umap_x\": -3.7600290775299072, \"umap_y\": 0.39083102345466614, \"post_id\": 10316.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10324, \"umap_x\": -0.5332781672477722, \"umap_y\": -0.3746320605278015, \"post_id\": 10324.0, \"author_id\": 31.0, \"id_y\": 31.0, \"author\": \"Jessica Ramczik\", \"author_group\": \"Other\"}, {\"id_x\": 10326, \"umap_x\": -3.547910451889038, \"umap_y\": -1.45256769657135, \"post_id\": 10326.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10328, \"umap_x\": -1.2549211978912354, \"umap_y\": -1.6827936172485352, \"post_id\": 10328.0, \"author_id\": 148.0, \"id_y\": 148.0, \"author\": \"Tim Ruben Weimer\", \"author_group\": \"Other\"}, {\"id_x\": 10328, \"umap_x\": -1.2549211978912354, \"umap_y\": -1.6827936172485352, \"post_id\": 10328.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 10328, \"umap_x\": -1.2549211978912354, \"umap_y\": -1.6827936172485352, \"post_id\": 10328.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10330, \"umap_x\": -2.6796514987945557, \"umap_y\": 0.35170912742614746, \"post_id\": 10330.0, \"author_id\": 839.0, \"id_y\": 839.0, \"author\": \"Mareike Huisinga\", \"author_group\": \"Other\"}, {\"id_x\": 10330, \"umap_x\": -2.6796514987945557, \"umap_y\": 0.35170912742614746, \"post_id\": 10330.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10332, \"umap_x\": 0.5800396203994751, \"umap_y\": 0.9469386339187622, \"post_id\": 10332.0, \"author_id\": 800.0, \"id_y\": 800.0, \"author\": \"Markus Reuter\", \"author_group\": \"Other\"}, {\"id_x\": 10332, \"umap_x\": 0.5800396203994751, \"umap_y\": 0.9469386339187622, \"post_id\": 10332.0, \"author_id\": 801.0, \"id_y\": 801.0, \"author\": \"Netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 10334, \"umap_x\": -4.1563496589660645, \"umap_y\": -0.3497304916381836, \"post_id\": 10334.0, \"author_id\": 840.0, \"id_y\": 840.0, \"author\": \"Gyde Hansen\", \"author_group\": \"Other\"}, {\"id_x\": 10334, \"umap_x\": -4.1563496589660645, \"umap_y\": -0.3497304916381836, \"post_id\": 10334.0, \"author_id\": 841.0, \"id_y\": 841.0, \"author\": \"Therese Werner\", \"author_group\": \"Other\"}, {\"id_x\": 10334, \"umap_x\": -4.1563496589660645, \"umap_y\": -0.3497304916381836, \"post_id\": 10334.0, \"author_id\": 842.0, \"id_y\": 842.0, \"author\": \"Ella G\\u00f6sselein\", \"author_group\": \"Other\"}, {\"id_x\": 10334, \"umap_x\": -4.1563496589660645, \"umap_y\": -0.3497304916381836, \"post_id\": 10334.0, \"author_id\": 843.0, \"id_y\": 843.0, \"author\": \"Hanna Rieger\", \"author_group\": \"Other\"}, {\"id_x\": 10336, \"umap_x\": -2.8080334663391113, \"umap_y\": -1.7278265953063965, \"post_id\": 10336.0, \"author_id\": 257.0, \"id_y\": 257.0, \"author\": \"Josephine Heinze\", \"author_group\": \"Other\"}, {\"id_x\": 10336, \"umap_x\": -2.8080334663391113, \"umap_y\": -1.7278265953063965, \"post_id\": 10336.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10338, \"umap_x\": 0.7821308374404907, \"umap_y\": 0.14086976647377014, \"post_id\": 10338.0, \"author_id\": 844.0, \"id_y\": 844.0, \"author\": \"Jana Frielinghaus\", \"author_group\": \"Other\"}, {\"id_x\": 10338, \"umap_x\": 0.7821308374404907, \"umap_y\": 0.14086976647377014, \"post_id\": 10338.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10340, \"umap_x\": -1.3081670999526978, \"umap_y\": 5.084442138671875, \"post_id\": 10340.0, \"author_id\": 845.0, \"id_y\": 845.0, \"author\": \"Vivien Vieth\", \"author_group\": \"Other\"}, {\"id_x\": 10340, \"umap_x\": -1.3081670999526978, \"umap_y\": 5.084442138671875, \"post_id\": 10340.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10342, \"umap_x\": 1.0821497440338135, \"umap_y\": -0.05573587864637375, \"post_id\": 10342.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 10342, \"umap_x\": 1.0821497440338135, \"umap_y\": -0.05573587864637375, \"post_id\": 10342.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10344, \"umap_x\": -0.08699806779623032, \"umap_y\": 4.356930255889893, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10346, \"umap_x\": -1.9520198106765747, \"umap_y\": -0.6092292666435242, \"post_id\": 10346.0, \"author_id\": 251.0, \"id_y\": 251.0, \"author\": \"Florian Reinke\", \"author_group\": \"Other\"}, {\"id_x\": 10346, \"umap_x\": -1.9520198106765747, \"umap_y\": -0.6092292666435242, \"post_id\": 10346.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 10346, \"umap_x\": -1.9520198106765747, \"umap_y\": -0.6092292666435242, \"post_id\": 10346.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10351, \"umap_x\": 1.3736629486083984, \"umap_y\": -2.410485029220581, \"post_id\": 10351.0, \"author_id\": 393.0, \"id_y\": 393.0, \"author\": \"Sebastian Weiermann\", \"author_group\": \"Other\"}, {\"id_x\": 10351, \"umap_x\": 1.3736629486083984, \"umap_y\": -2.410485029220581, \"post_id\": 10351.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10353, \"umap_x\": 0.59596186876297, \"umap_y\": 4.0580902099609375, \"post_id\": 10353.0, \"author_id\": 580.0, \"id_y\": 580.0, \"author\": \"Lukas Jocher\", \"author_group\": \"Other\"}, {\"id_x\": 10353, \"umap_x\": 0.59596186876297, \"umap_y\": 4.0580902099609375, \"post_id\": 10353.0, \"author_id\": 828.0, \"id_y\": 828.0, \"author\": \"jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 10355, \"umap_x\": -2.694561719894409, \"umap_y\": -0.8458443880081177, \"post_id\": 10355.0, \"author_id\": 846.0, \"id_y\": 846.0, \"author\": \"Lukas Schliepkorte\", \"author_group\": \"Other\"}, {\"id_x\": 10355, \"umap_x\": -2.694561719894409, \"umap_y\": -0.8458443880081177, \"post_id\": 10355.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10357, \"umap_x\": -3.553845167160034, \"umap_y\": -1.4366984367370605, \"post_id\": 10357.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10359, \"umap_x\": -3.325232982635498, \"umap_y\": -1.516980767250061, \"post_id\": 10359.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 10359, \"umap_x\": -3.325232982635498, \"umap_y\": -1.516980767250061, \"post_id\": 10359.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10361, \"umap_x\": 1.3438938856124878, \"umap_y\": -2.3787481784820557, \"post_id\": 10361.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10366, \"umap_x\": -4.568984508514404, \"umap_y\": 4.37310266494751, \"post_id\": 10366.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 10369, \"umap_x\": -2.234042167663574, \"umap_y\": 1.124019980430603, \"post_id\": 10369.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 10371, \"umap_x\": -0.11672189831733704, \"umap_y\": 2.942657470703125, \"post_id\": 10371.0, \"author_id\": 440.0, \"id_y\": 440.0, \"author\": \"anarchist\", \"author_group\": \"Other\"}, {\"id_x\": 10378, \"umap_x\": -1.6039621829986572, \"umap_y\": 1.5011454820632935, \"post_id\": 10378.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10381, \"umap_x\": -2.4938149452209473, \"umap_y\": -0.3240320682525635, \"post_id\": 10381.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 10381, \"umap_x\": -2.4938149452209473, \"umap_y\": -0.3240320682525635, \"post_id\": 10381.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10384, \"umap_x\": -1.6744612455368042, \"umap_y\": 0.631920576095581, \"post_id\": 10384.0, \"author_id\": 847.0, \"id_y\": 847.0, \"author\": \"Holger Wei\\u00df\", \"author_group\": \"Other\"}, {\"id_x\": 10384, \"umap_x\": -1.6744612455368042, \"umap_y\": 0.631920576095581, \"post_id\": 10384.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10386, \"umap_x\": -1.9788727760314941, \"umap_y\": 1.7059763669967651, \"post_id\": 10386.0, \"author_id\": 108.0, \"id_y\": 108.0, \"author\": \"Michael Stellner\", \"author_group\": \"Other\"}, {\"id_x\": 10388, \"umap_x\": -0.5526852607727051, \"umap_y\": -0.39946526288986206, \"post_id\": 10388.0, \"author_id\": 72.0, \"id_y\": 72.0, \"author\": \"Oliver Hach\", \"author_group\": \"Other\"}, {\"id_x\": 10394, \"umap_x\": -1.3892347812652588, \"umap_y\": 0.962571382522583, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10398, \"umap_x\": -0.8808133602142334, \"umap_y\": -1.355076789855957, \"post_id\": 10398.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10400, \"umap_x\": -0.958906888961792, \"umap_y\": 0.026862330734729767, \"post_id\": 10400.0, \"author_id\": 848.0, \"id_y\": 848.0, \"author\": \"Thoralf Cleven\", \"author_group\": \"Other\"}, {\"id_x\": 10400, \"umap_x\": -0.958906888961792, \"umap_y\": 0.026862330734729767, \"post_id\": 10400.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10402, \"umap_x\": 1.0691559314727783, \"umap_y\": -0.8613872528076172, \"post_id\": 10402.0, \"author_id\": 340.0, \"id_y\": 340.0, \"author\": \"Markus Decker\", \"author_group\": \"Other\"}, {\"id_x\": 10402, \"umap_x\": 1.0691559314727783, \"umap_y\": -0.8613872528076172, \"post_id\": 10402.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10404, \"umap_x\": -1.9289225339889526, \"umap_y\": -0.0017416705377399921, \"post_id\": 10404.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10407, \"umap_x\": 0.3049239218235016, \"umap_y\": -0.9000298380851746, \"post_id\": 10407.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 10407, \"umap_x\": 0.3049239218235016, \"umap_y\": -0.9000298380851746, \"post_id\": 10407.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10421, \"umap_x\": -2.1499574184417725, \"umap_y\": 4.495187759399414, \"post_id\": 10421.0, \"author_id\": 849.0, \"id_y\": 849.0, \"author\": \"Icke\", \"author_group\": \"Other\"}, {\"id_x\": 10427, \"umap_x\": -2.153364896774292, \"umap_y\": 4.408384323120117, \"post_id\": 10427.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10430, \"umap_x\": 0.4458859860897064, \"umap_y\": 5.768148899078369, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10432, \"umap_x\": -2.2121243476867676, \"umap_y\": 2.2948977947235107, \"post_id\": 10432.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 10432, \"umap_x\": -2.2121243476867676, \"umap_y\": 2.2948977947235107, \"post_id\": 10432.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10434, \"umap_x\": -0.5152608156204224, \"umap_y\": 1.508824348449707, \"post_id\": 10434.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 10434, \"umap_x\": -0.5152608156204224, \"umap_y\": 1.508824348449707, \"post_id\": 10434.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10436, \"umap_x\": -3.541891574859619, \"umap_y\": -1.4042302370071411, \"post_id\": 10436.0, \"author_id\": 518.0, \"id_y\": 518.0, \"author\": \"Eric Mittmann\", \"author_group\": \"Other\"}, {\"id_x\": 10441, \"umap_x\": -0.8736629486083984, \"umap_y\": 1.8302656412124634, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10443, \"umap_x\": -1.3231853246688843, \"umap_y\": 0.0915432944893837, \"post_id\": 10443.0, \"author_id\": 847.0, \"id_y\": 847.0, \"author\": \"Holger Wei\\u00df\", \"author_group\": \"Other\"}, {\"id_x\": 10443, \"umap_x\": -1.3231853246688843, \"umap_y\": 0.0915432944893837, \"post_id\": 10443.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10445, \"umap_x\": -1.283066749572754, \"umap_y\": -0.09869522601366043, \"post_id\": 10445.0, \"author_id\": 850.0, \"id_y\": 850.0, \"author\": \"Sabrina Seifert\", \"author_group\": \"Other\"}, {\"id_x\": 10445, \"umap_x\": -1.283066749572754, \"umap_y\": -0.09869522601366043, \"post_id\": 10445.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10447, \"umap_x\": 1.127829670906067, \"umap_y\": -0.2664085030555725, \"post_id\": 10447.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 10447, \"umap_x\": 1.127829670906067, \"umap_y\": -0.2664085030555725, \"post_id\": 10447.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10456, \"umap_x\": -2.242032289505005, \"umap_y\": 0.4939902722835541, \"post_id\": 10456.0, \"author_id\": 851.0, \"id_y\": 851.0, \"author\": \"Hagen Kutscha\", \"author_group\": \"Other\"}, {\"id_x\": 10459, \"umap_x\": 0.36726146936416626, \"umap_y\": -0.24844703078269958, \"post_id\": 10459.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10461, \"umap_x\": -2.0741403102874756, \"umap_y\": 4.3506903648376465, \"post_id\": 10461.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10466, \"umap_x\": -0.9021822214126587, \"umap_y\": 3.359492301940918, \"post_id\": 10466.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10468, \"umap_x\": 0.13082122802734375, \"umap_y\": 3.6273977756500244, \"post_id\": 10468.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10470, \"umap_x\": -2.1736254692077637, \"umap_y\": 4.487152099609375, \"post_id\": 10470.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10477, \"umap_x\": 0.008795023895800114, \"umap_y\": 5.642101287841797, \"post_id\": 10477.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10479, \"umap_x\": 0.2454392910003662, \"umap_y\": -0.6783783435821533, \"post_id\": 10479.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10481, \"umap_x\": -1.4654492139816284, \"umap_y\": 1.3060839176177979, \"post_id\": 10481.0, \"author_id\": 104.0, \"id_y\": 104.0, \"author\": \"Theresa Hellwig\", \"author_group\": \"Other\"}, {\"id_x\": 10481, \"umap_x\": -1.4654492139816284, \"umap_y\": 1.3060839176177979, \"post_id\": 10481.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10483, \"umap_x\": 0.010385178960859776, \"umap_y\": -0.2425728738307953, \"post_id\": 10483.0, \"author_id\": 852.0, \"id_y\": 852.0, \"author\": \"Ilko-Sascha Kowalczuk\", \"author_group\": \"Other\"}, {\"id_x\": 10483, \"umap_x\": 0.010385178960859776, \"umap_y\": -0.2425728738307953, \"post_id\": 10483.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 10485, \"umap_x\": -0.5173057317733765, \"umap_y\": 0.9909415245056152, \"post_id\": 10485.0, \"author_id\": 614.0, \"id_y\": 614.0, \"author\": \"Manuela M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 10485, \"umap_x\": -0.5173057317733765, \"umap_y\": 0.9909415245056152, \"post_id\": 10485.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10487, \"umap_x\": -3.259380578994751, \"umap_y\": 0.797639787197113, \"post_id\": 10487.0, \"author_id\": 853.0, \"id_y\": 853.0, \"author\": \"Julius Kreuter\", \"author_group\": \"Other\"}, {\"id_x\": 10487, \"umap_x\": -3.259380578994751, \"umap_y\": 0.797639787197113, \"post_id\": 10487.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10489, \"umap_x\": -3.234743356704712, \"umap_y\": 0.7764489650726318, \"post_id\": 10489.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 10489, \"umap_x\": -3.234743356704712, \"umap_y\": 0.7764489650726318, \"post_id\": 10489.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10491, \"umap_x\": -1.9380874633789062, \"umap_y\": -0.7297348976135254, \"post_id\": 10491.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 10491, \"umap_x\": -1.9380874633789062, \"umap_y\": -0.7297348976135254, \"post_id\": 10491.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10493, \"umap_x\": 0.5154953598976135, \"umap_y\": -0.06712085008621216, \"post_id\": 10493.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10496, \"umap_x\": -1.5709750652313232, \"umap_y\": 3.0916061401367188, \"post_id\": 10496.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10515, \"umap_x\": -3.0462143421173096, \"umap_y\": 3.0090689659118652, \"post_id\": 10515.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10521, \"umap_x\": 0.2648673951625824, \"umap_y\": 5.753805160522461, \"post_id\": 10521.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10528, \"umap_x\": -1.1678643226623535, \"umap_y\": 1.0648539066314697, \"post_id\": 10528.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10528, \"umap_x\": -1.1678643226623535, \"umap_y\": 1.0648539066314697, \"post_id\": 10528.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10532, \"umap_x\": -3.0222795009613037, \"umap_y\": 0.544374406337738, \"post_id\": 10532.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 10532, \"umap_x\": -3.0222795009613037, \"umap_y\": 0.544374406337738, \"post_id\": 10532.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10535, \"umap_x\": -4.402033805847168, \"umap_y\": 4.68972635269165, \"post_id\": 10535.0, \"author_id\": 854.0, \"id_y\": 854.0, \"author\": \"Widerstandsvernetzung\", \"author_group\": \"Other\"}, {\"id_x\": 10538, \"umap_x\": 0.9174093008041382, \"umap_y\": 3.8517911434173584, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10541, \"umap_x\": 0.8725665211677551, \"umap_y\": -0.6144950985908508, \"post_id\": 10541.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 10541, \"umap_x\": 0.8725665211677551, \"umap_y\": -0.6144950985908508, \"post_id\": 10541.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 10543, \"umap_x\": 0.33774444460868835, \"umap_y\": 0.1003791093826294, \"post_id\": 10543.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 10546, \"umap_x\": -0.3686008155345917, \"umap_y\": 4.324316024780273, \"post_id\": 10546.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10555, \"umap_x\": -1.2532821893692017, \"umap_y\": 4.689995288848877, \"post_id\": 10555.0, \"author_id\": 855.0, \"id_y\": 855.0, \"author\": \"Jakob Springfeld\", \"author_group\": \"Other\"}, {\"id_x\": 10555, \"umap_x\": -1.2532821893692017, \"umap_y\": 4.689995288848877, \"post_id\": 10555.0, \"author_id\": 856.0, \"id_y\": 856.0, \"author\": \"Freitag\", \"author_group\": \"Other\"}, {\"id_x\": 10557, \"umap_x\": 0.9259726405143738, \"umap_y\": 0.2532842755317688, \"post_id\": 10557.0, \"author_id\": 709.0, \"id_y\": 709.0, \"author\": \"Kilian Beck\", \"author_group\": \"Other\"}, {\"id_x\": 10559, \"umap_x\": -0.15557420253753662, \"umap_y\": 0.889803946018219, \"post_id\": 10559.0, \"author_id\": 414.0, \"id_y\": 414.0, \"author\": \"tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 10561, \"umap_x\": -1.2984222173690796, \"umap_y\": 0.4847763180732727, \"post_id\": 10561.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 10563, \"umap_x\": -0.3005123734474182, \"umap_y\": 3.8434014320373535, \"post_id\": 10563.0, \"author_id\": 857.0, \"id_y\": 857.0, \"author\": \"Ralf Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 10563, \"umap_x\": -0.3005123734474182, \"umap_y\": 3.8434014320373535, \"post_id\": 10563.0, \"author_id\": 858.0, \"id_y\": 858.0, \"author\": \"Jungle\", \"author_group\": \"Other\"}, {\"id_x\": 10565, \"umap_x\": -0.8738137483596802, \"umap_y\": -1.3325999975204468, \"post_id\": 10565.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 10580, \"umap_x\": -0.7532787322998047, \"umap_y\": 2.904449701309204, \"post_id\": 10580.0, \"author_id\": 859.0, \"id_y\": 859.0, \"author\": \"radikal_news\", \"author_group\": \"Other\"}, {\"id_x\": 10583, \"umap_x\": 0.11374751478433609, \"umap_y\": -0.0014701042091473937, \"post_id\": 10583.0, \"author_id\": 860.0, \"id_y\": 860.0, \"author\": \"Birgit Baumann\", \"author_group\": \"Other\"}, {\"id_x\": 10583, \"umap_x\": 0.11374751478433609, \"umap_y\": -0.0014701042091473937, \"post_id\": 10583.0, \"author_id\": 861.0, \"id_y\": 861.0, \"author\": \"der Standard\", \"author_group\": \"Other\"}, {\"id_x\": 10586, \"umap_x\": 1.1512258052825928, \"umap_y\": -0.44079485535621643, \"post_id\": 10586.0, \"author_id\": 862.0, \"id_y\": 862.0, \"author\": \"s\\u00e4chsische zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10591, \"umap_x\": -2.3284294605255127, \"umap_y\": 0.38278067111968994, \"post_id\": 10591.0, \"author_id\": 219.0, \"id_y\": 219.0, \"author\": \"Fabienne K\\u00fcchler\", \"author_group\": \"Other\"}, {\"id_x\": 10591, \"umap_x\": -2.3284294605255127, \"umap_y\": 0.38278067111968994, \"post_id\": 10591.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 10594, \"umap_x\": -2.270925760269165, \"umap_y\": -0.304216593503952, \"post_id\": 10594.0, \"author_id\": 864.0, \"id_y\": 864.0, \"author\": \"Einheitsfront\", \"author_group\": \"Other\"}, {\"id_x\": 10596, \"umap_x\": -1.6851379871368408, \"umap_y\": -0.7675445675849915, \"post_id\": 10596.0, \"author_id\": 602.0, \"id_y\": 602.0, \"author\": \"Dirk Schulze\", \"author_group\": \"Other\"}, {\"id_x\": 10596, \"umap_x\": -1.6851379871368408, \"umap_y\": -0.7675445675849915, \"post_id\": 10596.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10598, \"umap_x\": -0.42470160126686096, \"umap_y\": 1.8463542461395264, \"post_id\": 10598.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 10598, \"umap_x\": -0.42470160126686096, \"umap_y\": 1.8463542461395264, \"post_id\": 10598.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10600, \"umap_x\": -1.2379372119903564, \"umap_y\": 5.187030792236328, \"post_id\": 10600.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10602, \"umap_x\": 0.8137606978416443, \"umap_y\": -0.4969404339790344, \"post_id\": 10602.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10607, \"umap_x\": -2.2329115867614746, \"umap_y\": 1.9769222736358643, \"post_id\": 10607.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 10607, \"umap_x\": -2.2329115867614746, \"umap_y\": 1.9769222736358643, \"post_id\": 10607.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10607, \"umap_x\": -2.2329115867614746, \"umap_y\": 1.9769222736358643, \"post_id\": 10607.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10620, \"umap_x\": 0.10492398589849472, \"umap_y\": 4.169939041137695, \"post_id\": 10620.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 10620, \"umap_x\": 0.10492398589849472, \"umap_y\": 4.169939041137695, \"post_id\": 10620.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10624, \"umap_x\": 0.8109837174415588, \"umap_y\": -0.44558972120285034, \"post_id\": 10624.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 10624, \"umap_x\": 0.8109837174415588, \"umap_y\": -0.44558972120285034, \"post_id\": 10624.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10626, \"umap_x\": 0.7221000790596008, \"umap_y\": 0.44175249338150024, \"post_id\": 10626.0, \"author_id\": 865.0, \"id_y\": 865.0, \"author\": \"Laura Catoni\", \"author_group\": \"Other\"}, {\"id_x\": 10626, \"umap_x\": 0.7221000790596008, \"umap_y\": 0.44175249338150024, \"post_id\": 10626.0, \"author_id\": 362.0, \"id_y\": 362.0, \"author\": \"Bj\\u00f6rn Meine\", \"author_group\": \"Other\"}, {\"id_x\": 10626, \"umap_x\": 0.7221000790596008, \"umap_y\": 0.44175249338150024, \"post_id\": 10626.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10628, \"umap_x\": -3.3677444458007812, \"umap_y\": 2.1547327041625977, \"post_id\": 10628.0, \"author_id\": 707.0, \"id_y\": 707.0, \"author\": \"Associazione Sapere Aude\", \"author_group\": \"Other\"}, {\"id_x\": 10632, \"umap_x\": -1.2132991552352905, \"umap_y\": 2.7243165969848633, \"post_id\": 10632.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10635, \"umap_x\": -2.2696115970611572, \"umap_y\": 1.692789912223816, \"post_id\": 10635.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10637, \"umap_x\": -2.2424533367156982, \"umap_y\": 2.07100772857666, \"post_id\": 10637.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10639, \"umap_x\": -1.388013482093811, \"umap_y\": 0.633806586265564, \"post_id\": 10639.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 10641, \"umap_x\": -0.8931015133857727, \"umap_y\": 1.5760060548782349, \"post_id\": 10641.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 10643, \"umap_x\": -2.0657811164855957, \"umap_y\": -1.3663246631622314, \"post_id\": 10643.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 10643, \"umap_x\": -2.0657811164855957, \"umap_y\": -1.3663246631622314, \"post_id\": 10643.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10643, \"umap_x\": -2.0657811164855957, \"umap_y\": -1.3663246631622314, \"post_id\": 10643.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10645, \"umap_x\": 0.8479189276695251, \"umap_y\": -0.3561585545539856, \"post_id\": 10645.0, \"author_id\": 866.0, \"id_y\": 866.0, \"author\": \"Michael Bittner\", \"author_group\": \"Other\"}, {\"id_x\": 10645, \"umap_x\": 0.8479189276695251, \"umap_y\": -0.3561585545539856, \"post_id\": 10645.0, \"author_id\": 57.0, \"id_y\": 57.0, \"author\": \"Jungle World\", \"author_group\": \"Other\"}, {\"id_x\": 10647, \"umap_x\": -0.9978215098381042, \"umap_y\": 3.2346270084381104, \"post_id\": 10647.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 10647, \"umap_x\": -0.9978215098381042, \"umap_y\": 3.2346270084381104, \"post_id\": 10647.0, \"author_id\": 858.0, \"id_y\": 858.0, \"author\": \"Jungle\", \"author_group\": \"Other\"}, {\"id_x\": 10649, \"umap_x\": 1.9142823219299316, \"umap_y\": 3.440460681915283, \"post_id\": 10649.0, \"author_id\": 857.0, \"id_y\": 857.0, \"author\": \"Ralf Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 10651, \"umap_x\": -3.809410333633423, \"umap_y\": 2.5705535411834717, \"post_id\": 10651.0, \"author_id\": 108.0, \"id_y\": 108.0, \"author\": \"Michael Stellner\", \"author_group\": \"Other\"}, {\"id_x\": 10651, \"umap_x\": -3.809410333633423, \"umap_y\": 2.5705535411834717, \"post_id\": 10651.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10653, \"umap_x\": 1.4266822338104248, \"umap_y\": -0.3108653724193573, \"post_id\": 10653.0, \"author_id\": 175.0, \"id_y\": 175.0, \"author\": \"Tino Moritz\", \"author_group\": \"Other\"}, {\"id_x\": 10653, \"umap_x\": 1.4266822338104248, \"umap_y\": -0.3108653724193573, \"post_id\": 10653.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10655, \"umap_x\": -3.966362953186035, \"umap_y\": -0.48328202962875366, \"post_id\": 10655.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 10657, \"umap_x\": -0.8925632238388062, \"umap_y\": -0.9840989112854004, \"post_id\": 10657.0, \"author_id\": 867.0, \"id_y\": 867.0, \"author\": \"Springer\", \"author_group\": \"Other\"}, {\"id_x\": 10670, \"umap_x\": -2.129645824432373, \"umap_y\": 3.9980812072753906, \"post_id\": 10670.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10693, \"umap_x\": -0.03847469016909599, \"umap_y\": 3.8076212406158447, \"post_id\": 10693.0, \"author_id\": 868.0, \"id_y\": 868.0, \"author\": \"Antifaschistische Gruppe Erfurt\", \"author_group\": \"Other\"}, {\"id_x\": 10695, \"umap_x\": 0.2081417739391327, \"umap_y\": 1.426674485206604, \"post_id\": 10695.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10697, \"umap_x\": -1.0713340044021606, \"umap_y\": 5.267214298248291, \"post_id\": 10697.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 10702, \"umap_x\": 0.16351208090782166, \"umap_y\": 2.3317155838012695, \"post_id\": 10702.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 10705, \"umap_x\": 0.41388699412345886, \"umap_y\": 5.118812084197998, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10711, \"umap_x\": 0.3358732759952545, \"umap_y\": 2.5255067348480225, \"post_id\": 10711.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10713, \"umap_x\": -0.5432233214378357, \"umap_y\": 0.4053097069263458, \"post_id\": 10713.0, \"author_id\": 254.0, \"id_y\": 254.0, \"author\": \"Michael M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 10713, \"umap_x\": -0.5432233214378357, \"umap_y\": 0.4053097069263458, \"post_id\": 10713.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10715, \"umap_x\": -2.312135934829712, \"umap_y\": 0.8354093432426453, \"post_id\": 10715.0, \"author_id\": 258.0, \"id_y\": 258.0, \"author\": \"Andr\\u00e9 B\\u00f6hmer\", \"author_group\": \"Other\"}, {\"id_x\": 10715, \"umap_x\": -2.312135934829712, \"umap_y\": 0.8354093432426453, \"post_id\": 10715.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10717, \"umap_x\": -2.0064139366149902, \"umap_y\": -1.4636703729629517, \"post_id\": 10717.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10717, \"umap_x\": -2.0064139366149902, \"umap_y\": -1.4636703729629517, \"post_id\": 10717.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10719, \"umap_x\": -1.4793422222137451, \"umap_y\": -1.0682226419448853, \"post_id\": 10719.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10719, \"umap_x\": -1.4793422222137451, \"umap_y\": -1.0682226419448853, \"post_id\": 10719.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10721, \"umap_x\": -0.4142376184463501, \"umap_y\": 1.0959711074829102, \"post_id\": 10721.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10723, \"umap_x\": -3.5712602138519287, \"umap_y\": 2.2418980598449707, \"post_id\": 10723.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10733, \"umap_x\": -2.246377468109131, \"umap_y\": -0.5088198184967041, \"post_id\": 10733.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10738, \"umap_x\": 0.8858249187469482, \"umap_y\": -0.8956908583641052, \"post_id\": 10738.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 10740, \"umap_x\": -2.9375181198120117, \"umap_y\": 3.061016082763672, \"post_id\": 10740.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10745, \"umap_x\": -3.52018666267395, \"umap_y\": 2.822342872619629, \"post_id\": 10745.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 10745, \"umap_x\": -3.52018666267395, \"umap_y\": 2.822342872619629, \"post_id\": 10745.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10747, \"umap_x\": -0.9662359356880188, \"umap_y\": 1.9080824851989746, \"post_id\": 10747.0, \"author_id\": 535.0, \"id_y\": 535.0, \"author\": \"Matthias Monroy\", \"author_group\": \"Other\"}, {\"id_x\": 10747, \"umap_x\": -0.9662359356880188, \"umap_y\": 1.9080824851989746, \"post_id\": 10747.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 10753, \"umap_x\": -1.203281283378601, \"umap_y\": -0.3222118318080902, \"post_id\": 10753.0, \"author_id\": 869.0, \"id_y\": 869.0, \"author\": \"Erik Anke\", \"author_group\": \"Other\"}, {\"id_x\": 10753, \"umap_x\": -1.203281283378601, \"umap_y\": -0.3222118318080902, \"post_id\": 10753.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 10755, \"umap_x\": -0.4909849166870117, \"umap_y\": 3.8843109607696533, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 10757, \"umap_x\": -2.0464017391204834, \"umap_y\": 1.000117301940918, \"post_id\": 10757.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10765, \"umap_x\": 0.3054749369621277, \"umap_y\": 5.745560646057129, \"post_id\": 10765.0, \"author_id\": 315.0, \"id_y\": 315.0, \"author\": \"appa\", \"author_group\": \"Other\"}, {\"id_x\": 10769, \"umap_x\": -2.351654529571533, \"umap_y\": 4.386943340301514, \"post_id\": 10769.0, \"author_id\": 870.0, \"id_y\": 870.0, \"author\": \"autodidaktische initiative\", \"author_group\": \"Other\"}, {\"id_x\": 10774, \"umap_x\": -2.057955026626587, \"umap_y\": -0.35216224193573, \"post_id\": 10774.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 10774, \"umap_x\": -2.057955026626587, \"umap_y\": -0.35216224193573, \"post_id\": 10774.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10776, \"umap_x\": -0.17509514093399048, \"umap_y\": -0.9207446575164795, \"post_id\": 10776.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10778, \"umap_x\": 0.6028845310211182, \"umap_y\": 0.06271342188119888, \"post_id\": 10778.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 10778, \"umap_x\": 0.6028845310211182, \"umap_y\": 0.06271342188119888, \"post_id\": 10778.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10782, \"umap_x\": -0.5017846822738647, \"umap_y\": 4.701898097991943, \"post_id\": 10782.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 10789, \"umap_x\": -3.242137908935547, \"umap_y\": 1.4971500635147095, \"post_id\": 10789.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10792, \"umap_x\": -1.7824466228485107, \"umap_y\": -1.409105658531189, \"post_id\": 10792.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10792, \"umap_x\": -1.7824466228485107, \"umap_y\": -1.409105658531189, \"post_id\": 10792.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10794, \"umap_x\": -2.2543320655822754, \"umap_y\": -0.731157124042511, \"post_id\": 10794.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 10794, \"umap_x\": -2.2543320655822754, \"umap_y\": -0.731157124042511, \"post_id\": 10794.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10796, \"umap_x\": -2.312011957168579, \"umap_y\": -0.7728156447410583, \"post_id\": 10796.0, \"author_id\": 296.0, \"id_y\": 296.0, \"author\": \"Ekkehard Schulreich\", \"author_group\": \"Other\"}, {\"id_x\": 10796, \"umap_x\": -2.312011957168579, \"umap_y\": -0.7728156447410583, \"post_id\": 10796.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10798, \"umap_x\": -2.053973913192749, \"umap_y\": 0.4340824782848358, \"post_id\": 10798.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 10798, \"umap_x\": -2.053973913192749, \"umap_y\": 0.4340824782848358, \"post_id\": 10798.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10800, \"umap_x\": -1.1927781105041504, \"umap_y\": 3.5109148025512695, \"post_id\": 10800.0, \"author_id\": 871.0, \"id_y\": 871.0, \"author\": \"Torsten Tenb\\u00f6rg\", \"author_group\": \"Other\"}, {\"id_x\": 10800, \"umap_x\": -1.1927781105041504, \"umap_y\": 3.5109148025512695, \"post_id\": 10800.0, \"author_id\": 872.0, \"id_y\": 872.0, \"author\": \"NRZ\", \"author_group\": \"Other\"}, {\"id_x\": 10806, \"umap_x\": -0.9787518978118896, \"umap_y\": 1.9599086046218872, \"post_id\": 10806.0, \"author_id\": 873.0, \"id_y\": 873.0, \"author\": \"Robert Bongen\", \"author_group\": \"Other\"}, {\"id_x\": 10806, \"umap_x\": -0.9787518978118896, \"umap_y\": 1.9599086046218872, \"post_id\": 10806.0, \"author_id\": 874.0, \"id_y\": 874.0, \"author\": \"Daniel Mo\\u00dfbrucker\", \"author_group\": \"Other\"}, {\"id_x\": 10806, \"umap_x\": -0.9787518978118896, \"umap_y\": 1.9599086046218872, \"post_id\": 10806.0, \"author_id\": 291.0, \"id_y\": 291.0, \"author\": \"NDR\", \"author_group\": \"Other\"}, {\"id_x\": 10806, \"umap_x\": -0.9787518978118896, \"umap_y\": 1.9599086046218872, \"post_id\": 10806.0, \"author_id\": 414.0, \"id_y\": 414.0, \"author\": \"tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 10808, \"umap_x\": -2.629833221435547, \"umap_y\": -0.34367817640304565, \"post_id\": 10808.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 10808, \"umap_x\": -2.629833221435547, \"umap_y\": -0.34367817640304565, \"post_id\": 10808.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 10808, \"umap_x\": -2.629833221435547, \"umap_y\": -0.34367817640304565, \"post_id\": 10808.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10812, \"umap_x\": 0.6004151701927185, \"umap_y\": 2.5130136013031006, \"post_id\": 10812.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 10812, \"umap_x\": 0.6004151701927185, \"umap_y\": 2.5130136013031006, \"post_id\": 10812.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10814, \"umap_x\": 0.4070277512073517, \"umap_y\": 0.4290120601654053, \"post_id\": 10814.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10817, \"umap_x\": -1.8473286628723145, \"umap_y\": 1.0111101865768433, \"post_id\": 10817.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 10817, \"umap_x\": -1.8473286628723145, \"umap_y\": 1.0111101865768433, \"post_id\": 10817.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10819, \"umap_x\": 0.7261397242546082, \"umap_y\": -0.8447356224060059, \"post_id\": 10819.0, \"author_id\": 476.0, \"id_y\": 476.0, \"author\": \"Doreen Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 10819, \"umap_x\": 0.7261397242546082, \"umap_y\": -0.8447356224060059, \"post_id\": 10819.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 10821, \"umap_x\": 1.1681663990020752, \"umap_y\": 0.08344792574644089, \"post_id\": 10821.0, \"author_id\": 875.0, \"id_y\": 875.0, \"author\": \"Nikolaus Harbusch\", \"author_group\": \"Other\"}, {\"id_x\": 10821, \"umap_x\": 1.1681663990020752, \"umap_y\": 0.08344792574644089, \"post_id\": 10821.0, \"author_id\": 867.0, \"id_y\": 867.0, \"author\": \"Springer\", \"author_group\": \"Other\"}, {\"id_x\": 10823, \"umap_x\": 0.21532246470451355, \"umap_y\": 1.4230265617370605, \"post_id\": 10823.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 10823, \"umap_x\": 0.21532246470451355, \"umap_y\": 1.4230265617370605, \"post_id\": 10823.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10825, \"umap_x\": 0.08757340162992477, \"umap_y\": 0.4256826937198639, \"post_id\": 10825.0, \"author_id\": 76.0, \"id_y\": 76.0, \"author\": \"Jens Hoyer\", \"author_group\": \"Other\"}, {\"id_x\": 10825, \"umap_x\": 0.08757340162992477, \"umap_y\": 0.4256826937198639, \"post_id\": 10825.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10827, \"umap_x\": -1.6277681589126587, \"umap_y\": -0.6627143025398254, \"post_id\": 10827.0, \"author_id\": 121.0, \"id_y\": 121.0, \"author\": \"Chronik\", \"author_group\": \"Other\"}, {\"id_x\": 10829, \"umap_x\": -0.006499521434307098, \"umap_y\": -0.04599900171160698, \"post_id\": 10829.0, \"author_id\": 876.0, \"id_y\": 876.0, \"author\": \"Niclas Fiegert\", \"author_group\": \"Other\"}, {\"id_x\": 10831, \"umap_x\": 1.296462059020996, \"umap_y\": 3.9054815769195557, \"post_id\": 10831.0, \"author_id\": 685.0, \"id_y\": 685.0, \"author\": \"Carina Book\", \"author_group\": \"Other\"}, {\"id_x\": 10831, \"umap_x\": 1.296462059020996, \"umap_y\": 3.9054815769195557, \"post_id\": 10831.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 10833, \"umap_x\": -1.2805709838867188, \"umap_y\": 3.762356996536255, \"post_id\": 10833.0, \"author_id\": 161.0, \"id_y\": 161.0, \"author\": \"Initiative\", \"author_group\": \"Other\"}, {\"id_x\": 10836, \"umap_x\": 0.2838085889816284, \"umap_y\": 1.793121337890625, \"post_id\": 10836.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 10838, \"umap_x\": 0.10109495371580124, \"umap_y\": 4.2820024490356445, \"post_id\": 10838.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 10840, \"umap_x\": 0.26669973134994507, \"umap_y\": 0.27724456787109375, \"post_id\": 10840.0, \"author_id\": 877.0, \"id_y\": 877.0, \"author\": \"\\u0130nci Arslan\", \"author_group\": \"Other\"}, {\"id_x\": 10842, \"umap_x\": -2.3940396308898926, \"umap_y\": -0.8886219263076782, \"post_id\": 10842.0, \"author_id\": 785.0, \"id_y\": 785.0, \"author\": \"Leipziger Volkszeitung\", \"author_group\": \"Other\"}, {\"id_x\": 10842, \"umap_x\": -2.3940396308898926, \"umap_y\": -0.8886219263076782, \"post_id\": 10842.0, \"author_id\": 296.0, \"id_y\": 296.0, \"author\": \"Ekkehard Schulreich\", \"author_group\": \"Other\"}, {\"id_x\": 10861, \"umap_x\": -3.233592987060547, \"umap_y\": -0.011775469407439232, \"post_id\": 10861.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10865, \"umap_x\": -0.8002116084098816, \"umap_y\": 2.8372647762298584, \"post_id\": 10865.0, \"author_id\": 768.0, \"id_y\": 768.0, \"author\": \"Pro Choice Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 10868, \"umap_x\": -2.5839109420776367, \"umap_y\": -0.06648305803537369, \"post_id\": 10868.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 10868, \"umap_x\": -2.5839109420776367, \"umap_y\": -0.06648305803537369, \"post_id\": 10868.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10870, \"umap_x\": 1.2434505224227905, \"umap_y\": -0.6562156677246094, \"post_id\": 10870.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10874, \"umap_x\": -3.1914026737213135, \"umap_y\": 1.829512119293213, \"post_id\": 10874.0, \"author_id\": 878.0, \"id_y\": 878.0, \"author\": \"Max Hobrecht\", \"author_group\": \"Other\"}, {\"id_x\": 10876, \"umap_x\": -0.9808906316757202, \"umap_y\": -1.2678145170211792, \"post_id\": 10876.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 10876, \"umap_x\": -0.9808906316757202, \"umap_y\": -1.2678145170211792, \"post_id\": 10876.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10882, \"umap_x\": -2.7643795013427734, \"umap_y\": 5.470591068267822, \"post_id\": 10882.0, \"author_id\": 879.0, \"id_y\": 879.0, \"author\": \"Anarchistick\\u00e1 federace\", \"author_group\": \"Other\"}, {\"id_x\": 10885, \"umap_x\": -2.263341188430786, \"umap_y\": 0.09543698281049728, \"post_id\": 10885.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10887, \"umap_x\": 0.05689694732427597, \"umap_y\": 1.7565007209777832, \"post_id\": 10887.0, \"author_id\": 869.0, \"id_y\": 869.0, \"author\": \"Erik Anke\", \"author_group\": \"Other\"}, {\"id_x\": 10887, \"umap_x\": 0.05689694732427597, \"umap_y\": 1.7565007209777832, \"post_id\": 10887.0, \"author_id\": 880.0, \"id_y\": 880.0, \"author\": \"freie presse\", \"author_group\": \"Other\"}, {\"id_x\": 10889, \"umap_x\": 0.8298203945159912, \"umap_y\": 0.8058103322982788, \"post_id\": 10889.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 10891, \"umap_x\": -0.6826894879341125, \"umap_y\": 0.6753689646720886, \"post_id\": 10891.0, \"author_id\": 770.0, \"id_y\": 770.0, \"author\": \"Osman O\\u011fuz\", \"author_group\": \"Other\"}, {\"id_x\": 10905, \"umap_x\": -1.1837453842163086, \"umap_y\": -0.3247418999671936, \"post_id\": 10905.0, \"author_id\": 881.0, \"id_y\": 881.0, \"author\": \"Peter Maxwill\", \"author_group\": \"Other\"}, {\"id_x\": 10905, \"umap_x\": -1.1837453842163086, \"umap_y\": -0.3247418999671936, \"post_id\": 10905.0, \"author_id\": 165.0, \"id_y\": 165.0, \"author\": \"spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 10907, \"umap_x\": -0.6999287605285645, \"umap_y\": 0.309701532125473, \"post_id\": 10907.0, \"author_id\": 440.0, \"id_y\": 440.0, \"author\": \"anarchist\", \"author_group\": \"Other\"}, {\"id_x\": 10915, \"umap_x\": 1.8466919660568237, \"umap_y\": 3.4594831466674805, \"post_id\": 10915.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 10915, \"umap_x\": 1.8466919660568237, \"umap_y\": 3.4594831466674805, \"post_id\": 10915.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 10917, \"umap_x\": -2.6478967666625977, \"umap_y\": 0.582093358039856, \"post_id\": 10917.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 10917, \"umap_x\": -2.6478967666625977, \"umap_y\": 0.582093358039856, \"post_id\": 10917.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10919, \"umap_x\": 0.4314118027687073, \"umap_y\": -1.0456581115722656, \"post_id\": 10919.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10919, \"umap_x\": 0.4314118027687073, \"umap_y\": -1.0456581115722656, \"post_id\": 10919.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10922, \"umap_x\": -2.2239136695861816, \"umap_y\": -0.39667201042175293, \"post_id\": 10922.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 10922, \"umap_x\": -2.2239136695861816, \"umap_y\": -0.39667201042175293, \"post_id\": 10922.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10929, \"umap_x\": -2.867331027984619, \"umap_y\": 0.8017435669898987, \"post_id\": 10929.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10932, \"umap_x\": -2.4166619777679443, \"umap_y\": 1.4860632419586182, \"post_id\": 10932.0, \"author_id\": 670.0, \"id_y\": 670.0, \"author\": \"Aiko Kempen\", \"author_group\": \"Other\"}, {\"id_x\": 10938, \"umap_x\": -1.927443504333496, \"umap_y\": 0.32738804817199707, \"post_id\": 10938.0, \"author_id\": 882.0, \"id_y\": 882.0, \"author\": \"Verwaltungsgericht Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 10940, \"umap_x\": -1.467254877090454, \"umap_y\": 2.876448392868042, \"post_id\": 10940.0, \"author_id\": 883.0, \"id_y\": 883.0, \"author\": \"taz.de\", \"author_group\": \"Other\"}, {\"id_x\": 10940, \"umap_x\": -1.467254877090454, \"umap_y\": 2.876448392868042, \"post_id\": 10940.0, \"author_id\": 884.0, \"id_y\": 884.0, \"author\": \"Mitsuo Iwamoto\", \"author_group\": \"Other\"}, {\"id_x\": 10944, \"umap_x\": 0.1689734309911728, \"umap_y\": -0.4006541669368744, \"post_id\": 10944.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10946, \"umap_x\": -2.5423362255096436, \"umap_y\": 3.185516119003296, \"post_id\": 10946.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 10948, \"umap_x\": -1.6918798685073853, \"umap_y\": 4.140605449676514, \"post_id\": 10948.0, \"author_id\": 885.0, \"id_y\": 885.0, \"author\": \"Solidarische Internationalist\", \"author_group\": \"Other\"}, {\"id_x\": 10951, \"umap_x\": 1.3753767013549805, \"umap_y\": -0.6667369604110718, \"post_id\": 10951.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10953, \"umap_x\": -2.547194242477417, \"umap_y\": 0.5550352334976196, \"post_id\": 10953.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10955, \"umap_x\": -2.8505876064300537, \"umap_y\": 0.28789618611335754, \"post_id\": 10955.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 10955, \"umap_x\": -2.8505876064300537, \"umap_y\": 0.28789618611335754, \"post_id\": 10955.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10957, \"umap_x\": 1.3073054552078247, \"umap_y\": -0.6495453715324402, \"post_id\": 10957.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 10957, \"umap_x\": 1.3073054552078247, \"umap_y\": -0.6495453715324402, \"post_id\": 10957.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 10970, \"umap_x\": -0.4347076714038849, \"umap_y\": -0.3130648732185364, \"post_id\": 10970.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 10972, \"umap_x\": -2.837789297103882, \"umap_y\": 0.6548488736152649, \"post_id\": 10972.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10974, \"umap_x\": -2.5968308448791504, \"umap_y\": 1.2585440874099731, \"post_id\": 10974.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 10976, \"umap_x\": -0.14752444624900818, \"umap_y\": 0.7617856860160828, \"post_id\": 10976.0, \"author_id\": 590.0, \"id_y\": 590.0, \"author\": \"Christian Fuchs\", \"author_group\": \"Other\"}, {\"id_x\": 10976, \"umap_x\": -0.14752444624900818, \"umap_y\": 0.7617856860160828, \"post_id\": 10976.0, \"author_id\": 886.0, \"id_y\": 886.0, \"author\": \"Anton Maegerle\", \"author_group\": \"Other\"}, {\"id_x\": 10976, \"umap_x\": -0.14752444624900818, \"umap_y\": 0.7617856860160828, \"post_id\": 10976.0, \"author_id\": 694.0, \"id_y\": 694.0, \"author\": \"Mart\\u00edn Steinhagen\", \"author_group\": \"Other\"}, {\"id_x\": 10978, \"umap_x\": -1.2644060850143433, \"umap_y\": 3.4253177642822266, \"post_id\": 10978.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 10980, \"umap_x\": 0.5257951021194458, \"umap_y\": 5.736039161682129, \"post_id\": 10980.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 10983, \"umap_x\": 0.30392691493034363, \"umap_y\": 5.51962947845459, \"post_id\": 10983.0, \"author_id\": 887.0, \"id_y\": 887.0, \"author\": \"BIG\", \"author_group\": \"Other\"}, {\"id_x\": 10986, \"umap_x\": 0.5912814736366272, \"umap_y\": 6.146500587463379, \"post_id\": 10986.0, \"author_id\": 888.0, \"id_y\": 888.0, \"author\": \"DIG Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 10998, \"umap_x\": -0.10499848425388336, \"umap_y\": 4.049757480621338, \"post_id\": 10998.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 11001, \"umap_x\": -0.9547870755195618, \"umap_y\": 1.2037553787231445, \"post_id\": 11001.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 11001, \"umap_x\": -0.9547870755195618, \"umap_y\": 1.2037553787231445, \"post_id\": 11001.0, \"author_id\": 785.0, \"id_y\": 785.0, \"author\": \"Leipziger Volkszeitung\", \"author_group\": \"Other\"}, {\"id_x\": 11008, \"umap_x\": -2.997086763381958, \"umap_y\": 2.1482203006744385, \"post_id\": 11008.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11011, \"umap_x\": 0.4410301446914673, \"umap_y\": 5.647256851196289, \"post_id\": 11011.0, \"author_id\": 889.0, \"id_y\": 889.0, \"author\": \"g8m\", \"author_group\": \"Other\"}, {\"id_x\": 11016, \"umap_x\": -1.1706457138061523, \"umap_y\": 3.900055408477783, \"post_id\": 11016.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 11019, \"umap_x\": 0.4174942076206207, \"umap_y\": 5.771054267883301, \"post_id\": 11019.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 11028, \"umap_x\": 0.5169069170951843, \"umap_y\": 6.081225395202637, \"post_id\": 11028.0, \"author_id\": 890.0, \"id_y\": 890.0, \"author\": \"Golem-Kollektiv\", \"author_group\": \"Other\"}, {\"id_x\": 11030, \"umap_x\": 1.3523293733596802, \"umap_y\": -0.2703426480293274, \"post_id\": 11030.0, \"author_id\": 891.0, \"id_y\": 891.0, \"author\": \"Andrea Schawe\", \"author_group\": \"Other\"}, {\"id_x\": 11030, \"umap_x\": 1.3523293733596802, \"umap_y\": -0.2703426480293274, \"post_id\": 11030.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 11032, \"umap_x\": 0.11536690592765808, \"umap_y\": 3.4247710704803467, \"post_id\": 11032.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11032, \"umap_x\": 0.11536690592765808, \"umap_y\": 3.4247710704803467, \"post_id\": 11032.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11034, \"umap_x\": 0.8549757599830627, \"umap_y\": 2.0586955547332764, \"post_id\": 11034.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 11034, \"umap_x\": 0.8549757599830627, \"umap_y\": 2.0586955547332764, \"post_id\": 11034.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 11036, \"umap_x\": 0.8225662112236023, \"umap_y\": -0.8580500483512878, \"post_id\": 11036.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 11036, \"umap_x\": 0.8225662112236023, \"umap_y\": -0.8580500483512878, \"post_id\": 11036.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11038, \"umap_x\": -1.9020814895629883, \"umap_y\": -0.8646573424339294, \"post_id\": 11038.0, \"author_id\": 892.0, \"id_y\": 892.0, \"author\": \"Karl R\\u00f6mer\", \"author_group\": \"Other\"}, {\"id_x\": 11038, \"umap_x\": -1.9020814895629883, \"umap_y\": -0.8646573424339294, \"post_id\": 11038.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11040, \"umap_x\": 0.8818774819374084, \"umap_y\": 1.5765600204467773, \"post_id\": 11040.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11051, \"umap_x\": 0.624092698097229, \"umap_y\": 0.9265217781066895, \"post_id\": 11051.0, \"author_id\": 893.0, \"id_y\": 893.0, \"author\": \"Frank Rosengart\", \"author_group\": \"Other\"}, {\"id_x\": 11051, \"umap_x\": 0.624092698097229, \"umap_y\": 0.9265217781066895, \"post_id\": 11051.0, \"author_id\": 894.0, \"id_y\": 894.0, \"author\": \"Chaos Computer Club\", \"author_group\": \"Other\"}, {\"id_x\": 11053, \"umap_x\": 0.47873878479003906, \"umap_y\": 5.89845085144043, \"post_id\": 11053.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 11055, \"umap_x\": 1.3647669553756714, \"umap_y\": -0.37746602296829224, \"post_id\": 11055.0, \"author_id\": 891.0, \"id_y\": 891.0, \"author\": \"Andrea Schawe\", \"author_group\": \"Other\"}, {\"id_x\": 11055, \"umap_x\": 1.3647669553756714, \"umap_y\": -0.37746602296829224, \"post_id\": 11055.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11057, \"umap_x\": -0.24594533443450928, \"umap_y\": -1.2137203216552734, \"post_id\": 11057.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11059, \"umap_x\": -0.1777808517217636, \"umap_y\": -0.9309703707695007, \"post_id\": 11059.0, \"author_id\": 102.0, \"id_y\": 102.0, \"author\": \"Annika Leister\", \"author_group\": \"Other\"}, {\"id_x\": 11066, \"umap_x\": 0.46683427691459656, \"umap_y\": 5.987962245941162, \"post_id\": 11066.0, \"author_id\": 895.0, \"id_y\": 895.0, \"author\": \"Martin Wagner\", \"author_group\": \"Other\"}, {\"id_x\": 11068, \"umap_x\": -1.8547202348709106, \"umap_y\": 0.7447202205657959, \"post_id\": 11068.0, \"author_id\": 896.0, \"id_y\": 896.0, \"author\": \"Connewitzer\", \"author_group\": \"Other\"}, {\"id_x\": 11071, \"umap_x\": 0.21231043338775635, \"umap_y\": 3.9766008853912354, \"post_id\": 11071.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11074, \"umap_x\": 0.2556440830230713, \"umap_y\": 5.694357872009277, \"post_id\": 11074.0, \"author_id\": 897.0, \"id_y\": 897.0, \"author\": \"Michaela Dudley\", \"author_group\": \"Other\"}, {\"id_x\": 11074, \"umap_x\": 0.2556440830230713, \"umap_y\": 5.694357872009277, \"post_id\": 11074.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11084, \"umap_x\": 0.4250538647174835, \"umap_y\": 5.375051021575928, \"post_id\": 11084.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11089, \"umap_x\": 0.3593469560146332, \"umap_y\": 5.738798141479492, \"post_id\": 11089.0, \"author_id\": 898.0, \"id_y\": 898.0, \"author\": \"Gegen die Str\\u00f6mung\", \"author_group\": \"Other\"}, {\"id_x\": 11091, \"umap_x\": 0.37957853078842163, \"umap_y\": 3.466001033782959, \"post_id\": 11091.0, \"author_id\": 899.0, \"id_y\": 899.0, \"author\": \"Soligruppe Nanuk\", \"author_group\": \"Other\"}, {\"id_x\": 11094, \"umap_x\": -1.7716364860534668, \"umap_y\": 4.210587024688721, \"post_id\": 11094.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11097, \"umap_x\": -1.464953064918518, \"umap_y\": 4.132173538208008, \"post_id\": 11097.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 11102, \"umap_x\": -0.6565985679626465, \"umap_y\": 4.818020343780518, \"post_id\": 11102.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11107, \"umap_x\": -0.8591790795326233, \"umap_y\": -0.07489252090454102, \"post_id\": 11107.0, \"author_id\": 825.0, \"id_y\": 825.0, \"author\": \"Nils Lenthe\", \"author_group\": \"Other\"}, {\"id_x\": 11107, \"umap_x\": -0.8591790795326233, \"umap_y\": -0.07489252090454102, \"post_id\": 11107.0, \"author_id\": 881.0, \"id_y\": 881.0, \"author\": \"Peter Maxwill\", \"author_group\": \"Other\"}, {\"id_x\": 11107, \"umap_x\": -0.8591790795326233, \"umap_y\": -0.07489252090454102, \"post_id\": 11107.0, \"author_id\": 900.0, \"id_y\": 900.0, \"author\": \"Nicola Naber\", \"author_group\": \"Other\"}, {\"id_x\": 11111, \"umap_x\": -1.091326355934143, \"umap_y\": 4.26645040512085, \"post_id\": 11111.0, \"author_id\": 901.0, \"id_y\": 901.0, \"author\": \"Katja Hermann\", \"author_group\": \"Other\"}, {\"id_x\": 11111, \"umap_x\": -1.091326355934143, \"umap_y\": 4.26645040512085, \"post_id\": 11111.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 11113, \"umap_x\": -0.9061042666435242, \"umap_y\": 3.573050022125244, \"post_id\": 11113.0, \"author_id\": 647.0, \"id_y\": 647.0, \"author\": \"Yaro Allisat\", \"author_group\": \"Other\"}, {\"id_x\": 11113, \"umap_x\": -0.9061042666435242, \"umap_y\": 3.573050022125244, \"post_id\": 11113.0, \"author_id\": 903.0, \"id_y\": 903.0, \"author\": \"junge Welt\", \"author_group\": \"Other\"}, {\"id_x\": 11115, \"umap_x\": -2.8642351627349854, \"umap_y\": -0.3369710445404053, \"post_id\": 11115.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 11127, \"umap_x\": -0.8177293539047241, \"umap_y\": 1.121525764465332, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 11129, \"umap_x\": -1.2581337690353394, \"umap_y\": 3.8791394233703613, \"post_id\": 11129.0, \"author_id\": 125.0, \"id_y\": 125.0, \"author\": \"Christian Jakob\", \"author_group\": \"Other\"}, {\"id_x\": 11134, \"umap_x\": -1.8947300910949707, \"umap_y\": 1.8757697343826294, \"post_id\": 11134.0, \"author_id\": 904.0, \"id_y\": 904.0, \"author\": \"Deutschlandfunk\", \"author_group\": \"Other\"}, {\"id_x\": 11136, \"umap_x\": -0.3440418243408203, \"umap_y\": 3.202888011932373, \"post_id\": 11136.0, \"author_id\": 905.0, \"id_y\": 905.0, \"author\": \"Timm K\\u00fchn\", \"author_group\": \"Other\"}, {\"id_x\": 11142, \"umap_x\": 0.43300262093544006, \"umap_y\": -0.7036061882972717, \"post_id\": 11142.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 11142, \"umap_x\": 0.43300262093544006, \"umap_y\": -0.7036061882972717, \"post_id\": 11142.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 11144, \"umap_x\": -2.5823090076446533, \"umap_y\": 2.347743272781372, \"post_id\": 11144.0, \"author_id\": 415.0, \"id_y\": 415.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 11146, \"umap_x\": -2.6309309005737305, \"umap_y\": 0.3420070707798004, \"post_id\": 11146.0, \"author_id\": 906.0, \"id_y\": 906.0, \"author\": \"Gruppe Florida\", \"author_group\": \"Other\"}, {\"id_x\": 11146, \"umap_x\": -2.6309309005737305, \"umap_y\": 0.3420070707798004, \"post_id\": 11146.0, \"author_id\": 907.0, \"id_y\": 907.0, \"author\": \"VVN/BdA Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11146, \"umap_x\": -2.6309309005737305, \"umap_y\": 0.3420070707798004, \"post_id\": 11146.0, \"author_id\": 908.0, \"id_y\": 908.0, \"author\": \"Reclaim Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 11146, \"umap_x\": -2.6309309005737305, \"umap_y\": 0.3420070707798004, \"post_id\": 11146.0, \"author_id\": 909.0, \"id_y\": 909.0, \"author\": \"Junges Forum der DIG Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11149, \"umap_x\": 0.3933151066303253, \"umap_y\": 4.315051555633545, \"post_id\": 11149.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11153, \"umap_x\": -3.7854363918304443, \"umap_y\": -1.0082088708877563, \"post_id\": 11153.0, \"author_id\": 647.0, \"id_y\": 647.0, \"author\": \"Yaro Allisat\", \"author_group\": \"Other\"}, {\"id_x\": 11153, \"umap_x\": -3.7854363918304443, \"umap_y\": -1.0082088708877563, \"post_id\": 11153.0, \"author_id\": 910.0, \"id_y\": 910.0, \"author\": \"junge welt\", \"author_group\": \"Other\"}, {\"id_x\": 11155, \"umap_x\": -1.9330424070358276, \"umap_y\": -0.13390690088272095, \"post_id\": 11155.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 11157, \"umap_x\": -3.6599960327148438, \"umap_y\": 2.7054030895233154, \"post_id\": 11157.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 11157, \"umap_x\": -3.6599960327148438, \"umap_y\": 2.7054030895233154, \"post_id\": 11157.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11159, \"umap_x\": 0.6813709735870361, \"umap_y\": 2.6268303394317627, \"post_id\": 11159.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11169, \"umap_x\": -1.472527265548706, \"umap_y\": 4.240683555603027, \"post_id\": 11169.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 11171, \"umap_x\": -0.3155830502510071, \"umap_y\": 1.4861727952957153, \"post_id\": 11171.0, \"author_id\": 719.0, \"id_y\": 719.0, \"author\": \"Thilo Alexe\", \"author_group\": \"Other\"}, {\"id_x\": 11171, \"umap_x\": -0.3155830502510071, \"umap_y\": 1.4861727952957153, \"post_id\": 11171.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11173, \"umap_x\": -1.3592923879623413, \"umap_y\": -0.7689182162284851, \"post_id\": 11173.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 11173, \"umap_x\": -1.3592923879623413, \"umap_y\": -0.7689182162284851, \"post_id\": 11173.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11175, \"umap_x\": -2.394472122192383, \"umap_y\": 1.2758419513702393, \"post_id\": 11175.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 11175, \"umap_x\": -2.394472122192383, \"umap_y\": 1.2758419513702393, \"post_id\": 11175.0, \"author_id\": 911.0, \"id_y\": 911.0, \"author\": \"Jens Pabst\", \"author_group\": \"Other\"}, {\"id_x\": 11175, \"umap_x\": -2.394472122192383, \"umap_y\": 1.2758419513702393, \"post_id\": 11175.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 11177, \"umap_x\": -0.1425747275352478, \"umap_y\": 1.317338466644287, \"post_id\": 11177.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 11177, \"umap_x\": -0.1425747275352478, \"umap_y\": 1.317338466644287, \"post_id\": 11177.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11179, \"umap_x\": -2.7748656272888184, \"umap_y\": 0.7327398061752319, \"post_id\": 11179.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11181, \"umap_x\": -1.782341480255127, \"umap_y\": -1.223512053489685, \"post_id\": 11181.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11181, \"umap_x\": -1.782341480255127, \"umap_y\": -1.223512053489685, \"post_id\": 11181.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11183, \"umap_x\": 1.621525526046753, \"umap_y\": 0.2321012020111084, \"post_id\": 11183.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11183, \"umap_x\": 1.621525526046753, \"umap_y\": 0.2321012020111084, \"post_id\": 11183.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11185, \"umap_x\": -1.1599416732788086, \"umap_y\": -0.7092188000679016, \"post_id\": 11185.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 11185, \"umap_x\": -1.1599416732788086, \"umap_y\": -0.7092188000679016, \"post_id\": 11185.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11193, \"umap_x\": 0.997015655040741, \"umap_y\": 1.5416592359542847, \"post_id\": 11193.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 11193, \"umap_x\": 0.997015655040741, \"umap_y\": 1.5416592359542847, \"post_id\": 11193.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11195, \"umap_x\": -3.240511178970337, \"umap_y\": 1.7835863828659058, \"post_id\": 11195.0, \"author_id\": 912.0, \"id_y\": 912.0, \"author\": \"Erik Peter\", \"author_group\": \"Other\"}, {\"id_x\": 11199, \"umap_x\": -2.0610904693603516, \"umap_y\": -1.4024994373321533, \"post_id\": 11199.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11199, \"umap_x\": -2.0610904693603516, \"umap_y\": -1.4024994373321533, \"post_id\": 11199.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11206, \"umap_x\": 0.5465413331985474, \"umap_y\": 3.634174108505249, \"post_id\": 11206.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11208, \"umap_x\": 0.10838938504457474, \"umap_y\": 4.4747514724731445, \"post_id\": 11208.0, \"author_id\": 913.0, \"id_y\": 913.0, \"author\": \"Rote Flora\", \"author_group\": \"Other\"}, {\"id_x\": 11210, \"umap_x\": 0.6954081654548645, \"umap_y\": 0.8901507258415222, \"post_id\": 11210.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 11212, \"umap_x\": -2.473513126373291, \"umap_y\": 1.332731008529663, \"post_id\": 11212.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11214, \"umap_x\": -2.965744972229004, \"umap_y\": 1.333136796951294, \"post_id\": 11214.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 11214, \"umap_x\": -2.965744972229004, \"umap_y\": 1.333136796951294, \"post_id\": 11214.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11216, \"umap_x\": 1.2472540140151978, \"umap_y\": -0.6576605439186096, \"post_id\": 11216.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 11218, \"umap_x\": -0.5589303970336914, \"umap_y\": -0.07395827025175095, \"post_id\": 11218.0, \"author_id\": 914.0, \"id_y\": 914.0, \"author\": \"Maximilian Pfab\", \"author_group\": \"Other\"}, {\"id_x\": 11218, \"umap_x\": -0.5589303970336914, \"umap_y\": -0.07395827025175095, \"post_id\": 11218.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11220, \"umap_x\": -2.3428871631622314, \"umap_y\": 1.7646812200546265, \"post_id\": 11220.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 11222, \"umap_x\": 0.8403112888336182, \"umap_y\": 2.103452682495117, \"post_id\": 11222.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 11224, \"umap_x\": -3.25706148147583, \"umap_y\": -1.1462607383728027, \"post_id\": 11224.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 11249, \"umap_x\": -2.0018491744995117, \"umap_y\": 1.9999443292617798, \"post_id\": 11249.0, \"author_id\": 165.0, \"id_y\": 165.0, \"author\": \"spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 11252, \"umap_x\": 0.9165019989013672, \"umap_y\": 0.7082626819610596, \"post_id\": 11252.0, \"author_id\": 915.0, \"id_y\": 915.0, \"author\": \"ARD\", \"author_group\": \"Other\"}, {\"id_x\": 11254, \"umap_x\": 0.8535594940185547, \"umap_y\": -0.520359456539154, \"post_id\": 11254.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 11254, \"umap_x\": 0.8535594940185547, \"umap_y\": -0.520359456539154, \"post_id\": 11254.0, \"author_id\": 179.0, \"id_y\": 179.0, \"author\": \"Kai Kollenberg\", \"author_group\": \"Other\"}, {\"id_x\": 11254, \"umap_x\": 0.8535594940185547, \"umap_y\": -0.520359456539154, \"post_id\": 11254.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11256, \"umap_x\": -1.9681527614593506, \"umap_y\": -1.2377896308898926, \"post_id\": 11256.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11256, \"umap_x\": -1.9681527614593506, \"umap_y\": -1.2377896308898926, \"post_id\": 11256.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11258, \"umap_x\": -0.7877556681632996, \"umap_y\": 0.9956400394439697, \"post_id\": 11258.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11260, \"umap_x\": -2.6762678623199463, \"umap_y\": -0.04932505264878273, \"post_id\": 11260.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 11260, \"umap_x\": -2.6762678623199463, \"umap_y\": -0.04932505264878273, \"post_id\": 11260.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11262, \"umap_x\": -1.095574975013733, \"umap_y\": 5.06104040145874, \"post_id\": 11262.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 11264, \"umap_x\": -2.0513505935668945, \"umap_y\": 2.0469672679901123, \"post_id\": 11264.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 11264, \"umap_x\": -2.0513505935668945, \"umap_y\": 2.0469672679901123, \"post_id\": 11264.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11266, \"umap_x\": -1.4888595342636108, \"umap_y\": 0.15778104960918427, \"post_id\": 11266.0, \"author_id\": 916.0, \"id_y\": 916.0, \"author\": \"larkos\", \"author_group\": \"Other\"}, {\"id_x\": 11282, \"umap_x\": -2.5626773834228516, \"umap_y\": 0.4111550450325012, \"post_id\": 11282.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11286, \"umap_x\": 1.0206800699234009, \"umap_y\": 0.6617220044136047, \"post_id\": 11286.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 11288, \"umap_x\": -0.6362559795379639, \"umap_y\": 0.5425352454185486, \"post_id\": 11288.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11290, \"umap_x\": -2.1350183486938477, \"umap_y\": -1.487622618675232, \"post_id\": 11290.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 11290, \"umap_x\": -2.1350183486938477, \"umap_y\": -1.487622618675232, \"post_id\": 11290.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11294, \"umap_x\": -4.322096824645996, \"umap_y\": -0.43417444825172424, \"post_id\": 11294.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 11294, \"umap_x\": -4.322096824645996, \"umap_y\": -0.43417444825172424, \"post_id\": 11294.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11296, \"umap_x\": 0.7445468306541443, \"umap_y\": 2.0321874618530273, \"post_id\": 11296.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 11296, \"umap_x\": 0.7445468306541443, \"umap_y\": 2.0321874618530273, \"post_id\": 11296.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11300, \"umap_x\": -2.5902817249298096, \"umap_y\": -1.5783805847167969, \"post_id\": 11300.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 11300, \"umap_x\": -2.5902817249298096, \"umap_y\": -1.5783805847167969, \"post_id\": 11300.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11302, \"umap_x\": -2.551867723464966, \"umap_y\": 2.232651472091675, \"post_id\": 11302.0, \"author_id\": 847.0, \"id_y\": 847.0, \"author\": \"Holger Wei\\u00df\", \"author_group\": \"Other\"}, {\"id_x\": 11302, \"umap_x\": -2.551867723464966, \"umap_y\": 2.232651472091675, \"post_id\": 11302.0, \"author_id\": 747.0, \"id_y\": 747.0, \"author\": \"Holger Frenzel\", \"author_group\": \"Other\"}, {\"id_x\": 11302, \"umap_x\": -2.551867723464966, \"umap_y\": 2.232651472091675, \"post_id\": 11302.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 11304, \"umap_x\": -2.921445846557617, \"umap_y\": 0.9250540733337402, \"post_id\": 11304.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11306, \"umap_x\": -2.3855245113372803, \"umap_y\": 0.6916642189025879, \"post_id\": 11306.0, \"author_id\": 388.0, \"id_y\": 388.0, \"author\": \"FAZ\", \"author_group\": \"Other\"}, {\"id_x\": 11308, \"umap_x\": -1.6739704608917236, \"umap_y\": 2.787656545639038, \"post_id\": 11308.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11311, \"umap_x\": 0.36733731627464294, \"umap_y\": 3.151393175125122, \"post_id\": 11311.0, \"author_id\": 123.0, \"id_y\": 123.0, \"author\": \"Solidarit\\u00e4tsb\\u00fcndnis Antifa Ost\", \"author_group\": \"Other\"}, {\"id_x\": 11313, \"umap_x\": -0.402697890996933, \"umap_y\": -1.7642297744750977, \"post_id\": 11313.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11315, \"umap_x\": 0.3739506006240845, \"umap_y\": 2.185666561126709, \"post_id\": 11315.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11329, \"umap_x\": -0.7039169669151306, \"umap_y\": 0.009841629303991795, \"post_id\": 11329.0, \"author_id\": 917.0, \"id_y\": 917.0, \"author\": \"Dominique Bielmeier\", \"author_group\": \"Other\"}, {\"id_x\": 11329, \"umap_x\": -0.7039169669151306, \"umap_y\": 0.009841629303991795, \"post_id\": 11329.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11331, \"umap_x\": -0.860165536403656, \"umap_y\": 3.358301877975464, \"post_id\": 11331.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 11331, \"umap_x\": -0.860165536403656, \"umap_y\": 3.358301877975464, \"post_id\": 11331.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 11331, \"umap_x\": -0.860165536403656, \"umap_y\": 3.358301877975464, \"post_id\": 11331.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11333, \"umap_x\": 0.5187828540802002, \"umap_y\": 1.3051210641860962, \"post_id\": 11333.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 11335, \"umap_x\": -2.0275251865386963, \"umap_y\": -1.349277138710022, \"post_id\": 11335.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11335, \"umap_x\": -2.0275251865386963, \"umap_y\": -1.349277138710022, \"post_id\": 11335.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11337, \"umap_x\": 0.8983389735221863, \"umap_y\": 0.6232624650001526, \"post_id\": 11337.0, \"author_id\": 769.0, \"id_y\": 769.0, \"author\": \"Oliver Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 11337, \"umap_x\": 0.8983389735221863, \"umap_y\": 0.6232624650001526, \"post_id\": 11337.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11339, \"umap_x\": 0.07791126519441605, \"umap_y\": 4.385153293609619, \"post_id\": 11339.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11342, \"umap_x\": -0.6402655839920044, \"umap_y\": 4.7854108810424805, \"post_id\": 11342.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11344, \"umap_x\": 0.7509791851043701, \"umap_y\": 1.763382911682129, \"post_id\": 11344.0, \"author_id\": 918.0, \"id_y\": 918.0, \"author\": \"Christina Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 11344, \"umap_x\": 0.7509791851043701, \"umap_y\": 1.763382911682129, \"post_id\": 11344.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 11346, \"umap_x\": 0.14054474234580994, \"umap_y\": 0.6167293787002563, \"post_id\": 11346.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 11346, \"umap_x\": 0.14054474234580994, \"umap_y\": 0.6167293787002563, \"post_id\": 11346.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11363, \"umap_x\": -2.598257541656494, \"umap_y\": 0.39066389203071594, \"post_id\": 11363.0, \"author_id\": 295.0, \"id_y\": 295.0, \"author\": \"Britt Schlehahn\", \"author_group\": \"Other\"}, {\"id_x\": 11366, \"umap_x\": -1.233707308769226, \"umap_y\": 5.195561408996582, \"post_id\": 11366.0, \"author_id\": 919.0, \"id_y\": 919.0, \"author\": \"Lara Wenzel\", \"author_group\": \"Other\"}, {\"id_x\": 11368, \"umap_x\": -1.595696210861206, \"umap_y\": -0.22037047147750854, \"post_id\": 11368.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11370, \"umap_x\": -3.0687625408172607, \"umap_y\": 0.22117643058300018, \"post_id\": 11370.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 11372, \"umap_x\": -1.0113530158996582, \"umap_y\": 5.148677349090576, \"post_id\": 11372.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11374, \"umap_x\": -2.7265427112579346, \"umap_y\": 0.5766853094100952, \"post_id\": 11374.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 11374, \"umap_x\": -2.7265427112579346, \"umap_y\": 0.5766853094100952, \"post_id\": 11374.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 11381, \"umap_x\": -0.5159289836883545, \"umap_y\": 1.48914635181427, \"post_id\": 11381.0, \"author_id\": 920.0, \"id_y\": 920.0, \"author\": \"Antifa Recherche Team Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 11387, \"umap_x\": 0.5671500563621521, \"umap_y\": -0.14650067687034607, \"post_id\": 11387.0, \"author_id\": 921.0, \"id_y\": 921.0, \"author\": \"Julian H\\u00f6lscher\", \"author_group\": \"Other\"}, {\"id_x\": 11387, \"umap_x\": 0.5671500563621521, \"umap_y\": -0.14650067687034607, \"post_id\": 11387.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 11389, \"umap_x\": -2.8964593410491943, \"umap_y\": 5.618171691894531, \"post_id\": 11389.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11394, \"umap_x\": -1.0673620700836182, \"umap_y\": 5.201674461364746, \"post_id\": 11394.0, \"author_id\": 558.0, \"id_y\": 558.0, \"author\": \"Frauke Ott\", \"author_group\": \"Other\"}, {\"id_x\": 11396, \"umap_x\": -2.785151720046997, \"umap_y\": 5.402851581573486, \"post_id\": 11396.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11416, \"umap_x\": -0.3918648660182953, \"umap_y\": 0.12568432092666626, \"post_id\": 11416.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11420, \"umap_x\": 0.8185662627220154, \"umap_y\": 2.9150986671447754, \"post_id\": 11420.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11422, \"umap_x\": -4.092954635620117, \"umap_y\": 4.529733657836914, \"post_id\": 11422.0, \"author_id\": 922.0, \"id_y\": 922.0, \"author\": \"Internationalistische Solidarit\\u00e4\", \"author_group\": \"Other\"}, {\"id_x\": 11425, \"umap_x\": -1.5787103176116943, \"umap_y\": 1.6312416791915894, \"post_id\": 11425.0, \"author_id\": 923.0, \"id_y\": 923.0, \"author\": \"Marianna M.\", \"author_group\": \"Other\"}, {\"id_x\": 11428, \"umap_x\": -1.1083498001098633, \"umap_y\": -0.4742846190929413, \"post_id\": 11428.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 11431, \"umap_x\": -3.0759329795837402, \"umap_y\": 2.6874442100524902, \"post_id\": 11431.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 11434, \"umap_x\": -1.6430078744888306, \"umap_y\": 1.8563092947006226, \"post_id\": 11434.0, \"author_id\": 924.0, \"id_y\": 924.0, \"author\": \"linXXnet\", \"author_group\": \"Other\"}, {\"id_x\": 11440, \"umap_x\": 0.3049178719520569, \"umap_y\": -0.45691126585006714, \"post_id\": 11440.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 11440, \"umap_x\": 0.3049178719520569, \"umap_y\": -0.45691126585006714, \"post_id\": 11440.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 11440, \"umap_x\": 0.3049178719520569, \"umap_y\": -0.45691126585006714, \"post_id\": 11440.0, \"author_id\": 533.0, \"id_y\": 533.0, \"author\": \"Gunnar Klehm\", \"author_group\": \"Other\"}, {\"id_x\": 11440, \"umap_x\": 0.3049178719520569, \"umap_y\": -0.45691126585006714, \"post_id\": 11440.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11442, \"umap_x\": -2.213726043701172, \"umap_y\": 0.38191738724708557, \"post_id\": 11442.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11444, \"umap_x\": 0.34342190623283386, \"umap_y\": 5.296662330627441, \"post_id\": 11444.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11446, \"umap_x\": 0.3839847147464752, \"umap_y\": 5.180272102355957, \"post_id\": 11446.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11446, \"umap_x\": 0.3839847147464752, \"umap_y\": 5.180272102355957, \"post_id\": 11446.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11448, \"umap_x\": -2.5041940212249756, \"umap_y\": 1.3340576887130737, \"post_id\": 11448.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11450, \"umap_x\": -2.8855111598968506, \"umap_y\": -1.478388786315918, \"post_id\": 11450.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11452, \"umap_x\": -2.645533800125122, \"umap_y\": 0.21774978935718536, \"post_id\": 11452.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 11452, \"umap_x\": -2.645533800125122, \"umap_y\": 0.21774978935718536, \"post_id\": 11452.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11454, \"umap_x\": -1.6494345664978027, \"umap_y\": -0.7487318515777588, \"post_id\": 11454.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 11454, \"umap_x\": -1.6494345664978027, \"umap_y\": -0.7487318515777588, \"post_id\": 11454.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11456, \"umap_x\": -1.3464460372924805, \"umap_y\": -0.8016392588615417, \"post_id\": 11456.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 11456, \"umap_x\": -1.3464460372924805, \"umap_y\": -0.8016392588615417, \"post_id\": 11456.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11458, \"umap_x\": -2.0567190647125244, \"umap_y\": 0.19945038855075836, \"post_id\": 11458.0, \"author_id\": 925.0, \"id_y\": 925.0, \"author\": \"Ilka Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 11460, \"umap_x\": -3.8002519607543945, \"umap_y\": 0.4547390043735504, \"post_id\": 11460.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11460, \"umap_x\": -3.8002519607543945, \"umap_y\": 0.4547390043735504, \"post_id\": 11460.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11462, \"umap_x\": -2.273998975753784, \"umap_y\": 0.9621995091438293, \"post_id\": 11462.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 11462, \"umap_x\": -2.273998975753784, \"umap_y\": 0.9621995091438293, \"post_id\": 11462.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11464, \"umap_x\": -3.442296266555786, \"umap_y\": 3.5869357585906982, \"post_id\": 11464.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11466, \"umap_x\": 0.9252645969390869, \"umap_y\": 0.4486049711704254, \"post_id\": 11466.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 11466, \"umap_x\": 0.9252645969390869, \"umap_y\": 0.4486049711704254, \"post_id\": 11466.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11468, \"umap_x\": -3.8421316146850586, \"umap_y\": 0.5089341998100281, \"post_id\": 11468.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11468, \"umap_x\": -3.8421316146850586, \"umap_y\": 0.5089341998100281, \"post_id\": 11468.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11470, \"umap_x\": -2.454310178756714, \"umap_y\": 0.9605230093002319, \"post_id\": 11470.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11472, \"umap_x\": -1.1226260662078857, \"umap_y\": 2.8930580615997314, \"post_id\": 11472.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 11472, \"umap_x\": -1.1226260662078857, \"umap_y\": 2.8930580615997314, \"post_id\": 11472.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11474, \"umap_x\": 0.18244260549545288, \"umap_y\": 4.034255027770996, \"post_id\": 11474.0, \"author_id\": 685.0, \"id_y\": 685.0, \"author\": \"Carina Book\", \"author_group\": \"Other\"}, {\"id_x\": 11474, \"umap_x\": 0.18244260549545288, \"umap_y\": 4.034255027770996, \"post_id\": 11474.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 11476, \"umap_x\": -0.9535365700721741, \"umap_y\": 1.5990735292434692, \"post_id\": 11476.0, \"author_id\": 905.0, \"id_y\": 905.0, \"author\": \"Timm K\\u00fchn\", \"author_group\": \"Other\"}, {\"id_x\": 11478, \"umap_x\": 1.3261501789093018, \"umap_y\": 3.7478673458099365, \"post_id\": 11478.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 11478, \"umap_x\": 1.3261501789093018, \"umap_y\": 3.7478673458099365, \"post_id\": 11478.0, \"author_id\": 809.0, \"id_y\": 809.0, \"author\": \"TAZ\", \"author_group\": \"Other\"}, {\"id_x\": 11480, \"umap_x\": -0.6647087335586548, \"umap_y\": 3.9887003898620605, \"post_id\": 11480.0, \"author_id\": 181.0, \"id_y\": 181.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11482, \"umap_x\": -1.0278393030166626, \"umap_y\": 5.001637935638428, \"post_id\": 11482.0, \"author_id\": 651.0, \"id_y\": 651.0, \"author\": \"RHK\", \"author_group\": \"Other\"}, {\"id_x\": 11484, \"umap_x\": -0.11767587810754776, \"umap_y\": 5.085758209228516, \"post_id\": 11484.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 11487, \"umap_x\": 0.4075832962989807, \"umap_y\": 5.816784858703613, \"post_id\": 11487.0, \"author_id\": 926.0, \"id_y\": 926.0, \"author\": \"Antifaschistische Aktion ZH\", \"author_group\": \"Other\"}, {\"id_x\": 11490, \"umap_x\": 0.41150012612342834, \"umap_y\": 5.308321952819824, \"post_id\": 11490.0, \"author_id\": 927.0, \"id_y\": 927.0, \"author\": \"Johannes Simon\", \"author_group\": \"Other\"}, {\"id_x\": 11512, \"umap_x\": -1.3590892553329468, \"umap_y\": 2.403578996658325, \"post_id\": 11512.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 11512, \"umap_x\": -1.3590892553329468, \"umap_y\": 2.403578996658325, \"post_id\": 11512.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 11515, \"umap_x\": 1.3027989864349365, \"umap_y\": -0.16556543111801147, \"post_id\": 11515.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11517, \"umap_x\": -1.5919986963272095, \"umap_y\": 2.859226703643799, \"post_id\": 11517.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11522, \"umap_x\": -1.6631580591201782, \"umap_y\": -0.48259004950523376, \"post_id\": 11522.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11522, \"umap_x\": -1.6631580591201782, \"umap_y\": -0.48259004950523376, \"post_id\": 11522.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11524, \"umap_x\": -0.09404940158128738, \"umap_y\": -0.8925145268440247, \"post_id\": 11524.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 11524, \"umap_x\": -0.09404940158128738, \"umap_y\": -0.8925145268440247, \"post_id\": 11524.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11526, \"umap_x\": -3.158173084259033, \"umap_y\": -0.16587793827056885, \"post_id\": 11526.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 11526, \"umap_x\": -3.158173084259033, \"umap_y\": -0.16587793827056885, \"post_id\": 11526.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11528, \"umap_x\": -1.855924367904663, \"umap_y\": -0.06776401400566101, \"post_id\": 11528.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 11528, \"umap_x\": -1.855924367904663, \"umap_y\": -0.06776401400566101, \"post_id\": 11528.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11533, \"umap_x\": -1.4415727853775024, \"umap_y\": 0.066193126142025, \"post_id\": 11533.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 11535, \"umap_x\": -2.8553030490875244, \"umap_y\": 5.601981163024902, \"post_id\": 11535.0, \"author_id\": 929.0, \"id_y\": 929.0, \"author\": \"Kyriakos X\", \"author_group\": \"Other\"}, {\"id_x\": 11538, \"umap_x\": -2.960076332092285, \"umap_y\": -1.5160218477249146, \"post_id\": 11538.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11538, \"umap_x\": -2.960076332092285, \"umap_y\": -1.5160218477249146, \"post_id\": 11538.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 11538, \"umap_x\": -2.960076332092285, \"umap_y\": -1.5160218477249146, \"post_id\": 11538.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 11542, \"umap_x\": 0.4978213906288147, \"umap_y\": -0.12368221580982208, \"post_id\": 11542.0, \"author_id\": 930.0, \"id_y\": 930.0, \"author\": \"Josa Mania Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 11548, \"umap_x\": -1.2241097688674927, \"umap_y\": 3.6275174617767334, \"post_id\": 11548.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 11553, \"umap_x\": -4.635693073272705, \"umap_y\": 4.428913593292236, \"post_id\": 11553.0, \"author_id\": 583.0, \"id_y\": 583.0, \"author\": \"kbe\", \"author_group\": \"Other\"}, {\"id_x\": 11556, \"umap_x\": -4.233758926391602, \"umap_y\": 4.697606086730957, \"post_id\": 11556.0, \"author_id\": 447.0, \"id_y\": 447.0, \"author\": \"ANF NEWS\", \"author_group\": \"Other\"}, {\"id_x\": 11561, \"umap_x\": 1.9271478652954102, \"umap_y\": 3.432208776473999, \"post_id\": 11561.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 11565, \"umap_x\": 0.188883975148201, \"umap_y\": 5.69651460647583, \"post_id\": 11565.0, \"author_id\": 931.0, \"id_y\": 931.0, \"author\": \"Atari-Kollektiv\", \"author_group\": \"Other\"}, {\"id_x\": 11574, \"umap_x\": -1.2503266334533691, \"umap_y\": 4.848448753356934, \"post_id\": 11574.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11578, \"umap_x\": -1.5475488901138306, \"umap_y\": 3.944983720779419, \"post_id\": 11578.0, \"author_id\": 932.0, \"id_y\": 932.0, \"author\": \"AusdemWeg\", \"author_group\": \"Other\"}, {\"id_x\": 11581, \"umap_x\": -0.5838502049446106, \"umap_y\": 2.1415205001831055, \"post_id\": 11581.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 11583, \"umap_x\": -1.1101112365722656, \"umap_y\": 4.731020450592041, \"post_id\": 11583.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11591, \"umap_x\": -1.425123691558838, \"umap_y\": 5.368466377258301, \"post_id\": 11591.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 11594, \"umap_x\": 0.3960590958595276, \"umap_y\": 0.16375508904457092, \"post_id\": 11594.0, \"author_id\": 168.0, \"id_y\": 168.0, \"author\": \"Josef Hufelschulte\", \"author_group\": \"Other\"}, {\"id_x\": 11594, \"umap_x\": 0.3960590958595276, \"umap_y\": 0.16375508904457092, \"post_id\": 11594.0, \"author_id\": 933.0, \"id_y\": 933.0, \"author\": \"focus\", \"author_group\": \"Other\"}, {\"id_x\": 11596, \"umap_x\": -0.12856559455394745, \"umap_y\": 0.035479746758937836, \"post_id\": 11596.0, \"author_id\": 306.0, \"id_y\": 306.0, \"author\": \"Felix Huesmann\", \"author_group\": \"Other\"}, {\"id_x\": 11598, \"umap_x\": 0.09692472219467163, \"umap_y\": -0.3102072775363922, \"post_id\": 11598.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 11600, \"umap_x\": -0.8133227229118347, \"umap_y\": -1.4488365650177002, \"post_id\": 11600.0, \"author_id\": 497.0, \"id_y\": 497.0, \"author\": \"Philipp Brendel\", \"author_group\": \"Other\"}, {\"id_x\": 11600, \"umap_x\": -0.8133227229118347, \"umap_y\": -1.4488365650177002, \"post_id\": 11600.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 11602, \"umap_x\": -0.15862779319286346, \"umap_y\": 2.4601893424987793, \"post_id\": 11602.0, \"author_id\": 934.0, \"id_y\": 934.0, \"author\": \"Erik T\\u00f6pfer\", \"author_group\": \"Other\"}, {\"id_x\": 11602, \"umap_x\": -0.15862779319286346, \"umap_y\": 2.4601893424987793, \"post_id\": 11602.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11604, \"umap_x\": -0.4472475051879883, \"umap_y\": 0.1217142790555954, \"post_id\": 11604.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11606, \"umap_x\": -1.0134680271148682, \"umap_y\": 5.284124851226807, \"post_id\": 11606.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11608, \"umap_x\": -0.7852268218994141, \"umap_y\": 4.947062969207764, \"post_id\": 11608.0, \"author_id\": 935.0, \"id_y\": 935.0, \"author\": \"Johannes Domh\\u00f6ver\", \"author_group\": \"Other\"}, {\"id_x\": 11610, \"umap_x\": 0.43445882201194763, \"umap_y\": 1.9269441366195679, \"post_id\": 11610.0, \"author_id\": 620.0, \"id_y\": 620.0, \"author\": \"Anna-Louise Lang\", \"author_group\": \"Other\"}, {\"id_x\": 11612, \"umap_x\": -1.1922047138214111, \"umap_y\": 1.366409420967102, \"post_id\": 11612.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 11614, \"umap_x\": 0.10927598178386688, \"umap_y\": -0.3823336064815521, \"post_id\": 11614.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11625, \"umap_x\": -1.7195158004760742, \"umap_y\": 3.101963758468628, \"post_id\": 11625.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 11639, \"umap_x\": -2.0946483612060547, \"umap_y\": 0.25583747029304504, \"post_id\": 11639.0, \"author_id\": 312.0, \"id_y\": 312.0, \"author\": \"Autonome Gruppen\", \"author_group\": \"Other\"}, {\"id_x\": 11644, \"umap_x\": 1.1476707458496094, \"umap_y\": 0.8144634962081909, \"post_id\": 11644.0, \"author_id\": 936.0, \"id_y\": 936.0, \"author\": \"Sebastian Erb\", \"author_group\": \"Other\"}, {\"id_x\": 11644, \"umap_x\": 1.1476707458496094, \"umap_y\": 0.8144634962081909, \"post_id\": 11644.0, \"author_id\": 937.0, \"id_y\": 937.0, \"author\": \"Lena Kampf\", \"author_group\": \"Other\"}, {\"id_x\": 11644, \"umap_x\": 1.1476707458496094, \"umap_y\": 0.8144634962081909, \"post_id\": 11644.0, \"author_id\": 938.0, \"id_y\": 938.0, \"author\": \"Sara Simons\", \"author_group\": \"Other\"}, {\"id_x\": 11644, \"umap_x\": 1.1476707458496094, \"umap_y\": 0.8144634962081909, \"post_id\": 11644.0, \"author_id\": 939.0, \"id_y\": 939.0, \"author\": \"S\\u00fcddeutsche\", \"author_group\": \"Other\"}, {\"id_x\": 11646, \"umap_x\": -0.3446334898471832, \"umap_y\": 0.9618131518363953, \"post_id\": 11646.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 11648, \"umap_x\": -0.0464559942483902, \"umap_y\": 2.7604310512542725, \"post_id\": 11648.0, \"author_id\": 940.0, \"id_y\": 940.0, \"author\": \"Nina Monecke\", \"author_group\": \"Other\"}, {\"id_x\": 11648, \"umap_x\": -0.0464559942483902, \"umap_y\": 2.7604310512542725, \"post_id\": 11648.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 11650, \"umap_x\": -0.9945631623268127, \"umap_y\": 4.0086469650268555, \"post_id\": 11650.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11657, \"umap_x\": -1.1163796186447144, \"umap_y\": -0.7919065356254578, \"post_id\": 11657.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11659, \"umap_x\": -0.2780362069606781, \"umap_y\": -0.23917187750339508, \"post_id\": 11659.0, \"author_id\": 941.0, \"id_y\": 941.0, \"author\": \"Spiegel Online\", \"author_group\": \"Other\"}, {\"id_x\": 11659, \"umap_x\": -0.2780362069606781, \"umap_y\": -0.23917187750339508, \"post_id\": 11659.0, \"author_id\": 881.0, \"id_y\": 881.0, \"author\": \"Peter Maxwill\", \"author_group\": \"Other\"}, {\"id_x\": 11659, \"umap_x\": -0.2780362069606781, \"umap_y\": -0.23917187750339508, \"post_id\": 11659.0, \"author_id\": 900.0, \"id_y\": 900.0, \"author\": \"Nicola Naber\", \"author_group\": \"Other\"}, {\"id_x\": 11662, \"umap_x\": -0.505194902420044, \"umap_y\": 1.6303435564041138, \"post_id\": 11662.0, \"author_id\": 942.0, \"id_y\": 942.0, \"author\": \"Ladenschlussb\\u00fcndnis\", \"author_group\": \"Other\"}, {\"id_x\": 11665, \"umap_x\": -1.7677942514419556, \"umap_y\": -0.11894048005342484, \"post_id\": 11665.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11670, \"umap_x\": 0.17423997819423676, \"umap_y\": 3.918565273284912, \"post_id\": 11670.0, \"author_id\": 943.0, \"id_y\": 943.0, \"author\": \"Leipziger Antifagruppe\", \"author_group\": \"Other\"}, {\"id_x\": 11676, \"umap_x\": -0.3587910830974579, \"umap_y\": 3.922565221786499, \"post_id\": 11676.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11680, \"umap_x\": 1.882982850074768, \"umap_y\": 3.425236225128174, \"post_id\": 11680.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 11684, \"umap_x\": -2.165609836578369, \"umap_y\": 3.1163198947906494, \"post_id\": 11684.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11694, \"umap_x\": 0.4622986912727356, \"umap_y\": 0.3081166446208954, \"post_id\": 11694.0, \"author_id\": 863.0, \"id_y\": 863.0, \"author\": \"flp\", \"author_group\": \"Other\"}, {\"id_x\": 11697, \"umap_x\": -0.4118465185165405, \"umap_y\": 0.4000881612300873, \"post_id\": 11697.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 11699, \"umap_x\": 1.5940062999725342, \"umap_y\": 0.5024809837341309, \"post_id\": 11699.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11701, \"umap_x\": -2.803260326385498, \"umap_y\": 1.2752708196640015, \"post_id\": 11701.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11701, \"umap_x\": -2.803260326385498, \"umap_y\": 1.2752708196640015, \"post_id\": 11701.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11703, \"umap_x\": 1.3727911710739136, \"umap_y\": -2.4124467372894287, \"post_id\": 11703.0, \"author_id\": 944.0, \"id_y\": 944.0, \"author\": \"Tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 11705, \"umap_x\": 1.682389497756958, \"umap_y\": 3.615422487258911, \"post_id\": 11705.0, \"author_id\": 905.0, \"id_y\": 905.0, \"author\": \"Timm K\\u00fchn\", \"author_group\": \"Other\"}, {\"id_x\": 11707, \"umap_x\": -2.4979379177093506, \"umap_y\": 1.4729115962982178, \"post_id\": 11707.0, \"author_id\": 945.0, \"id_y\": 945.0, \"author\": \"David Muschenich\", \"author_group\": \"Other\"}, {\"id_x\": 11709, \"umap_x\": -2.2868971824645996, \"umap_y\": 2.4030215740203857, \"post_id\": 11709.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 11711, \"umap_x\": -0.29604828357696533, \"umap_y\": 0.31628766655921936, \"post_id\": 11711.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 11711, \"umap_x\": -0.29604828357696533, \"umap_y\": 0.31628766655921936, \"post_id\": 11711.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11713, \"umap_x\": 0.8504341244697571, \"umap_y\": -0.8596664071083069, \"post_id\": 11713.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 11713, \"umap_x\": 0.8504341244697571, \"umap_y\": -0.8596664071083069, \"post_id\": 11713.0, \"author_id\": 946.0, \"id_y\": 946.0, \"author\": \"LZ\", \"author_group\": \"Other\"}, {\"id_x\": 11715, \"umap_x\": -3.1781184673309326, \"umap_y\": -0.5605661869049072, \"post_id\": 11715.0, \"author_id\": 114.0, \"id_y\": 114.0, \"author\": \"Jens Eumann\", \"author_group\": \"Other\"}, {\"id_x\": 11715, \"umap_x\": -3.1781184673309326, \"umap_y\": -0.5605661869049072, \"post_id\": 11715.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 11731, \"umap_x\": -3.6344690322875977, \"umap_y\": -1.0468686819076538, \"post_id\": 11731.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 11733, \"umap_x\": -2.1563644409179688, \"umap_y\": -0.9127853512763977, \"post_id\": 11733.0, \"author_id\": 518.0, \"id_y\": 518.0, \"author\": \"Eric Mittmann\", \"author_group\": \"Other\"}, {\"id_x\": 11733, \"umap_x\": -2.1563644409179688, \"umap_y\": -0.9127853512763977, \"post_id\": 11733.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11735, \"umap_x\": -1.9558525085449219, \"umap_y\": -0.6319781541824341, \"post_id\": 11735.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 11735, \"umap_x\": -1.9558525085449219, \"umap_y\": -0.6319781541824341, \"post_id\": 11735.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11737, \"umap_x\": -0.9327372312545776, \"umap_y\": 1.3554811477661133, \"post_id\": 11737.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 11737, \"umap_x\": -0.9327372312545776, \"umap_y\": 1.3554811477661133, \"post_id\": 11737.0, \"author_id\": 947.0, \"id_y\": 947.0, \"author\": \"Andre Schramm\", \"author_group\": \"Other\"}, {\"id_x\": 11737, \"umap_x\": -0.9327372312545776, \"umap_y\": 1.3554811477661133, \"post_id\": 11737.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11739, \"umap_x\": -1.555678367614746, \"umap_y\": -1.2335768938064575, \"post_id\": 11739.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 11739, \"umap_x\": -1.555678367614746, \"umap_y\": -1.2335768938064575, \"post_id\": 11739.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11743, \"umap_x\": -1.594746470451355, \"umap_y\": -0.5165842771530151, \"post_id\": 11743.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11746, \"umap_x\": 0.26462242007255554, \"umap_y\": 4.012269496917725, \"post_id\": 11746.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11755, \"umap_x\": -0.853532612323761, \"umap_y\": 1.4848744869232178, \"post_id\": 11755.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11757, \"umap_x\": 0.9688710570335388, \"umap_y\": 3.7839231491088867, \"post_id\": 11757.0, \"author_id\": 948.0, \"id_y\": 948.0, \"author\": \"Salt City Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 11759, \"umap_x\": -1.019202709197998, \"umap_y\": 1.6307909488677979, \"post_id\": 11759.0, \"author_id\": 949.0, \"id_y\": 949.0, \"author\": \"Anton Benz\", \"author_group\": \"Other\"}, {\"id_x\": 11759, \"umap_x\": -1.019202709197998, \"umap_y\": 1.6307909488677979, \"post_id\": 11759.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11761, \"umap_x\": -0.14360399544239044, \"umap_y\": 4.886936664581299, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 11763, \"umap_x\": -0.5277281999588013, \"umap_y\": 4.3653788566589355, \"post_id\": 11763.0, \"author_id\": 673.0, \"id_y\": 673.0, \"author\": \"Sebastian B\\u00e4hr\", \"author_group\": \"Other\"}, {\"id_x\": 11765, \"umap_x\": -1.655061960220337, \"umap_y\": 3.973881244659424, \"post_id\": 11765.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 11768, \"umap_x\": -2.5251760482788086, \"umap_y\": 1.6834492683410645, \"post_id\": 11768.0, \"author_id\": 950.0, \"id_y\": 950.0, \"author\": \"Minh Schredle\", \"author_group\": \"Other\"}, {\"id_x\": 11768, \"umap_x\": -2.5251760482788086, \"umap_y\": 1.6834492683410645, \"post_id\": 11768.0, \"author_id\": 951.0, \"id_y\": 951.0, \"author\": \"Kontext\", \"author_group\": \"Other\"}, {\"id_x\": 11772, \"umap_x\": 0.5348625779151917, \"umap_y\": -0.2739889919757843, \"post_id\": 11772.0, \"author_id\": 682.0, \"id_y\": 682.0, \"author\": \"Matthias Meisner\", \"author_group\": \"Other\"}, {\"id_x\": 11774, \"umap_x\": 1.4076437950134277, \"umap_y\": 3.505587339401245, \"post_id\": 11774.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 11777, \"umap_x\": -0.053933851420879364, \"umap_y\": 4.340836048126221, \"post_id\": 11777.0, \"author_id\": 952.0, \"id_y\": 952.0, \"author\": \"Gerald Gr\\u00fcneklee\", \"author_group\": \"Other\"}, {\"id_x\": 11780, \"umap_x\": -0.39323633909225464, \"umap_y\": 2.3064138889312744, \"post_id\": 11780.0, \"author_id\": 953.0, \"id_y\": 953.0, \"author\": \"Franco\", \"author_group\": \"Other\"}, {\"id_x\": 11783, \"umap_x\": -1.3338472843170166, \"umap_y\": 0.6374457478523254, \"post_id\": 11783.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11791, \"umap_x\": -0.37694674730300903, \"umap_y\": 0.8408565521240234, \"post_id\": 11791.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 11794, \"umap_x\": -3.113563060760498, \"umap_y\": 0.02982589602470398, \"post_id\": 11794.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11797, \"umap_x\": -2.7231950759887695, \"umap_y\": 0.67823326587677, \"post_id\": 11797.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11800, \"umap_x\": -2.788191318511963, \"umap_y\": 5.44785213470459, \"post_id\": 11800.0, \"author_id\": 954.0, \"id_y\": 954.0, \"author\": \"Solidarity Collectives\", \"author_group\": \"Other\"}, {\"id_x\": 11803, \"umap_x\": -1.2032499313354492, \"umap_y\": 2.6792221069335938, \"post_id\": 11803.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11806, \"umap_x\": 0.3661655783653259, \"umap_y\": 5.7533721923828125, \"post_id\": 11806.0, \"author_id\": 955.0, \"id_y\": 955.0, \"author\": \"Sebastian Leber\", \"author_group\": \"Other\"}, {\"id_x\": 11808, \"umap_x\": -0.29096299409866333, \"umap_y\": -0.686786949634552, \"post_id\": 11808.0, \"author_id\": 941.0, \"id_y\": 941.0, \"author\": \"Spiegel Online\", \"author_group\": \"Other\"}, {\"id_x\": 11808, \"umap_x\": -0.29096299409866333, \"umap_y\": -0.686786949634552, \"post_id\": 11808.0, \"author_id\": 733.0, \"id_y\": 733.0, \"author\": \"Ann-Katrin M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 11808, \"umap_x\": -0.29096299409866333, \"umap_y\": -0.686786949634552, \"post_id\": 11808.0, \"author_id\": 734.0, \"id_y\": 734.0, \"author\": \"Sven R\\u00f6bel\", \"author_group\": \"Other\"}, {\"id_x\": 11808, \"umap_x\": -0.29096299409866333, \"umap_y\": -0.686786949634552, \"post_id\": 11808.0, \"author_id\": 448.0, \"id_y\": 448.0, \"author\": \"Steffen Winter\", \"author_group\": \"Other\"}, {\"id_x\": 11812, \"umap_x\": -1.5405056476593018, \"umap_y\": -0.12295106798410416, \"post_id\": 11812.0, \"author_id\": 819.0, \"id_y\": 819.0, \"author\": \"Marcus Engert\", \"author_group\": \"Other\"}, {\"id_x\": 11812, \"umap_x\": -1.5405056476593018, \"umap_y\": -0.12295106798410416, \"post_id\": 11812.0, \"author_id\": 501.0, \"id_y\": 501.0, \"author\": \"Lucas Grothe\", \"author_group\": \"Other\"}, {\"id_x\": 11812, \"umap_x\": -1.5405056476593018, \"umap_y\": -0.12295106798410416, \"post_id\": 11812.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 11812, \"umap_x\": -1.5405056476593018, \"umap_y\": -0.12295106798410416, \"post_id\": 11812.0, \"author_id\": 659.0, \"id_y\": 659.0, \"author\": \"MDR Investigativ\", \"author_group\": \"Other\"}, {\"id_x\": 11814, \"umap_x\": 0.6580936312675476, \"umap_y\": 2.2829651832580566, \"post_id\": 11814.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11814, \"umap_x\": 0.6580936312675476, \"umap_y\": 2.2829651832580566, \"post_id\": 11814.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11816, \"umap_x\": -1.694286584854126, \"umap_y\": 1.0820629596710205, \"post_id\": 11816.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 11816, \"umap_x\": -1.694286584854126, \"umap_y\": 1.0820629596710205, \"post_id\": 11816.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11822, \"umap_x\": -1.6504335403442383, \"umap_y\": 2.9971981048583984, \"post_id\": 11822.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11825, \"umap_x\": 0.7640455961227417, \"umap_y\": 1.2222354412078857, \"post_id\": 11825.0, \"author_id\": 956.0, \"id_y\": 956.0, \"author\": \"Fl\\u00fcchtlingsrat\", \"author_group\": \"Other\"}, {\"id_x\": 11827, \"umap_x\": -0.48387306928634644, \"umap_y\": 0.8744218349456787, \"post_id\": 11827.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11827, \"umap_x\": -0.48387306928634644, \"umap_y\": 0.8744218349456787, \"post_id\": 11827.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11829, \"umap_x\": -0.9061470627784729, \"umap_y\": -1.1043767929077148, \"post_id\": 11829.0, \"author_id\": 530.0, \"id_y\": 530.0, \"author\": \"Michael Bartsch\", \"author_group\": \"Other\"}, {\"id_x\": 11831, \"umap_x\": 0.15792718529701233, \"umap_y\": 0.9745110273361206, \"post_id\": 11831.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 11831, \"umap_x\": 0.15792718529701233, \"umap_y\": 0.9745110273361206, \"post_id\": 11831.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11833, \"umap_x\": 0.8597750067710876, \"umap_y\": -0.5623726844787598, \"post_id\": 11833.0, \"author_id\": 945.0, \"id_y\": 945.0, \"author\": \"David Muschenich\", \"author_group\": \"Other\"}, {\"id_x\": 11835, \"umap_x\": 1.3594812154769897, \"umap_y\": -0.27441999316215515, \"post_id\": 11835.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 11835, \"umap_x\": 1.3594812154769897, \"umap_y\": -0.27441999316215515, \"post_id\": 11835.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11838, \"umap_x\": -2.8016653060913086, \"umap_y\": -1.7651424407958984, \"post_id\": 11838.0, \"author_id\": 855.0, \"id_y\": 855.0, \"author\": \"Jakob Springfeld\", \"author_group\": \"Other\"}, {\"id_x\": 11844, \"umap_x\": -1.5772031545639038, \"umap_y\": 3.200807571411133, \"post_id\": 11844.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11847, \"umap_x\": -2.895188570022583, \"umap_y\": 2.9629223346710205, \"post_id\": 11847.0, \"author_id\": 957.0, \"id_y\": 957.0, \"author\": \"Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 11856, \"umap_x\": -2.8162856101989746, \"umap_y\": 3.025348663330078, \"post_id\": 11856.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 11859, \"umap_x\": -2.561070442199707, \"umap_y\": 1.3356142044067383, \"post_id\": 11859.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 11859, \"umap_x\": -2.561070442199707, \"umap_y\": 1.3356142044067383, \"post_id\": 11859.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 11861, \"umap_x\": 0.24044643342494965, \"umap_y\": -0.27854815125465393, \"post_id\": 11861.0, \"author_id\": 959.0, \"id_y\": 959.0, \"author\": \"J\\u00f6rg Schurig\", \"author_group\": \"Other\"}, {\"id_x\": 11863, \"umap_x\": -1.74575936794281, \"umap_y\": 1.758965253829956, \"post_id\": 11863.0, \"author_id\": 516.0, \"id_y\": 516.0, \"author\": \"Roman Lehberger\", \"author_group\": \"Other\"}, {\"id_x\": 11863, \"umap_x\": -1.74575936794281, \"umap_y\": 1.758965253829956, \"post_id\": 11863.0, \"author_id\": 734.0, \"id_y\": 734.0, \"author\": \"Sven R\\u00f6bel\", \"author_group\": \"Other\"}, {\"id_x\": 11863, \"umap_x\": -1.74575936794281, \"umap_y\": 1.758965253829956, \"post_id\": 11863.0, \"author_id\": 735.0, \"id_y\": 735.0, \"author\": \"Wolf Wiedmann-Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 11863, \"umap_x\": -1.74575936794281, \"umap_y\": 1.758965253829956, \"post_id\": 11863.0, \"author_id\": 941.0, \"id_y\": 941.0, \"author\": \"Spiegel Online\", \"author_group\": \"Other\"}, {\"id_x\": 11866, \"umap_x\": -1.7577147483825684, \"umap_y\": 1.6403706073760986, \"post_id\": 11866.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11868, \"umap_x\": -0.5539594888687134, \"umap_y\": 2.8165576457977295, \"post_id\": 11868.0, \"author_id\": 248.0, \"id_y\": 248.0, \"author\": \"schwi\", \"author_group\": \"Other\"}, {\"id_x\": 11875, \"umap_x\": -1.6725765466690063, \"umap_y\": 2.839231491088867, \"post_id\": 11875.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 11877, \"umap_x\": 0.23277026414871216, \"umap_y\": 3.336183786392212, \"post_id\": 11877.0, \"author_id\": 960.0, \"id_y\": 960.0, \"author\": \"solidarische Genoss\", \"author_group\": \"Other\"}, {\"id_x\": 11883, \"umap_x\": 0.8311450481414795, \"umap_y\": 2.920217990875244, \"post_id\": 11883.0, \"author_id\": 559.0, \"id_y\": 559.0, \"author\": \"Budapest Antifascist Solidarity Committee\", \"author_group\": \"Other\"}, {\"id_x\": 11885, \"umap_x\": 1.3569005727767944, \"umap_y\": 3.6920175552368164, \"post_id\": 11885.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 11885, \"umap_x\": 1.3569005727767944, \"umap_y\": 3.6920175552368164, \"post_id\": 11885.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 11893, \"umap_x\": 0.6818456053733826, \"umap_y\": 2.6562304496765137, \"post_id\": 11893.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11895, \"umap_x\": 0.6307997703552246, \"umap_y\": 2.3405215740203857, \"post_id\": 11895.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11895, \"umap_x\": 0.6307997703552246, \"umap_y\": 2.3405215740203857, \"post_id\": 11895.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11897, \"umap_x\": -0.6235761642456055, \"umap_y\": 1.383597493171692, \"post_id\": 11897.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 11897, \"umap_x\": -0.6235761642456055, \"umap_y\": 1.383597493171692, \"post_id\": 11897.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 11899, \"umap_x\": -0.9136515259742737, \"umap_y\": -0.019046353176236153, \"post_id\": 11899.0, \"author_id\": 597.0, \"id_y\": 597.0, \"author\": \"Andreas Dunte\", \"author_group\": \"Other\"}, {\"id_x\": 11899, \"umap_x\": -0.9136515259742737, \"umap_y\": -0.019046353176236153, \"post_id\": 11899.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11902, \"umap_x\": 1.1502913236618042, \"umap_y\": -0.640146791934967, \"post_id\": 11902.0, \"author_id\": 837.0, \"id_y\": 837.0, \"author\": \"RBB\", \"author_group\": \"Other\"}, {\"id_x\": 11904, \"umap_x\": -0.0736488476395607, \"umap_y\": -1.0022615194320679, \"post_id\": 11904.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 11906, \"umap_x\": 1.2707626819610596, \"umap_y\": 0.3769409656524658, \"post_id\": 11906.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 11906, \"umap_x\": 1.2707626819610596, \"umap_y\": 0.3769409656524658, \"post_id\": 11906.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11908, \"umap_x\": -2.7808103561401367, \"umap_y\": 2.014266014099121, \"post_id\": 11908.0, \"author_id\": 505.0, \"id_y\": 505.0, \"author\": \"Marco Br\\u00e1s Dos Santos\", \"author_group\": \"Other\"}, {\"id_x\": 11910, \"umap_x\": -3.19079327583313, \"umap_y\": 3.71073842048645, \"post_id\": 11910.0, \"author_id\": 891.0, \"id_y\": 891.0, \"author\": \"Andrea Schawe\", \"author_group\": \"Other\"}, {\"id_x\": 11910, \"umap_x\": -3.19079327583313, \"umap_y\": 3.71073842048645, \"post_id\": 11910.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11912, \"umap_x\": -2.1070406436920166, \"umap_y\": -0.5894532799720764, \"post_id\": 11912.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11912, \"umap_x\": -2.1070406436920166, \"umap_y\": -0.5894532799720764, \"post_id\": 11912.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11914, \"umap_x\": -1.9987086057662964, \"umap_y\": -1.2097302675247192, \"post_id\": 11914.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11914, \"umap_x\": -1.9987086057662964, \"umap_y\": -1.2097302675247192, \"post_id\": 11914.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11916, \"umap_x\": -2.458493232727051, \"umap_y\": -0.7425464391708374, \"post_id\": 11916.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11916, \"umap_x\": -2.458493232727051, \"umap_y\": -0.7425464391708374, \"post_id\": 11916.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11918, \"umap_x\": -0.9842082262039185, \"umap_y\": 0.2105906903743744, \"post_id\": 11918.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 11918, \"umap_x\": -0.9842082262039185, \"umap_y\": 0.2105906903743744, \"post_id\": 11918.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11920, \"umap_x\": -1.8541278839111328, \"umap_y\": -0.7690970301628113, \"post_id\": 11920.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 11920, \"umap_x\": -1.8541278839111328, \"umap_y\": -0.7690970301628113, \"post_id\": 11920.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11922, \"umap_x\": -1.7357499599456787, \"umap_y\": -0.8242823481559753, \"post_id\": 11922.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11922, \"umap_x\": -1.7357499599456787, \"umap_y\": -0.8242823481559753, \"post_id\": 11922.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11924, \"umap_x\": -1.5845708847045898, \"umap_y\": -1.1554992198944092, \"post_id\": 11924.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11926, \"umap_x\": -1.9197132587432861, \"umap_y\": -0.302408903837204, \"post_id\": 11926.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 11926, \"umap_x\": -1.9197132587432861, \"umap_y\": -0.302408903837204, \"post_id\": 11926.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 11929, \"umap_x\": -1.6796613931655884, \"umap_y\": 0.4841119647026062, \"post_id\": 11929.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11932, \"umap_x\": -1.8195881843566895, \"umap_y\": 0.7993186116218567, \"post_id\": 11932.0, \"author_id\": 961.0, \"id_y\": 961.0, \"author\": \"Roxana Irrgang\", \"author_group\": \"Other\"}, {\"id_x\": 11932, \"umap_x\": -1.8195881843566895, \"umap_y\": 0.7993186116218567, \"post_id\": 11932.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 11934, \"umap_x\": 0.8053505420684814, \"umap_y\": 1.0242408514022827, \"post_id\": 11934.0, \"author_id\": 962.0, \"id_y\": 962.0, \"author\": \"Laurin Lorenz\", \"author_group\": \"Other\"}, {\"id_x\": 11934, \"umap_x\": 0.8053505420684814, \"umap_y\": 1.0242408514022827, \"post_id\": 11934.0, \"author_id\": 963.0, \"id_y\": 963.0, \"author\": \"Fabian Schmid\", \"author_group\": \"Other\"}, {\"id_x\": 11936, \"umap_x\": 1.6017849445343018, \"umap_y\": 0.25929751992225647, \"post_id\": 11936.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 11938, \"umap_x\": 1.339203953742981, \"umap_y\": 3.636702299118042, \"post_id\": 11938.0, \"author_id\": 964.0, \"id_y\": 964.0, \"author\": \"Marcel Laskus\", \"author_group\": \"Other\"}, {\"id_x\": 11938, \"umap_x\": 1.339203953742981, \"umap_y\": 3.636702299118042, \"post_id\": 11938.0, \"author_id\": 965.0, \"id_y\": 965.0, \"author\": \"Annette Ramelsberger\", \"author_group\": \"Other\"}, {\"id_x\": 11938, \"umap_x\": 1.339203953742981, \"umap_y\": 3.636702299118042, \"post_id\": 11938.0, \"author_id\": 465.0, \"id_y\": 465.0, \"author\": \"SZ\", \"author_group\": \"Other\"}, {\"id_x\": 11940, \"umap_x\": -2.0442566871643066, \"umap_y\": 2.5440690517425537, \"post_id\": 11940.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 11942, \"umap_x\": 1.684612512588501, \"umap_y\": 3.1783447265625, \"post_id\": 11942.0, \"author_id\": 685.0, \"id_y\": 685.0, \"author\": \"Carina Book\", \"author_group\": \"Other\"}, {\"id_x\": 11942, \"umap_x\": 1.684612512588501, \"umap_y\": 3.1783447265625, \"post_id\": 11942.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}, {\"id_x\": 11944, \"umap_x\": -0.926371157169342, \"umap_y\": -0.48535239696502686, \"post_id\": 11944.0, \"author_id\": 650.0, \"id_y\": 650.0, \"author\": \"Maika Schmitt\", \"author_group\": \"Other\"}, {\"id_x\": 11946, \"umap_x\": -0.32935500144958496, \"umap_y\": 0.9502675533294678, \"post_id\": 11946.0, \"author_id\": 920.0, \"id_y\": 920.0, \"author\": \"Antifa Recherche Team Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 11968, \"umap_x\": -1.6949141025543213, \"umap_y\": 2.314999580383301, \"post_id\": 11968.0, \"author_id\": 966.0, \"id_y\": 966.0, \"author\": \"Nestor\", \"author_group\": \"Other\"}, {\"id_x\": 11973, \"umap_x\": 1.1650911569595337, \"umap_y\": 3.913372278213501, \"post_id\": 11973.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 11979, \"umap_x\": -1.9297741651535034, \"umap_y\": -0.568063497543335, \"post_id\": 11979.0, \"author_id\": 967.0, \"id_y\": 967.0, \"author\": \"Louis Hagen\", \"author_group\": \"Other\"}, {\"id_x\": 11982, \"umap_x\": 0.17637355625629425, \"umap_y\": 3.367619514465332, \"post_id\": 11982.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11987, \"umap_x\": 1.8254209756851196, \"umap_y\": 3.406795024871826, \"post_id\": 11987.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 11990, \"umap_x\": -1.364129900932312, \"umap_y\": 5.2733917236328125, \"post_id\": 11990.0, \"author_id\": 968.0, \"id_y\": 968.0, \"author\": \"B\\u00fcndnis EMA8M\", \"author_group\": \"Other\"}, {\"id_x\": 11995, \"umap_x\": 0.37122437357902527, \"umap_y\": 3.291483163833618, \"post_id\": 11995.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 11998, \"umap_x\": -0.7340803146362305, \"umap_y\": 3.1893110275268555, \"post_id\": 11998.0, \"author_id\": 969.0, \"id_y\": 969.0, \"author\": \"autorin\", \"author_group\": \"Other\"}, {\"id_x\": 12001, \"umap_x\": 0.2877683639526367, \"umap_y\": 1.5742913484573364, \"post_id\": 12001.0, \"author_id\": 970.0, \"id_y\": 970.0, \"author\": \"basc.news\", \"author_group\": \"Other\"}, {\"id_x\": 12009, \"umap_x\": -3.0388734340667725, \"umap_y\": 1.3114911317825317, \"post_id\": 12009.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 12009, \"umap_x\": -3.0388734340667725, \"umap_y\": 1.3114911317825317, \"post_id\": 12009.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12014, \"umap_x\": -0.6994351744651794, \"umap_y\": 1.116352915763855, \"post_id\": 12014.0, \"author_id\": 971.0, \"id_y\": 971.0, \"author\": \"Douglas Rushkoff\", \"author_group\": \"Other\"}, {\"id_x\": 12016, \"umap_x\": -0.0838264524936676, \"umap_y\": 3.2183053493499756, \"post_id\": 12016.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 12019, \"umap_x\": -3.0352087020874023, \"umap_y\": -0.26164036989212036, \"post_id\": 12019.0, \"author_id\": 22.0, \"id_y\": 22.0, \"author\": \"Kreuzer\", \"author_group\": \"Other\"}, {\"id_x\": 12025, \"umap_x\": 0.5843008756637573, \"umap_y\": -0.8622118234634399, \"post_id\": 12025.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 12025, \"umap_x\": 0.5843008756637573, \"umap_y\": -0.8622118234634399, \"post_id\": 12025.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12027, \"umap_x\": 0.9728207588195801, \"umap_y\": -0.8271854519844055, \"post_id\": 12027.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 12027, \"umap_x\": 0.9728207588195801, \"umap_y\": -0.8271854519844055, \"post_id\": 12027.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12029, \"umap_x\": -2.7177560329437256, \"umap_y\": -1.6348344087600708, \"post_id\": 12029.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 12029, \"umap_x\": -2.7177560329437256, \"umap_y\": -1.6348344087600708, \"post_id\": 12029.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12039, \"umap_x\": -0.2881392240524292, \"umap_y\": 3.374778985977173, \"post_id\": 12039.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 12041, \"umap_x\": -2.5313432216644287, \"umap_y\": -1.858315348625183, \"post_id\": 12041.0, \"author_id\": 972.0, \"id_y\": 972.0, \"author\": \"Nikolaus Neidhardt\", \"author_group\": \"Other\"}, {\"id_x\": 12041, \"umap_x\": -2.5313432216644287, \"umap_y\": -1.858315348625183, \"post_id\": 12041.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12043, \"umap_x\": -1.3066425323486328, \"umap_y\": 5.3129754066467285, \"post_id\": 12043.0, \"author_id\": 973.0, \"id_y\": 973.0, \"author\": \"FEMINISM UNLIMITED\", \"author_group\": \"Other\"}, {\"id_x\": 12048, \"umap_x\": -2.3553030490875244, \"umap_y\": -1.7127323150634766, \"post_id\": 12048.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12056, \"umap_x\": -1.1480151414871216, \"umap_y\": 3.0414397716522217, \"post_id\": 12056.0, \"author_id\": 974.0, \"id_y\": 974.0, \"author\": \"tumulte.org\", \"author_group\": \"Other\"}, {\"id_x\": 12058, \"umap_x\": -0.9521934390068054, \"umap_y\": 1.0489673614501953, \"post_id\": 12058.0, \"author_id\": 764.0, \"id_y\": 764.0, \"author\": \"Manuel Niemann\", \"author_group\": \"Other\"}, {\"id_x\": 12058, \"umap_x\": -0.9521934390068054, \"umap_y\": 1.0489673614501953, \"post_id\": 12058.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 12060, \"umap_x\": 0.26476606726646423, \"umap_y\": -0.3576410412788391, \"post_id\": 12060.0, \"author_id\": 975.0, \"id_y\": 975.0, \"author\": \"Vladyslav Lushankov\", \"author_group\": \"Other\"}, {\"id_x\": 12060, \"umap_x\": 0.26476606726646423, \"umap_y\": -0.3576410412788391, \"post_id\": 12060.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 12062, \"umap_x\": -1.7984179258346558, \"umap_y\": -0.5615296959877014, \"post_id\": 12062.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 12062, \"umap_x\": -1.7984179258346558, \"umap_y\": -0.5615296959877014, \"post_id\": 12062.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12064, \"umap_x\": -0.895031213760376, \"umap_y\": 2.969756841659546, \"post_id\": 12064.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 12064, \"umap_x\": -0.895031213760376, \"umap_y\": 2.969756841659546, \"post_id\": 12064.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 12064, \"umap_x\": -0.895031213760376, \"umap_y\": 2.969756841659546, \"post_id\": 12064.0, \"author_id\": 347.0, \"id_y\": 347.0, \"author\": \"Roger Dietze\", \"author_group\": \"Other\"}, {\"id_x\": 12064, \"umap_x\": -0.895031213760376, \"umap_y\": 2.969756841659546, \"post_id\": 12064.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12066, \"umap_x\": 1.1216636896133423, \"umap_y\": -0.013057539239525795, \"post_id\": 12066.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 12066, \"umap_x\": 1.1216636896133423, \"umap_y\": -0.013057539239525795, \"post_id\": 12066.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12068, \"umap_x\": -2.5320076942443848, \"umap_y\": 0.602519154548645, \"post_id\": 12068.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12068, \"umap_x\": -2.5320076942443848, \"umap_y\": 0.602519154548645, \"post_id\": 12068.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12070, \"umap_x\": 0.9282916188240051, \"umap_y\": -0.09317871928215027, \"post_id\": 12070.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12072, \"umap_x\": -2.226353883743286, \"umap_y\": -1.8891124725341797, \"post_id\": 12072.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 12072, \"umap_x\": -2.226353883743286, \"umap_y\": -1.8891124725341797, \"post_id\": 12072.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12074, \"umap_x\": -1.5211288928985596, \"umap_y\": -0.9285686016082764, \"post_id\": 12074.0, \"author_id\": 384.0, \"id_y\": 384.0, \"author\": \"Jens Fuge\", \"author_group\": \"Other\"}, {\"id_x\": 12074, \"umap_x\": -1.5211288928985596, \"umap_y\": -0.9285686016082764, \"post_id\": 12074.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12080, \"umap_x\": -1.2410340309143066, \"umap_y\": 5.02397346496582, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12088, \"umap_x\": -0.7037707567214966, \"umap_y\": 4.5056586265563965, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12090, \"umap_x\": -2.232525587081909, \"umap_y\": -0.3844270706176758, \"post_id\": 12090.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 12090, \"umap_x\": -2.232525587081909, \"umap_y\": -0.3844270706176758, \"post_id\": 12090.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12092, \"umap_x\": -2.4100019931793213, \"umap_y\": 0.26110145449638367, \"post_id\": 12092.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12092, \"umap_x\": -2.4100019931793213, \"umap_y\": 0.26110145449638367, \"post_id\": 12092.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12094, \"umap_x\": 0.6125124096870422, \"umap_y\": 0.4661414623260498, \"post_id\": 12094.0, \"author_id\": 247.0, \"id_y\": 247.0, \"author\": \"Alexander Schneider\", \"author_group\": \"Other\"}, {\"id_x\": 12094, \"umap_x\": 0.6125124096870422, \"umap_y\": 0.4661414623260498, \"post_id\": 12094.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12098, \"umap_x\": 0.8071438670158386, \"umap_y\": 0.7421360611915588, \"post_id\": 12098.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 12098, \"umap_x\": 0.8071438670158386, \"umap_y\": 0.7421360611915588, \"post_id\": 12098.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12100, \"umap_x\": 0.8972393274307251, \"umap_y\": 2.029097318649292, \"post_id\": 12100.0, \"author_id\": 274.0, \"id_y\": 274.0, \"author\": \"Wiebke Ramm\", \"author_group\": \"Other\"}, {\"id_x\": 12100, \"umap_x\": 0.8972393274307251, \"umap_y\": 2.029097318649292, \"post_id\": 12100.0, \"author_id\": 734.0, \"id_y\": 734.0, \"author\": \"Sven R\\u00f6bel\", \"author_group\": \"Other\"}, {\"id_x\": 12100, \"umap_x\": 0.8972393274307251, \"umap_y\": 2.029097318649292, \"post_id\": 12100.0, \"author_id\": 735.0, \"id_y\": 735.0, \"author\": \"Wolf Wiedmann-Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 12100, \"umap_x\": 0.8972393274307251, \"umap_y\": 2.029097318649292, \"post_id\": 12100.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12105, \"umap_x\": -0.5410571694374084, \"umap_y\": 2.058215856552124, \"post_id\": 12105.0, \"author_id\": 976.0, \"id_y\": 976.0, \"author\": \"Uwe Engelhardt\", \"author_group\": \"Other\"}, {\"id_x\": 12105, \"umap_x\": -0.5410571694374084, \"umap_y\": 2.058215856552124, \"post_id\": 12105.0, \"author_id\": 977.0, \"id_y\": 977.0, \"author\": \"T\\u00e4glicher Anzeiger Holzminden\", \"author_group\": \"Other\"}, {\"id_x\": 12107, \"umap_x\": 0.3575546443462372, \"umap_y\": 2.9825005531311035, \"post_id\": 12107.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12110, \"umap_x\": -0.8187239170074463, \"umap_y\": 2.863731622695923, \"post_id\": 12110.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12113, \"umap_x\": 0.46292001008987427, \"umap_y\": 1.005370020866394, \"post_id\": 12113.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 12113, \"umap_x\": 0.46292001008987427, \"umap_y\": 1.005370020866394, \"post_id\": 12113.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12115, \"umap_x\": -0.5423151850700378, \"umap_y\": 2.5482237339019775, \"post_id\": 12115.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 12118, \"umap_x\": 0.4797763526439667, \"umap_y\": 1.517125129699707, \"post_id\": 12118.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12121, \"umap_x\": -1.4584516286849976, \"umap_y\": 0.6533178091049194, \"post_id\": 12121.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 12121, \"umap_x\": -1.4584516286849976, \"umap_y\": 0.6533178091049194, \"post_id\": 12121.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12123, \"umap_x\": 1.68256676197052, \"umap_y\": 0.4322192370891571, \"post_id\": 12123.0, \"author_id\": 978.0, \"id_y\": 978.0, \"author\": \"DPA\", \"author_group\": \"Other\"}, {\"id_x\": 12125, \"umap_x\": 1.6969579458236694, \"umap_y\": 0.3233652710914612, \"post_id\": 12125.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12127, \"umap_x\": 0.25679370760917664, \"umap_y\": 0.36995235085487366, \"post_id\": 12127.0, \"author_id\": 979.0, \"id_y\": 979.0, \"author\": \"Andreas Bayer\", \"author_group\": \"Other\"}, {\"id_x\": 12127, \"umap_x\": 0.25679370760917664, \"umap_y\": 0.36995235085487366, \"post_id\": 12127.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12134, \"umap_x\": 0.7572897672653198, \"umap_y\": -0.5108553767204285, \"post_id\": 12134.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12138, \"umap_x\": 0.5013158917427063, \"umap_y\": 6.021186828613281, \"post_id\": 12138.0, \"author_id\": 980.0, \"id_y\": 980.0, \"author\": \"Meri\\u00e8m Strupler\", \"author_group\": \"Other\"}, {\"id_x\": 12138, \"umap_x\": 0.5013158917427063, \"umap_y\": 6.021186828613281, \"post_id\": 12138.0, \"author_id\": 678.0, \"id_y\": 678.0, \"author\": \"WOZ\", \"author_group\": \"Other\"}, {\"id_x\": 12140, \"umap_x\": 1.254865288734436, \"umap_y\": -0.30261045694351196, \"post_id\": 12140.0, \"author_id\": 981.0, \"id_y\": 981.0, \"author\": \"Gareth Joswig\", \"author_group\": \"Other\"}, {\"id_x\": 12140, \"umap_x\": 1.254865288734436, \"umap_y\": -0.30261045694351196, \"post_id\": 12140.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 12144, \"umap_x\": 0.2247389554977417, \"umap_y\": 1.563737392425537, \"post_id\": 12144.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 12154, \"umap_x\": -1.9096561670303345, \"umap_y\": 3.993093490600586, \"post_id\": 12154.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12161, \"umap_x\": -3.7763702869415283, \"umap_y\": 2.768234968185425, \"post_id\": 12161.0, \"author_id\": 982.0, \"id_y\": 982.0, \"author\": \"EA und RH Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12167, \"umap_x\": -1.9875074625015259, \"umap_y\": 4.453770160675049, \"post_id\": 12167.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12170, \"umap_x\": 0.9603123068809509, \"umap_y\": -0.20290352404117584, \"post_id\": 12170.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12174, \"umap_x\": -2.7910971641540527, \"umap_y\": 5.4010186195373535, \"post_id\": 12174.0, \"author_id\": 954.0, \"id_y\": 954.0, \"author\": \"Solidarity Collectives\", \"author_group\": \"Other\"}, {\"id_x\": 12178, \"umap_x\": -1.3883256912231445, \"umap_y\": 5.436588764190674, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12180, \"umap_x\": 0.500874936580658, \"umap_y\": 5.9695892333984375, \"post_id\": 12180.0, \"author_id\": 983.0, \"id_y\": 983.0, \"author\": \"BIG Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12183, \"umap_x\": 0.1382644772529602, \"umap_y\": 4.6469573974609375, \"post_id\": 12183.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12183, \"umap_x\": 0.1382644772529602, \"umap_y\": 4.6469573974609375, \"post_id\": 12183.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 12194, \"umap_x\": -2.845651626586914, \"umap_y\": -1.6959244012832642, \"post_id\": 12194.0, \"author_id\": 352.0, \"id_y\": 352.0, \"author\": \"Annika Rank\", \"author_group\": \"Other\"}, {\"id_x\": 12194, \"umap_x\": -2.845651626586914, \"umap_y\": -1.6959244012832642, \"post_id\": 12194.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12196, \"umap_x\": -2.606901168823242, \"umap_y\": -0.3919169306755066, \"post_id\": 12196.0, \"author_id\": 984.0, \"id_y\": 984.0, \"author\": \"Petra Nacht\", \"author_group\": \"Other\"}, {\"id_x\": 12198, \"umap_x\": 0.7147992849349976, \"umap_y\": 2.37355637550354, \"post_id\": 12198.0, \"author_id\": 985.0, \"id_y\": 985.0, \"author\": \"Antifa Freiburg\", \"author_group\": \"Other\"}, {\"id_x\": 12200, \"umap_x\": -2.3445398807525635, \"umap_y\": -1.0364930629730225, \"post_id\": 12200.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 12200, \"umap_x\": -2.3445398807525635, \"umap_y\": -1.0364930629730225, \"post_id\": 12200.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12202, \"umap_x\": -1.8626680374145508, \"umap_y\": 0.38177597522735596, \"post_id\": 12202.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12202, \"umap_x\": -1.8626680374145508, \"umap_y\": 0.38177597522735596, \"post_id\": 12202.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12204, \"umap_x\": -2.583277702331543, \"umap_y\": -0.7556523084640503, \"post_id\": 12204.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 12204, \"umap_x\": -2.583277702331543, \"umap_y\": -0.7556523084640503, \"post_id\": 12204.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12206, \"umap_x\": 0.5378471612930298, \"umap_y\": 0.5980150699615479, \"post_id\": 12206.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 12206, \"umap_x\": 0.5378471612930298, \"umap_y\": 0.5980150699615479, \"post_id\": 12206.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12208, \"umap_x\": -4.32672643661499, \"umap_y\": -0.388689249753952, \"post_id\": 12208.0, \"author_id\": 412.0, \"id_y\": 412.0, \"author\": \"Johannes David\", \"author_group\": \"Other\"}, {\"id_x\": 12208, \"umap_x\": -4.32672643661499, \"umap_y\": -0.388689249753952, \"post_id\": 12208.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12210, \"umap_x\": 0.21927393972873688, \"umap_y\": 4.617354869842529, \"post_id\": 12210.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 12212, \"umap_x\": -0.55672287940979, \"umap_y\": 0.2179695963859558, \"post_id\": 12212.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12224, \"umap_x\": -0.392238974571228, \"umap_y\": 2.8431859016418457, \"post_id\": 12224.0, \"author_id\": 986.0, \"id_y\": 986.0, \"author\": \"eine aufgetauchte Antifaschistin\", \"author_group\": \"Other\"}, {\"id_x\": 12224, \"umap_x\": -0.392238974571228, \"umap_y\": 2.8431859016418457, \"post_id\": 12224.0, \"author_id\": 987.0, \"id_y\": 987.0, \"author\": \"indymedia\", \"author_group\": \"Other\"}, {\"id_x\": 12228, \"umap_x\": -0.1416063755750656, \"umap_y\": -1.532903790473938, \"post_id\": 12228.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 12230, \"umap_x\": -1.6959493160247803, \"umap_y\": 2.8224880695343018, \"post_id\": 12230.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12232, \"umap_x\": -2.7447688579559326, \"umap_y\": -0.9950525760650635, \"post_id\": 12232.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12234, \"umap_x\": 0.7744135856628418, \"umap_y\": 3.0618700981140137, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12236, \"umap_x\": 0.07856891304254532, \"umap_y\": 3.5176944732666016, \"post_id\": 12236.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 12238, \"umap_x\": -0.600894033908844, \"umap_y\": -0.04660220071673393, \"post_id\": 12238.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 12240, \"umap_x\": 0.6934058666229248, \"umap_y\": 3.1069540977478027, \"post_id\": 12240.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 12242, \"umap_x\": -0.36282825469970703, \"umap_y\": 2.254777669906616, \"post_id\": 12242.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 12244, \"umap_x\": 1.2823641300201416, \"umap_y\": 3.584965944290161, \"post_id\": 12244.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 12244, \"umap_x\": 1.2823641300201416, \"umap_y\": 3.584965944290161, \"post_id\": 12244.0, \"author_id\": 809.0, \"id_y\": 809.0, \"author\": \"TAZ\", \"author_group\": \"Other\"}, {\"id_x\": 12246, \"umap_x\": 0.39708268642425537, \"umap_y\": 0.7475920915603638, \"post_id\": 12246.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 12246, \"umap_x\": 0.39708268642425537, \"umap_y\": 0.7475920915603638, \"post_id\": 12246.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12248, \"umap_x\": -1.0619933605194092, \"umap_y\": 3.6477420330047607, \"post_id\": 12248.0, \"author_id\": 988.0, \"id_y\": 988.0, \"author\": \"JON PECO\", \"author_group\": \"Other\"}, {\"id_x\": 12250, \"umap_x\": -2.2003579139709473, \"umap_y\": 3.2153127193450928, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12252, \"umap_x\": 0.16031217575073242, \"umap_y\": 1.8979486227035522, \"post_id\": 12252.0, \"author_id\": 989.0, \"id_y\": 989.0, \"author\": \"alleantifa\", \"author_group\": \"Other\"}, {\"id_x\": 12254, \"umap_x\": -2.267415761947632, \"umap_y\": 4.46104621887207, \"post_id\": 12254.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12267, \"umap_x\": 0.3474310338497162, \"umap_y\": 5.43484354019165, \"post_id\": 12267.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 12270, \"umap_x\": 0.36432233452796936, \"umap_y\": 5.489354133605957, \"post_id\": 12270.0, \"author_id\": 698.0, \"id_y\": 698.0, \"author\": \"leser\", \"author_group\": \"Other\"}, {\"id_x\": 12282, \"umap_x\": -2.330106258392334, \"umap_y\": -0.20077796280384064, \"post_id\": 12282.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 12287, \"umap_x\": 0.029191775247454643, \"umap_y\": 2.530188798904419, \"post_id\": 12287.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12290, \"umap_x\": -2.4992494583129883, \"umap_y\": 1.4968746900558472, \"post_id\": 12290.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12293, \"umap_x\": -4.579126834869385, \"umap_y\": 4.51627254486084, \"post_id\": 12293.0, \"author_id\": 990.0, \"id_y\": 990.0, \"author\": \"Projet-Evasion\", \"author_group\": \"Other\"}, {\"id_x\": 12297, \"umap_x\": 0.663559079170227, \"umap_y\": 0.2019454836845398, \"post_id\": 12297.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 12300, \"umap_x\": 0.20361743867397308, \"umap_y\": 4.402694225311279, \"post_id\": 12300.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 12305, \"umap_x\": -3.919245719909668, \"umap_y\": -0.5184704065322876, \"post_id\": 12305.0, \"author_id\": 1015.0, \"id_y\": 1015.0, \"author\": \"Deutsche Presse-Agentur\", \"author_group\": \"Other\"}, {\"id_x\": 12307, \"umap_x\": -1.6426814794540405, \"umap_y\": 3.4597604274749756, \"post_id\": 12307.0, \"author_id\": 684.0, \"id_y\": 684.0, \"author\": \"Anarchist Black Cross Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 12310, \"umap_x\": 0.5104529857635498, \"umap_y\": 1.3358802795410156, \"post_id\": 12310.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12314, \"umap_x\": -2.78816819190979, \"umap_y\": 3.7476847171783447, \"post_id\": 12314.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12316, \"umap_x\": 0.6410022377967834, \"umap_y\": 6.208125591278076, \"post_id\": 12316.0, \"author_id\": 992.0, \"id_y\": 992.0, \"author\": \"Ihab Hassan\", \"author_group\": \"Other\"}, {\"id_x\": 12322, \"umap_x\": -2.0361344814300537, \"umap_y\": -0.5413094162940979, \"post_id\": 12322.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12333, \"umap_x\": 5.581179618835449, \"umap_y\": 3.3542773723602295, \"post_id\": 12333.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 12338, \"umap_x\": -0.6592071056365967, \"umap_y\": 4.262840270996094, \"post_id\": 12338.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12345, \"umap_x\": -1.509927749633789, \"umap_y\": 4.043102264404297, \"post_id\": 12345.0, \"author_id\": 993.0, \"id_y\": 993.0, \"author\": \"Ernst Johannes Fritz Th\\u00e4lmann\", \"author_group\": \"Other\"}, {\"id_x\": 12348, \"umap_x\": -0.2548597455024719, \"umap_y\": 4.365514278411865, \"post_id\": 12348.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12350, \"umap_x\": -1.1862766742706299, \"umap_y\": 5.075333595275879, \"post_id\": 12350.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12352, \"umap_x\": -1.327088713645935, \"umap_y\": 5.422691822052002, \"post_id\": 12352.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12354, \"umap_x\": 0.6469065546989441, \"umap_y\": 6.135059833526611, \"post_id\": 12354.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12360, \"umap_x\": -2.0199697017669678, \"umap_y\": 0.22620102763175964, \"post_id\": 12360.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12363, \"umap_x\": -0.46646013855934143, \"umap_y\": -0.7803272604942322, \"post_id\": 12363.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 12366, \"umap_x\": -1.1690826416015625, \"umap_y\": 1.6910659074783325, \"post_id\": 12366.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12366, \"umap_x\": -1.1690826416015625, \"umap_y\": 1.6910659074783325, \"post_id\": 12366.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12368, \"umap_x\": -1.019201397895813, \"umap_y\": -0.25883808732032776, \"post_id\": 12368.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 12368, \"umap_x\": -1.019201397895813, \"umap_y\": -0.25883808732032776, \"post_id\": 12368.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12370, \"umap_x\": 0.39017578959465027, \"umap_y\": 4.2538676261901855, \"post_id\": 12370.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 12370, \"umap_x\": 0.39017578959465027, \"umap_y\": 4.2538676261901855, \"post_id\": 12370.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12373, \"umap_x\": -2.617389678955078, \"umap_y\": -0.1626042276620865, \"post_id\": 12373.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 12373, \"umap_x\": -2.617389678955078, \"umap_y\": -0.1626042276620865, \"post_id\": 12373.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 12375, \"umap_x\": 1.586107850074768, \"umap_y\": 0.248361736536026, \"post_id\": 12375.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 12375, \"umap_x\": 1.586107850074768, \"umap_y\": 0.248361736536026, \"post_id\": 12375.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 12377, \"umap_x\": -1.299615502357483, \"umap_y\": 0.5500796437263489, \"post_id\": 12377.0, \"author_id\": 994.0, \"id_y\": 994.0, \"author\": \"Pauline Fell\", \"author_group\": \"Other\"}, {\"id_x\": 12377, \"umap_x\": -1.299615502357483, \"umap_y\": 0.5500796437263489, \"post_id\": 12377.0, \"author_id\": 995.0, \"id_y\": 995.0, \"author\": \"Tim Pawletta\", \"author_group\": \"Other\"}, {\"id_x\": 12381, \"umap_x\": -0.6439838409423828, \"umap_y\": 1.6920981407165527, \"post_id\": 12381.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12383, \"umap_x\": -2.0466840267181396, \"umap_y\": 1.5267788171768188, \"post_id\": 12383.0, \"author_id\": 996.0, \"id_y\": 996.0, \"author\": \"RAV\", \"author_group\": \"Other\"}, {\"id_x\": 12385, \"umap_x\": -0.9660215973854065, \"umap_y\": 0.3794502913951874, \"post_id\": 12385.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12397, \"umap_x\": -2.929710626602173, \"umap_y\": 2.9636476039886475, \"post_id\": 12397.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12400, \"umap_x\": -2.194664478302002, \"umap_y\": 4.406103610992432, \"post_id\": 12400.0, \"author_id\": 440.0, \"id_y\": 440.0, \"author\": \"anarchist\", \"author_group\": \"Other\"}, {\"id_x\": 12407, \"umap_x\": -3.3389413356781006, \"umap_y\": 0.12589892745018005, \"post_id\": 12407.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12413, \"umap_x\": -1.2770259380340576, \"umap_y\": -0.3628316819667816, \"post_id\": 12413.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 12413, \"umap_x\": -1.2770259380340576, \"umap_y\": -0.3628316819667816, \"post_id\": 12413.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12415, \"umap_x\": -1.0055898427963257, \"umap_y\": 0.25482499599456787, \"post_id\": 12415.0, \"author_id\": 455.0, \"id_y\": 455.0, \"author\": \"Robert N\\u00f6\\u00dfler\", \"author_group\": \"Other\"}, {\"id_x\": 12415, \"umap_x\": -1.0055898427963257, \"umap_y\": 0.25482499599456787, \"post_id\": 12415.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12417, \"umap_x\": -4.525486946105957, \"umap_y\": 4.569576263427734, \"post_id\": 12417.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 12424, \"umap_x\": -1.3696436882019043, \"umap_y\": -0.20318284630775452, \"post_id\": 12424.0, \"author_id\": 997.0, \"id_y\": 997.0, \"author\": \"Ladenschluss-B\\u00fcndnis\", \"author_group\": \"Other\"}, {\"id_x\": 12427, \"umap_x\": -0.8700317740440369, \"umap_y\": 3.623670816421509, \"post_id\": 12427.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12433, \"umap_x\": 0.48732811212539673, \"umap_y\": 1.497791051864624, \"post_id\": 12433.0, \"author_id\": 348.0, \"id_y\": 348.0, \"author\": \"Johannes Grunert\", \"author_group\": \"Other\"}, {\"id_x\": 12435, \"umap_x\": -0.7052021622657776, \"umap_y\": 0.05316738039255142, \"post_id\": 12435.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 12435, \"umap_x\": -0.7052021622657776, \"umap_y\": 0.05316738039255142, \"post_id\": 12435.0, \"author_id\": 862.0, \"id_y\": 862.0, \"author\": \"s\\u00e4chsische zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 12437, \"umap_x\": 0.979610025882721, \"umap_y\": 0.2638859748840332, \"post_id\": 12437.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 12439, \"umap_x\": -1.2599586248397827, \"umap_y\": 1.34406578540802, \"post_id\": 12439.0, \"author_id\": 998.0, \"id_y\": 998.0, \"author\": \"Jim Kerzig\", \"author_group\": \"Other\"}, {\"id_x\": 12439, \"umap_x\": -1.2599586248397827, \"umap_y\": 1.34406578540802, \"post_id\": 12439.0, \"author_id\": 880.0, \"id_y\": 880.0, \"author\": \"freie presse\", \"author_group\": \"Other\"}, {\"id_x\": 12441, \"umap_x\": -1.1180588006973267, \"umap_y\": 1.8716250658035278, \"post_id\": 12441.0, \"author_id\": 847.0, \"id_y\": 847.0, \"author\": \"Holger Wei\\u00df\", \"author_group\": \"Other\"}, {\"id_x\": 12441, \"umap_x\": -1.1180588006973267, \"umap_y\": 1.8716250658035278, \"post_id\": 12441.0, \"author_id\": 880.0, \"id_y\": 880.0, \"author\": \"freie presse\", \"author_group\": \"Other\"}, {\"id_x\": 12443, \"umap_x\": -0.8744767904281616, \"umap_y\": 0.7884759902954102, \"post_id\": 12443.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 12443, \"umap_x\": -0.8744767904281616, \"umap_y\": 0.7884759902954102, \"post_id\": 12443.0, \"author_id\": 999.0, \"id_y\": 999.0, \"author\": \"tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12445, \"umap_x\": 1.0251978635787964, \"umap_y\": -0.2829652428627014, \"post_id\": 12445.0, \"author_id\": 949.0, \"id_y\": 949.0, \"author\": \"Anton Benz\", \"author_group\": \"Other\"}, {\"id_x\": 12445, \"umap_x\": 1.0251978635787964, \"umap_y\": -0.2829652428627014, \"post_id\": 12445.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 12447, \"umap_x\": 0.28277817368507385, \"umap_y\": 0.4295429587364197, \"post_id\": 12447.0, \"author_id\": 769.0, \"id_y\": 769.0, \"author\": \"Oliver Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 12447, \"umap_x\": 0.28277817368507385, \"umap_y\": 0.4295429587364197, \"post_id\": 12447.0, \"author_id\": 862.0, \"id_y\": 862.0, \"author\": \"s\\u00e4chsische zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 12449, \"umap_x\": -1.1917425394058228, \"umap_y\": 0.5217209458351135, \"post_id\": 12449.0, \"author_id\": 602.0, \"id_y\": 602.0, \"author\": \"Dirk Schulze\", \"author_group\": \"Other\"}, {\"id_x\": 12449, \"umap_x\": -1.1917425394058228, \"umap_y\": 0.5217209458351135, \"post_id\": 12449.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12451, \"umap_x\": -2.2780351638793945, \"umap_y\": -0.47591814398765564, \"post_id\": 12451.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 12453, \"umap_x\": -2.7304859161376953, \"umap_y\": 0.08276741206645966, \"post_id\": 12453.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12453, \"umap_x\": -2.7304859161376953, \"umap_y\": 0.08276741206645966, \"post_id\": 12453.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12455, \"umap_x\": -1.3002294301986694, \"umap_y\": 0.5260241627693176, \"post_id\": 12455.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 12455, \"umap_x\": -1.3002294301986694, \"umap_y\": 0.5260241627693176, \"post_id\": 12455.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12457, \"umap_x\": -2.276977777481079, \"umap_y\": -0.7425538897514343, \"post_id\": 12457.0, \"author_id\": 228.0, \"id_y\": 228.0, \"author\": \"Christian Neffe\", \"author_group\": \"Other\"}, {\"id_x\": 12459, \"umap_x\": -1.4886313676834106, \"umap_y\": -0.5052111744880676, \"post_id\": 12459.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12461, \"umap_x\": -2.1180167198181152, \"umap_y\": -0.22972238063812256, \"post_id\": 12461.0, \"author_id\": 1001.0, \"id_y\": 1001.0, \"author\": \"Simon Lehnerer\", \"author_group\": \"Other\"}, {\"id_x\": 12461, \"umap_x\": -2.1180167198181152, \"umap_y\": -0.22972238063812256, \"post_id\": 12461.0, \"author_id\": 75.0, \"id_y\": 75.0, \"author\": \"s\\u00e4chsische Zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 12463, \"umap_x\": -2.9385221004486084, \"umap_y\": 1.0793588161468506, \"post_id\": 12463.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 12463, \"umap_x\": -2.9385221004486084, \"umap_y\": 1.0793588161468506, \"post_id\": 12463.0, \"author_id\": 999.0, \"id_y\": 999.0, \"author\": \"tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12465, \"umap_x\": -1.0279889106750488, \"umap_y\": -0.17786552011966705, \"post_id\": 12465.0, \"author_id\": 590.0, \"id_y\": 590.0, \"author\": \"Christian Fuchs\", \"author_group\": \"Other\"}, {\"id_x\": 12465, \"umap_x\": -1.0279889106750488, \"umap_y\": -0.17786552011966705, \"post_id\": 12465.0, \"author_id\": 458.0, \"id_y\": 458.0, \"author\": \"Martin Nejezchleba\", \"author_group\": \"Other\"}, {\"id_x\": 12465, \"umap_x\": -1.0279889106750488, \"umap_y\": -0.17786552011966705, \"post_id\": 12465.0, \"author_id\": 918.0, \"id_y\": 918.0, \"author\": \"Christina Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 12467, \"umap_x\": 0.23337003588676453, \"umap_y\": 4.265873432159424, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12488, \"umap_x\": -1.7557846307754517, \"umap_y\": 3.787928819656372, \"post_id\": 12488.0, \"author_id\": 932.0, \"id_y\": 932.0, \"author\": \"AusdemWeg\", \"author_group\": \"Other\"}, {\"id_x\": 12493, \"umap_x\": -0.491562157869339, \"umap_y\": 3.370708703994751, \"post_id\": 12493.0, \"author_id\": 1002.0, \"id_y\": 1002.0, \"author\": \"KAF Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 12495, \"umap_x\": -0.3292158246040344, \"umap_y\": -0.14760100841522217, \"post_id\": 12495.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12498, \"umap_x\": -3.2891879081726074, \"umap_y\": 0.5789907574653625, \"post_id\": 12498.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 12501, \"umap_x\": -1.7370719909667969, \"umap_y\": 3.619377851486206, \"post_id\": 12501.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12503, \"umap_x\": -0.7283682227134705, \"umap_y\": 2.5095953941345215, \"post_id\": 12503.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12510, \"umap_x\": -1.8651823997497559, \"umap_y\": 0.999737024307251, \"post_id\": 12510.0, \"author_id\": 1003.0, \"id_y\": 1003.0, \"author\": \"Stefan Krause\", \"author_group\": \"Other\"}, {\"id_x\": 12512, \"umap_x\": -0.1523980051279068, \"umap_y\": 3.1268651485443115, \"post_id\": 12512.0, \"author_id\": 1004.0, \"id_y\": 1004.0, \"author\": \"lvz.de\", \"author_group\": \"Other\"}, {\"id_x\": 12512, \"umap_x\": -0.1523980051279068, \"umap_y\": 3.1268651485443115, \"post_id\": 12512.0, \"author_id\": 467.0, \"id_y\": 467.0, \"author\": \"Christian Wendt\", \"author_group\": \"Other\"}, {\"id_x\": 12512, \"umap_x\": -0.1523980051279068, \"umap_y\": 3.1268651485443115, \"post_id\": 12512.0, \"author_id\": 1005.0, \"id_y\": 1005.0, \"author\": \"Nico Fliegner\", \"author_group\": \"Other\"}, {\"id_x\": 12517, \"umap_x\": -3.2081971168518066, \"umap_y\": -0.326875776052475, \"post_id\": 12517.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 12517, \"umap_x\": -3.2081971168518066, \"umap_y\": -0.326875776052475, \"post_id\": 12517.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12520, \"umap_x\": -0.2968718409538269, \"umap_y\": 0.09714400768280029, \"post_id\": 12520.0, \"author_id\": 1006.0, \"id_y\": 1006.0, \"author\": \"Anja Beutler\", \"author_group\": \"Other\"}, {\"id_x\": 12520, \"umap_x\": -0.2968718409538269, \"umap_y\": 0.09714400768280029, \"post_id\": 12520.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 12520, \"umap_x\": -0.2968718409538269, \"umap_y\": 0.09714400768280029, \"post_id\": 12520.0, \"author_id\": 862.0, \"id_y\": 862.0, \"author\": \"s\\u00e4chsische zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 12522, \"umap_x\": -3.8237900733947754, \"umap_y\": 2.5185184478759766, \"post_id\": 12522.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 12522, \"umap_x\": -3.8237900733947754, \"umap_y\": 2.5185184478759766, \"post_id\": 12522.0, \"author_id\": 1007.0, \"id_y\": 1007.0, \"author\": \"MDR INVESTIGATIV\", \"author_group\": \"Other\"}, {\"id_x\": 12524, \"umap_x\": -0.9492720365524292, \"umap_y\": 3.4931819438934326, \"post_id\": 12524.0, \"author_id\": 1008.0, \"id_y\": 1008.0, \"author\": \"Anna und Arthur\", \"author_group\": \"Other\"}, {\"id_x\": 12527, \"umap_x\": -0.16711144149303436, \"umap_y\": 0.04706791788339615, \"post_id\": 12527.0, \"author_id\": 1006.0, \"id_y\": 1006.0, \"author\": \"Anja Beutler\", \"author_group\": \"Other\"}, {\"id_x\": 12527, \"umap_x\": -0.16711144149303436, \"umap_y\": 0.04706791788339615, \"post_id\": 12527.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 12537, \"umap_x\": 0.8012866377830505, \"umap_y\": -0.7775239944458008, \"post_id\": 12537.0, \"author_id\": 156.0, \"id_y\": 156.0, \"author\": \"Soligruppe\", \"author_group\": \"Other\"}, {\"id_x\": 12545, \"umap_x\": -0.888556182384491, \"umap_y\": 0.8666123151779175, \"post_id\": 12545.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 12547, \"umap_x\": -1.7595399618148804, \"umap_y\": 0.3658755421638489, \"post_id\": 12547.0, \"author_id\": 768.0, \"id_y\": 768.0, \"author\": \"Pro Choice Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12550, \"umap_x\": -1.2569618225097656, \"umap_y\": 4.505393028259277, \"post_id\": 12550.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 12552, \"umap_x\": -0.020317837595939636, \"umap_y\": 3.6553995609283447, \"post_id\": 12552.0, \"author_id\": 796.0, \"id_y\": 796.0, \"author\": \"Kosmotique\", \"author_group\": \"Other\"}, {\"id_x\": 12561, \"umap_x\": -1.4313846826553345, \"umap_y\": 1.5067771673202515, \"post_id\": 12561.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12564, \"umap_x\": 0.9382712841033936, \"umap_y\": 1.5406935214996338, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12566, \"umap_x\": 0.2535421848297119, \"umap_y\": 3.0296249389648438, \"post_id\": 12566.0, \"author_id\": 1009.0, \"id_y\": 1009.0, \"author\": \"EA Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 12568, \"umap_x\": 0.07644818723201752, \"umap_y\": 0.9648944735527039, \"post_id\": 12568.0, \"author_id\": 287.0, \"id_y\": 287.0, \"author\": \"Julius Geiler\", \"author_group\": \"Other\"}, {\"id_x\": 12568, \"umap_x\": 0.07644818723201752, \"umap_y\": 0.9648944735527039, \"post_id\": 12568.0, \"author_id\": 999.0, \"id_y\": 999.0, \"author\": \"tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12571, \"umap_x\": -3.053387403488159, \"umap_y\": 4.28501558303833, \"post_id\": 12571.0, \"author_id\": 1010.0, \"id_y\": 1010.0, \"author\": \"Zimmerwald Komitee\", \"author_group\": \"Other\"}, {\"id_x\": 12573, \"umap_x\": -0.8602506518363953, \"umap_y\": -0.215048685669899, \"post_id\": 12573.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12576, \"umap_x\": -0.04427514597773552, \"umap_y\": 0.3188000023365021, \"post_id\": 12576.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 12579, \"umap_x\": -3.158608913421631, \"umap_y\": 1.2765252590179443, \"post_id\": 12579.0, \"author_id\": 1011.0, \"id_y\": 1011.0, \"author\": \"Teddys Mama\", \"author_group\": \"Other\"}, {\"id_x\": 12597, \"umap_x\": 0.835974931716919, \"umap_y\": 0.17607749998569489, \"post_id\": 12597.0, \"author_id\": 1012.0, \"id_y\": 1012.0, \"author\": \"Tim Niklas Herholz\", \"author_group\": \"Other\"}, {\"id_x\": 12597, \"umap_x\": 0.835974931716919, \"umap_y\": 0.17607749998569489, \"post_id\": 12597.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12601, \"umap_x\": 0.9331876039505005, \"umap_y\": -0.4911130964756012, \"post_id\": 12601.0, \"author_id\": 284.0, \"id_y\": 284.0, \"author\": \"Simone Prenzel\", \"author_group\": \"Other\"}, {\"id_x\": 12601, \"umap_x\": 0.9331876039505005, \"umap_y\": -0.4911130964756012, \"post_id\": 12601.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12603, \"umap_x\": 1.0155220031738281, \"umap_y\": -0.8493130207061768, \"post_id\": 12603.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 12603, \"umap_x\": 1.0155220031738281, \"umap_y\": -0.8493130207061768, \"post_id\": 12603.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12605, \"umap_x\": -3.7440621852874756, \"umap_y\": 2.346480131149292, \"post_id\": 12605.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 12605, \"umap_x\": -3.7440621852874756, \"umap_y\": 2.346480131149292, \"post_id\": 12605.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12611, \"umap_x\": -2.52341628074646, \"umap_y\": -0.7526216506958008, \"post_id\": 12611.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12613, \"umap_x\": -0.9409883618354797, \"umap_y\": 3.7167553901672363, \"post_id\": 12613.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12615, \"umap_x\": 0.015376513823866844, \"umap_y\": 1.6696088314056396, \"post_id\": 12615.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12617, \"umap_x\": -2.715104103088379, \"umap_y\": 2.2001640796661377, \"post_id\": 12617.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12619, \"umap_x\": -0.38816580176353455, \"umap_y\": 0.2474534809589386, \"post_id\": 12619.0, \"author_id\": 1014.0, \"id_y\": 1014.0, \"author\": \"Raik Bartnik\", \"author_group\": \"Other\"}, {\"id_x\": 12621, \"umap_x\": -0.36191704869270325, \"umap_y\": 1.1844754219055176, \"post_id\": 12621.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 12621, \"umap_x\": -0.36191704869270325, \"umap_y\": 1.1844754219055176, \"post_id\": 12621.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12623, \"umap_x\": 0.6560551524162292, \"umap_y\": -0.7968229055404663, \"post_id\": 12623.0, \"author_id\": 495.0, \"id_y\": 495.0, \"author\": \"Thomas Sparrer\", \"author_group\": \"Other\"}, {\"id_x\": 12623, \"umap_x\": 0.6560551524162292, \"umap_y\": -0.7968229055404663, \"post_id\": 12623.0, \"author_id\": 1066.0, \"id_y\": 1066.0, \"author\": \"DNN\", \"author_group\": \"Other\"}, {\"id_x\": 12625, \"umap_x\": -2.4472415447235107, \"umap_y\": 0.776253879070282, \"post_id\": 12625.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12627, \"umap_x\": 0.08873721957206726, \"umap_y\": -0.0986456573009491, \"post_id\": 12627.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 12627, \"umap_x\": 0.08873721957206726, \"umap_y\": -0.0986456573009491, \"post_id\": 12627.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 12629, \"umap_x\": -1.632997989654541, \"umap_y\": 0.008224005810916424, \"post_id\": 12629.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 12631, \"umap_x\": 0.01837863400578499, \"umap_y\": 4.223898887634277, \"post_id\": 12631.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12633, \"umap_x\": -0.3603397011756897, \"umap_y\": -0.3816022276878357, \"post_id\": 12633.0, \"author_id\": 404.0, \"id_y\": 404.0, \"author\": \"Hanna Gerwig\", \"author_group\": \"Other\"}, {\"id_x\": 12633, \"umap_x\": -0.3603397011756897, \"umap_y\": -0.3816022276878357, \"post_id\": 12633.0, \"author_id\": 1015.0, \"id_y\": 1015.0, \"author\": \"Deutsche Presse-Agentur\", \"author_group\": \"Other\"}, {\"id_x\": 12633, \"umap_x\": -0.3603397011756897, \"umap_y\": -0.3816022276878357, \"post_id\": 12633.0, \"author_id\": 1016.0, \"id_y\": 1016.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 12633, \"umap_x\": -0.3603397011756897, \"umap_y\": -0.3816022276878357, \"post_id\": 12633.0, \"author_id\": 719.0, \"id_y\": 719.0, \"author\": \"Thilo Alexe\", \"author_group\": \"Other\"}, {\"id_x\": 12633, \"umap_x\": -0.3603397011756897, \"umap_y\": -0.3816022276878357, \"post_id\": 12633.0, \"author_id\": 218.0, \"id_y\": 218.0, \"author\": \"Ulrich Wolf\", \"author_group\": \"Other\"}, {\"id_x\": 12635, \"umap_x\": -2.3731863498687744, \"umap_y\": -0.5988067984580994, \"post_id\": 12635.0, \"author_id\": 380.0, \"id_y\": 380.0, \"author\": \"Laura Krugenberg\", \"author_group\": \"Other\"}, {\"id_x\": 12635, \"umap_x\": -2.3731863498687744, \"umap_y\": -0.5988067984580994, \"post_id\": 12635.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12637, \"umap_x\": 1.1992830038070679, \"umap_y\": -0.13281592726707458, \"post_id\": 12637.0, \"author_id\": 719.0, \"id_y\": 719.0, \"author\": \"Thilo Alexe\", \"author_group\": \"Other\"}, {\"id_x\": 12637, \"umap_x\": 1.1992830038070679, \"umap_y\": -0.13281592726707458, \"post_id\": 12637.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12639, \"umap_x\": 1.2567493915557861, \"umap_y\": 0.8031400442123413, \"post_id\": 12639.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 12639, \"umap_x\": 1.2567493915557861, \"umap_y\": 0.8031400442123413, \"post_id\": 12639.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12641, \"umap_x\": -0.9078226685523987, \"umap_y\": -0.38610538840293884, \"post_id\": 12641.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 12641, \"umap_x\": -0.9078226685523987, \"umap_y\": -0.38610538840293884, \"post_id\": 12641.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12643, \"umap_x\": -0.15329362452030182, \"umap_y\": 0.3753143846988678, \"post_id\": 12643.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 12643, \"umap_x\": -0.15329362452030182, \"umap_y\": 0.3753143846988678, \"post_id\": 12643.0, \"author_id\": 995.0, \"id_y\": 995.0, \"author\": \"Tim Pawletta\", \"author_group\": \"Other\"}, {\"id_x\": 12645, \"umap_x\": -1.7002060413360596, \"umap_y\": 0.9466220140457153, \"post_id\": 12645.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 12645, \"umap_x\": -1.7002060413360596, \"umap_y\": 0.9466220140457153, \"post_id\": 12645.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 12647, \"umap_x\": -2.199618339538574, \"umap_y\": 3.4808106422424316, \"post_id\": 12647.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12670, \"umap_x\": 0.0911799967288971, \"umap_y\": 3.7123525142669678, \"post_id\": 12670.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 12674, \"umap_x\": -0.6027005910873413, \"umap_y\": 3.0422708988189697, \"post_id\": 12674.0, \"author_id\": 1017.0, \"id_y\": 1017.0, \"author\": \"Qwert Zuiop\\u00fc\", \"author_group\": \"Other\"}, {\"id_x\": 12679, \"umap_x\": -2.4592125415802, \"umap_y\": -0.4234634339809418, \"post_id\": 12679.0, \"author_id\": 301.0, \"id_y\": 301.0, \"author\": \"Bastian Raabe\", \"author_group\": \"Other\"}, {\"id_x\": 12679, \"umap_x\": -2.4592125415802, \"umap_y\": -0.4234634339809418, \"post_id\": 12679.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12681, \"umap_x\": 0.9502524733543396, \"umap_y\": 0.29023218154907227, \"post_id\": 12681.0, \"author_id\": 881.0, \"id_y\": 881.0, \"author\": \"Peter Maxwill\", \"author_group\": \"Other\"}, {\"id_x\": 12681, \"umap_x\": 0.9502524733543396, \"umap_y\": 0.29023218154907227, \"post_id\": 12681.0, \"author_id\": 165.0, \"id_y\": 165.0, \"author\": \"spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12683, \"umap_x\": 0.6149093508720398, \"umap_y\": -0.7021456360816956, \"post_id\": 12683.0, \"author_id\": 305.0, \"id_y\": 305.0, \"author\": \"Lea Heilmann\", \"author_group\": \"Other\"}, {\"id_x\": 12683, \"umap_x\": 0.6149093508720398, \"umap_y\": -0.7021456360816956, \"post_id\": 12683.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12685, \"umap_x\": 0.49988994002342224, \"umap_y\": 1.0831440687179565, \"post_id\": 12685.0, \"author_id\": 1018.0, \"id_y\": 1018.0, \"author\": \"Verwaltungsgericht Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 12687, \"umap_x\": -1.1925230026245117, \"umap_y\": -1.5840294361114502, \"post_id\": 12687.0, \"author_id\": 305.0, \"id_y\": 305.0, \"author\": \"Lea Heilmann\", \"author_group\": \"Other\"}, {\"id_x\": 12696, \"umap_x\": 0.740369975566864, \"umap_y\": 3.3544793128967285, \"post_id\": 12696.0, \"author_id\": 1019.0, \"id_y\": 1019.0, \"author\": \"Aktionsb\\u00fcndnis gegen den Tag der Bundeswehr\", \"author_group\": \"Other\"}, {\"id_x\": 12699, \"umap_x\": -1.7080676555633545, \"umap_y\": 3.9040369987487793, \"post_id\": 12699.0, \"author_id\": 1020.0, \"id_y\": 1020.0, \"author\": \"Lenz Jacobsen\", \"author_group\": \"Other\"}, {\"id_x\": 12699, \"umap_x\": -1.7080676555633545, \"umap_y\": 3.9040369987487793, \"post_id\": 12699.0, \"author_id\": 1021.0, \"id_y\": 1021.0, \"author\": \"Livia Sarai Lergenm\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 12699, \"umap_x\": -1.7080676555633545, \"umap_y\": 3.9040369987487793, \"post_id\": 12699.0, \"author_id\": 1022.0, \"id_y\": 1022.0, \"author\": \"zeit\", \"author_group\": \"Other\"}, {\"id_x\": 12701, \"umap_x\": -0.14060547947883606, \"umap_y\": 2.5501792430877686, \"post_id\": 12701.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12704, \"umap_x\": 0.3885015845298767, \"umap_y\": 0.3235325515270233, \"post_id\": 12704.0, \"author_id\": 1023.0, \"id_y\": 1023.0, \"author\": \"aufmerksame Passant\", \"author_group\": \"Other\"}, {\"id_x\": 12706, \"umap_x\": -3.1734132766723633, \"umap_y\": 0.48774653673171997, \"post_id\": 12706.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 12706, \"umap_x\": -3.1734132766723633, \"umap_y\": 0.48774653673171997, \"post_id\": 12706.0, \"author_id\": 1024.0, \"id_y\": 1024.0, \"author\": \"Caroline Wiede\", \"author_group\": \"Other\"}, {\"id_x\": 12706, \"umap_x\": -3.1734132766723633, \"umap_y\": 0.48774653673171997, \"post_id\": 12706.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12718, \"umap_x\": -3.021360158920288, \"umap_y\": 1.7753874063491821, \"post_id\": 12718.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12720, \"umap_x\": -3.99214506149292, \"umap_y\": -0.5784963369369507, \"post_id\": 12720.0, \"author_id\": 1025.0, \"id_y\": 1025.0, \"author\": \"Vinz Rauchhaus\", \"author_group\": \"Other\"}, {\"id_x\": 12720, \"umap_x\": -3.99214506149292, \"umap_y\": -0.5784963369369507, \"post_id\": 12720.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12722, \"umap_x\": -3.8990671634674072, \"umap_y\": 2.594987392425537, \"post_id\": 12722.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12722, \"umap_x\": -3.8990671634674072, \"umap_y\": 2.594987392425537, \"post_id\": 12722.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12724, \"umap_x\": 1.258094310760498, \"umap_y\": 3.963317632675171, \"post_id\": 12724.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 12727, \"umap_x\": -1.011816382408142, \"umap_y\": 4.197050094604492, \"post_id\": 12727.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12730, \"umap_x\": -1.9984545707702637, \"umap_y\": 3.487635850906372, \"post_id\": 12730.0, \"author_id\": 1026.0, \"id_y\": 1026.0, \"author\": \"Koukaki Squats Community\", \"author_group\": \"Other\"}, {\"id_x\": 12733, \"umap_x\": -2.8011474609375, \"umap_y\": 0.6496396064758301, \"post_id\": 12733.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12733, \"umap_x\": -2.8011474609375, \"umap_y\": 0.6496396064758301, \"post_id\": 12733.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12735, \"umap_x\": -0.3282962143421173, \"umap_y\": 0.5505743622779846, \"post_id\": 12735.0, \"author_id\": 620.0, \"id_y\": 620.0, \"author\": \"Anna-Louise Lang\", \"author_group\": \"Other\"}, {\"id_x\": 12737, \"umap_x\": -0.38453397154808044, \"umap_y\": -1.6583136320114136, \"post_id\": 12737.0, \"author_id\": 920.0, \"id_y\": 920.0, \"author\": \"Antifa Recherche Team Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 12739, \"umap_x\": 0.28878867626190186, \"umap_y\": 1.8013683557510376, \"post_id\": 12739.0, \"author_id\": 800.0, \"id_y\": 800.0, \"author\": \"Markus Reuter\", \"author_group\": \"Other\"}, {\"id_x\": 12739, \"umap_x\": 0.28878867626190186, \"umap_y\": 1.8013683557510376, \"post_id\": 12739.0, \"author_id\": 173.0, \"id_y\": 173.0, \"author\": \"netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 12741, \"umap_x\": -0.4177534580230713, \"umap_y\": 2.929494619369507, \"post_id\": 12741.0, \"author_id\": 1027.0, \"id_y\": 1027.0, \"author\": \"Dominik Lenze\", \"author_group\": \"Other\"}, {\"id_x\": 12741, \"umap_x\": -0.4177534580230713, \"umap_y\": 2.929494619369507, \"post_id\": 12741.0, \"author_id\": 95.0, \"id_y\": 95.0, \"author\": \"Tagesspiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12752, \"umap_x\": 0.7622389197349548, \"umap_y\": 0.10755821317434311, \"post_id\": 12752.0, \"author_id\": 1028.0, \"id_y\": 1028.0, \"author\": \"Fabian Reinbold\", \"author_group\": \"Other\"}, {\"id_x\": 12752, \"umap_x\": 0.7622389197349548, \"umap_y\": 0.10755821317434311, \"post_id\": 12752.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 12755, \"umap_x\": -1.694711446762085, \"umap_y\": 2.9214537143707275, \"post_id\": 12755.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12758, \"umap_x\": -0.9508755207061768, \"umap_y\": -0.7373031377792358, \"post_id\": 12758.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 12758, \"umap_x\": -0.9508755207061768, \"umap_y\": -0.7373031377792358, \"post_id\": 12758.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12760, \"umap_x\": -2.201296806335449, \"umap_y\": 0.6674188375473022, \"post_id\": 12760.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12762, \"umap_x\": -0.6162645220756531, \"umap_y\": 5.205262660980225, \"post_id\": 12762.0, \"author_id\": 335.0, \"id_y\": 335.0, \"author\": \"Indymedia\", \"author_group\": \"Other\"}, {\"id_x\": 12770, \"umap_x\": 0.2791188657283783, \"umap_y\": 3.9046883583068848, \"post_id\": 12770.0, \"author_id\": 1029.0, \"id_y\": 1029.0, \"author\": \"Provisorischer anarchistischer Antikriegsrat Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 12773, \"umap_x\": -1.0992904901504517, \"umap_y\": 1.3358851671218872, \"post_id\": 12773.0, \"author_id\": 1053.0, \"id_y\": 1053.0, \"author\": \"RM16\", \"author_group\": \"Other\"}, {\"id_x\": 12780, \"umap_x\": -0.03064686246216297, \"umap_y\": 4.5666422843933105, \"post_id\": 12780.0, \"author_id\": 913.0, \"id_y\": 913.0, \"author\": \"Rote Flora\", \"author_group\": \"Other\"}, {\"id_x\": 12780, \"umap_x\": -0.03064686246216297, \"umap_y\": 4.5666422843933105, \"post_id\": 12780.0, \"author_id\": 1031.0, \"id_y\": 1031.0, \"author\": \"FC St. Pauli\", \"author_group\": \"Other\"}, {\"id_x\": 12782, \"umap_x\": 0.17097507417201996, \"umap_y\": 4.3542938232421875, \"post_id\": 12782.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 12786, \"umap_x\": -2.163787841796875, \"umap_y\": -0.381197988986969, \"post_id\": 12786.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 12792, \"umap_x\": -3.4696850776672363, \"umap_y\": 2.6365745067596436, \"post_id\": 12792.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 12794, \"umap_x\": -3.936638832092285, \"umap_y\": 2.589200496673584, \"post_id\": 12794.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 12801, \"umap_x\": 0.5881393551826477, \"umap_y\": 6.195437908172607, \"post_id\": 12801.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12803, \"umap_x\": -2.6078734397888184, \"umap_y\": 3.8743858337402344, \"post_id\": 12803.0, \"author_id\": 1032.0, \"id_y\": 1032.0, \"author\": \"Anarchistische Tage Freiburg\", \"author_group\": \"Other\"}, {\"id_x\": 12810, \"umap_x\": 0.6881508231163025, \"umap_y\": 6.171717643737793, \"post_id\": 12810.0, \"author_id\": 5.0, \"id_y\": 5.0, \"author\": \"Freund\", \"author_group\": \"Other\"}, {\"id_x\": 12813, \"umap_x\": -0.699950635433197, \"umap_y\": 2.6172964572906494, \"post_id\": 12813.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12815, \"umap_x\": -1.060666561126709, \"umap_y\": 4.229796886444092, \"post_id\": 12815.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12819, \"umap_x\": -3.9365620613098145, \"umap_y\": 2.6115775108337402, \"post_id\": 12819.0, \"author_id\": 622.0, \"id_y\": 622.0, \"author\": \"Leon Heyde\", \"author_group\": \"Other\"}, {\"id_x\": 12821, \"umap_x\": -1.0110431909561157, \"umap_y\": -0.06153623014688492, \"post_id\": 12821.0, \"author_id\": 530.0, \"id_y\": 530.0, \"author\": \"Michael Bartsch\", \"author_group\": \"Other\"}, {\"id_x\": 12823, \"umap_x\": -1.9156434535980225, \"umap_y\": 1.5404917001724243, \"post_id\": 12823.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12825, \"umap_x\": -0.5548797249794006, \"umap_y\": 0.027843531221151352, \"post_id\": 12825.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 12825, \"umap_x\": -0.5548797249794006, \"umap_y\": 0.027843531221151352, \"post_id\": 12825.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 12827, \"umap_x\": -3.7700021266937256, \"umap_y\": 2.607771158218384, \"post_id\": 12827.0, \"author_id\": 497.0, \"id_y\": 497.0, \"author\": \"Philipp Brendel\", \"author_group\": \"Other\"}, {\"id_x\": 12827, \"umap_x\": -3.7700021266937256, \"umap_y\": 2.607771158218384, \"post_id\": 12827.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 12829, \"umap_x\": 1.9555362462997437, \"umap_y\": 3.396106481552124, \"post_id\": 12829.0, \"author_id\": 1033.0, \"id_y\": 1033.0, \"author\": \"Friederike Pick\", \"author_group\": \"Other\"}, {\"id_x\": 12829, \"umap_x\": 1.9555362462997437, \"umap_y\": 3.396106481552124, \"post_id\": 12829.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12831, \"umap_x\": -2.702807903289795, \"umap_y\": 0.6565169095993042, \"post_id\": 12831.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12833, \"umap_x\": -3.849717855453491, \"umap_y\": 2.5548408031463623, \"post_id\": 12833.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 12835, \"umap_x\": -2.0017430782318115, \"umap_y\": 1.5326638221740723, \"post_id\": 12835.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 12835, \"umap_x\": -2.0017430782318115, \"umap_y\": 1.5326638221740723, \"post_id\": 12835.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12837, \"umap_x\": -1.2870254516601562, \"umap_y\": 1.5567784309387207, \"post_id\": 12837.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 12837, \"umap_x\": -1.2870254516601562, \"umap_y\": 1.5567784309387207, \"post_id\": 12837.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12839, \"umap_x\": 1.3729825019836426, \"umap_y\": -2.412303924560547, \"post_id\": 12839.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 12839, \"umap_x\": 1.3729825019836426, \"umap_y\": -2.412303924560547, \"post_id\": 12839.0, \"author_id\": 1035.0, \"id_y\": 1035.0, \"author\": \"Natalie Meinert\", \"author_group\": \"Other\"}, {\"id_x\": 12841, \"umap_x\": -2.1220967769622803, \"umap_y\": -0.20355454087257385, \"post_id\": 12841.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 12841, \"umap_x\": -2.1220967769622803, \"umap_y\": -0.20355454087257385, \"post_id\": 12841.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12843, \"umap_x\": -2.2160966396331787, \"umap_y\": -1.0788525342941284, \"post_id\": 12843.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 12843, \"umap_x\": -2.2160966396331787, \"umap_y\": -1.0788525342941284, \"post_id\": 12843.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12845, \"umap_x\": 0.4922981858253479, \"umap_y\": 0.011318711563944817, \"post_id\": 12845.0, \"author_id\": 1036.0, \"id_y\": 1036.0, \"author\": \"Tilman Steffen\", \"author_group\": \"Other\"}, {\"id_x\": 12845, \"umap_x\": 0.4922981858253479, \"umap_y\": 0.011318711563944817, \"post_id\": 12845.0, \"author_id\": 1022.0, \"id_y\": 1022.0, \"author\": \"zeit\", \"author_group\": \"Other\"}, {\"id_x\": 12847, \"umap_x\": -3.8114356994628906, \"umap_y\": 2.6395790576934814, \"post_id\": 12847.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 12849, \"umap_x\": 1.8429640531539917, \"umap_y\": 3.4798898696899414, \"post_id\": 12849.0, \"author_id\": 312.0, \"id_y\": 312.0, \"author\": \"Autonome Gruppen\", \"author_group\": \"Other\"}, {\"id_x\": 12851, \"umap_x\": -4.539707183837891, \"umap_y\": 4.533158302307129, \"post_id\": 12851.0, \"author_id\": 311.0, \"id_y\": 311.0, \"author\": \"Defend Kurdistan\", \"author_group\": \"Other\"}, {\"id_x\": 12870, \"umap_x\": 0.5014799237251282, \"umap_y\": 6.099520206451416, \"post_id\": 12870.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12872, \"umap_x\": -0.883625328540802, \"umap_y\": -0.7709675431251526, \"post_id\": 12872.0, \"author_id\": 1037.0, \"id_y\": 1037.0, \"author\": \"crimethInc\", \"author_group\": \"Other\"}, {\"id_x\": 12880, \"umap_x\": 0.6758055090904236, \"umap_y\": 4.078956604003906, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12885, \"umap_x\": 0.5403445959091187, \"umap_y\": 4.103304862976074, \"post_id\": 12885.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12890, \"umap_x\": 1.4402837753295898, \"umap_y\": 3.2848920822143555, \"post_id\": 12890.0, \"author_id\": 1038.0, \"id_y\": 1038.0, \"author\": \"Timo Lehmann\", \"author_group\": \"Other\"}, {\"id_x\": 12890, \"umap_x\": 1.4402837753295898, \"umap_y\": 3.2848920822143555, \"post_id\": 12890.0, \"author_id\": 20.0, \"id_y\": 20.0, \"author\": \"Spiegel\", \"author_group\": \"Other\"}, {\"id_x\": 12892, \"umap_x\": 0.4793411195278168, \"umap_y\": 0.7277126908302307, \"post_id\": 12892.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 12892, \"umap_x\": 0.4793411195278168, \"umap_y\": 0.7277126908302307, \"post_id\": 12892.0, \"author_id\": 690.0, \"id_y\": 690.0, \"author\": \"ND\", \"author_group\": \"ND\"}, {\"id_x\": 12894, \"umap_x\": 0.15363238751888275, \"umap_y\": 4.078104496002197, \"post_id\": 12894.0, \"author_id\": 1039.0, \"id_y\": 1039.0, \"author\": \"Henning von Stoltzenberg\", \"author_group\": \"Other\"}, {\"id_x\": 12896, \"umap_x\": 0.10058186203241348, \"umap_y\": 2.3381097316741943, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 12898, \"umap_x\": -2.78305983543396, \"umap_y\": 2.3948681354522705, \"post_id\": 12898.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 12898, \"umap_x\": -2.78305983543396, \"umap_y\": 2.3948681354522705, \"post_id\": 12898.0, \"author_id\": 809.0, \"id_y\": 809.0, \"author\": \"TAZ\", \"author_group\": \"Other\"}, {\"id_x\": 12900, \"umap_x\": 0.31232789158821106, \"umap_y\": 2.037294864654541, \"post_id\": 12900.0, \"author_id\": 1040.0, \"id_y\": 1040.0, \"author\": \"Ralf D.\", \"author_group\": \"Other\"}, {\"id_x\": 12902, \"umap_x\": -1.366214632987976, \"umap_y\": -1.656084418296814, \"post_id\": 12902.0, \"author_id\": 693.0, \"id_y\": 693.0, \"author\": \"Astrid Geisler\", \"author_group\": \"Other\"}, {\"id_x\": 12902, \"umap_x\": -1.366214632987976, \"umap_y\": -1.656084418296814, \"post_id\": 12902.0, \"author_id\": 1041.0, \"id_y\": 1041.0, \"author\": \"Luisa Hommerich\", \"author_group\": \"Other\"}, {\"id_x\": 12902, \"umap_x\": -1.366214632987976, \"umap_y\": -1.656084418296814, \"post_id\": 12902.0, \"author_id\": 654.0, \"id_y\": 654.0, \"author\": \"Andrea R\\u00f6pke\", \"author_group\": \"Other\"}, {\"id_x\": 12902, \"umap_x\": -1.366214632987976, \"umap_y\": -1.656084418296814, \"post_id\": 12902.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 12904, \"umap_x\": 0.022030094638466835, \"umap_y\": 0.9897658228874207, \"post_id\": 12904.0, \"author_id\": 723.0, \"id_y\": 723.0, \"author\": \"Steffi Suhr\", \"author_group\": \"Other\"}, {\"id_x\": 12904, \"umap_x\": 0.022030094638466835, \"umap_y\": 0.9897658228874207, \"post_id\": 12904.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 12906, \"umap_x\": -1.4432406425476074, \"umap_y\": 5.046963214874268, \"post_id\": 12906.0, \"author_id\": 768.0, \"id_y\": 768.0, \"author\": \"Pro Choice Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12922, \"umap_x\": -0.7002443671226501, \"umap_y\": 2.8651821613311768, \"post_id\": 12922.0, \"author_id\": 768.0, \"id_y\": 768.0, \"author\": \"Pro Choice Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 12925, \"umap_x\": 1.8200634717941284, \"umap_y\": 3.5124855041503906, \"post_id\": 12925.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 12927, \"umap_x\": -0.13574303686618805, \"umap_y\": 4.297042369842529, \"post_id\": 12927.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12930, \"umap_x\": -1.7129648923873901, \"umap_y\": 3.828237533569336, \"post_id\": 12930.0, \"author_id\": 1042.0, \"id_y\": 1042.0, \"author\": \"Zimmerwald-Komitee\", \"author_group\": \"Other\"}, {\"id_x\": 12936, \"umap_x\": 1.8716704845428467, \"umap_y\": 3.448974847793579, \"post_id\": 12936.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12938, \"umap_x\": -2.831937074661255, \"umap_y\": -1.7891457080841064, \"post_id\": 12938.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 12938, \"umap_x\": -2.831937074661255, \"umap_y\": -1.7891457080841064, \"post_id\": 12938.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 12940, \"umap_x\": -2.9714479446411133, \"umap_y\": 0.8077261447906494, \"post_id\": 12940.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 12943, \"umap_x\": 0.4844673275947571, \"umap_y\": 1.6132926940917969, \"post_id\": 12943.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12945, \"umap_x\": -1.692605972290039, \"umap_y\": 1.586675763130188, \"post_id\": 12945.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 12945, \"umap_x\": -1.692605972290039, \"umap_y\": 1.586675763130188, \"post_id\": 12945.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 12950, \"umap_x\": -0.39561644196510315, \"umap_y\": 2.008521795272827, \"post_id\": 12950.0, \"author_id\": 236.0, \"id_y\": 236.0, \"author\": \"autor\", \"author_group\": \"Other\"}, {\"id_x\": 12958, \"umap_x\": -0.8178226351737976, \"umap_y\": -0.8402153253555298, \"post_id\": 12958.0, \"author_id\": 334.0, \"id_y\": 334.0, \"author\": \"anonym\", \"author_group\": \"Other\"}, {\"id_x\": 12969, \"umap_x\": -0.8813645243644714, \"umap_y\": 0.566699206829071, \"post_id\": 12969.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12971, \"umap_x\": -0.3919515013694763, \"umap_y\": -1.7242164611816406, \"post_id\": 12971.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 12973, \"umap_x\": -1.1022065877914429, \"umap_y\": 3.27510404586792, \"post_id\": 12973.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12988, \"umap_x\": 0.30037784576416016, \"umap_y\": 5.808591365814209, \"post_id\": 12988.0, \"author_id\": 1043.0, \"id_y\": 1043.0, \"author\": \"Antifa Wien\", \"author_group\": \"Other\"}, {\"id_x\": 12992, \"umap_x\": 1.728460669517517, \"umap_y\": 3.553055763244629, \"post_id\": 12992.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 12994, \"umap_x\": 1.3016897439956665, \"umap_y\": 2.855252742767334, \"post_id\": 12994.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 12996, \"umap_x\": -3.818087577819824, \"umap_y\": 2.4737184047698975, \"post_id\": 12996.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13006, \"umap_x\": -3.023470878601074, \"umap_y\": 0.732147753238678, \"post_id\": 13006.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13011, \"umap_x\": -0.9974824786186218, \"umap_y\": 0.5336084365844727, \"post_id\": 13011.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13013, \"umap_x\": -1.0301750898361206, \"umap_y\": 0.8739896416664124, \"post_id\": 13013.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13016, \"umap_x\": -1.195762038230896, \"umap_y\": 4.406454563140869, \"post_id\": 13016.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13020, \"umap_x\": 0.08184690773487091, \"umap_y\": 1.5557397603988647, \"post_id\": 13020.0, \"author_id\": 1044.0, \"id_y\": 1044.0, \"author\": \"Isolde St\\u00f6cker-Gietl\", \"author_group\": \"Other\"}, {\"id_x\": 13022, \"umap_x\": -3.803652286529541, \"umap_y\": 0.5193685293197632, \"post_id\": 13022.0, \"author_id\": 1045.0, \"id_y\": 1045.0, \"author\": \"Jan Heidtmann\", \"author_group\": \"Other\"}, {\"id_x\": 13022, \"umap_x\": -3.803652286529541, \"umap_y\": 0.5193685293197632, \"post_id\": 13022.0, \"author_id\": 1046.0, \"id_y\": 1046.0, \"author\": \"Iris Mayer\", \"author_group\": \"Other\"}, {\"id_x\": 13022, \"umap_x\": -3.803652286529541, \"umap_y\": 0.5193685293197632, \"post_id\": 13022.0, \"author_id\": 1047.0, \"id_y\": 1047.0, \"author\": \"Christoph Koopmann\", \"author_group\": \"Other\"}, {\"id_x\": 13024, \"umap_x\": -2.2320446968078613, \"umap_y\": -0.24609695374965668, \"post_id\": 13024.0, \"author_id\": 1048.0, \"id_y\": 1048.0, \"author\": \"Ralf Julke\", \"author_group\": \"Other\"}, {\"id_x\": 13024, \"umap_x\": -2.2320446968078613, \"umap_y\": -0.24609695374965668, \"post_id\": 13024.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13026, \"umap_x\": 1.2970898151397705, \"umap_y\": -0.1905190795660019, \"post_id\": 13026.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 13028, \"umap_x\": 0.3773300051689148, \"umap_y\": 0.04001011699438095, \"post_id\": 13028.0, \"author_id\": 530.0, \"id_y\": 530.0, \"author\": \"Michael Bartsch\", \"author_group\": \"Other\"}, {\"id_x\": 13030, \"umap_x\": -2.0054662227630615, \"umap_y\": 2.4549639225006104, \"post_id\": 13030.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 13032, \"umap_x\": -2.798988103866577, \"umap_y\": -1.7515350580215454, \"post_id\": 13032.0, \"author_id\": 724.0, \"id_y\": 724.0, \"author\": \"Kevin Santy\", \"author_group\": \"Other\"}, {\"id_x\": 13032, \"umap_x\": -2.798988103866577, \"umap_y\": -1.7515350580215454, \"post_id\": 13032.0, \"author_id\": 1049.0, \"id_y\": 1049.0, \"author\": \"Sonja Garan\", \"author_group\": \"Other\"}, {\"id_x\": 13032, \"umap_x\": -2.798988103866577, \"umap_y\": -1.7515350580215454, \"post_id\": 13032.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13034, \"umap_x\": -3.2799763679504395, \"umap_y\": 0.8112655282020569, \"post_id\": 13034.0, \"author_id\": 1024.0, \"id_y\": 1024.0, \"author\": \"Caroline Wiede\", \"author_group\": \"Other\"}, {\"id_x\": 13034, \"umap_x\": -3.2799763679504395, \"umap_y\": 0.8112655282020569, \"post_id\": 13034.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13036, \"umap_x\": -3.8730804920196533, \"umap_y\": 2.5965662002563477, \"post_id\": 13036.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13036, \"umap_x\": -3.8730804920196533, \"umap_y\": 2.5965662002563477, \"post_id\": 13036.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13038, \"umap_x\": -2.506272554397583, \"umap_y\": 0.1769467294216156, \"post_id\": 13038.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 13038, \"umap_x\": -2.506272554397583, \"umap_y\": 0.1769467294216156, \"post_id\": 13038.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13040, \"umap_x\": 1.038719892501831, \"umap_y\": 1.0321521759033203, \"post_id\": 13040.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 13042, \"umap_x\": -2.7622454166412354, \"umap_y\": -0.6487886309623718, \"post_id\": 13042.0, \"author_id\": 838.0, \"id_y\": 838.0, \"author\": \"Nora Kneer\", \"author_group\": \"Other\"}, {\"id_x\": 13042, \"umap_x\": -2.7622454166412354, \"umap_y\": -0.6487886309623718, \"post_id\": 13042.0, \"author_id\": 1024.0, \"id_y\": 1024.0, \"author\": \"Caroline Wiede\", \"author_group\": \"Other\"}, {\"id_x\": 13042, \"umap_x\": -2.7622454166412354, \"umap_y\": -0.6487886309623718, \"post_id\": 13042.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13044, \"umap_x\": 0.7142372727394104, \"umap_y\": 4.021353244781494, \"post_id\": 13044.0, \"author_id\": 667.0, \"id_y\": 667.0, \"author\": \"Christopher Wimmer\", \"author_group\": \"Other\"}, {\"id_x\": 13046, \"umap_x\": -1.1141812801361084, \"umap_y\": 1.704392671585083, \"post_id\": 13046.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 13046, \"umap_x\": -1.1141812801361084, \"umap_y\": 1.704392671585083, \"post_id\": 13046.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13048, \"umap_x\": -1.7635564804077148, \"umap_y\": 3.062927484512329, \"post_id\": 13048.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13051, \"umap_x\": -0.6980203986167908, \"umap_y\": -1.381011962890625, \"post_id\": 13051.0, \"author_id\": 941.0, \"id_y\": 941.0, \"author\": \"Spiegel Online\", \"author_group\": \"Other\"}, {\"id_x\": 13051, \"umap_x\": -0.6980203986167908, \"umap_y\": -1.381011962890625, \"post_id\": 13051.0, \"author_id\": 1050.0, \"id_y\": 1050.0, \"author\": \"Hubert Gude\", \"author_group\": \"Other\"}, {\"id_x\": 13051, \"umap_x\": -0.6980203986167908, \"umap_y\": -1.381011962890625, \"post_id\": 13051.0, \"author_id\": 1051.0, \"id_y\": 1051.0, \"author\": \"Julia J\\u00fcttner\", \"author_group\": \"Other\"}, {\"id_x\": 13068, \"umap_x\": -1.4259690046310425, \"umap_y\": 1.4003181457519531, \"post_id\": 13068.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13071, \"umap_x\": -1.1132069826126099, \"umap_y\": 4.133034706115723, \"post_id\": 13071.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13074, \"umap_x\": -1.3780385255813599, \"umap_y\": 4.80220890045166, \"post_id\": 13074.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13076, \"umap_x\": -2.201507568359375, \"umap_y\": 1.298658013343811, \"post_id\": 13076.0, \"author_id\": 1052.0, \"id_y\": 1052.0, \"author\": \"Hospi30\", \"author_group\": \"Other\"}, {\"id_x\": 13078, \"umap_x\": -0.5403884649276733, \"umap_y\": 1.6513514518737793, \"post_id\": 13078.0, \"author_id\": 1053.0, \"id_y\": 1053.0, \"author\": \"RM16\", \"author_group\": \"Other\"}, {\"id_x\": 13081, \"umap_x\": -1.8211655616760254, \"umap_y\": 4.399627685546875, \"post_id\": 13081.0, \"author_id\": 1054.0, \"id_y\": 1054.0, \"author\": \"Murray Bookchin\", \"author_group\": \"Other\"}, {\"id_x\": 13086, \"umap_x\": -1.52296781539917, \"umap_y\": 2.926060914993286, \"post_id\": 13086.0, \"author_id\": 1055.0, \"id_y\": 1055.0, \"author\": \"Jens Uthoff\", \"author_group\": \"Other\"}, {\"id_x\": 13086, \"umap_x\": -1.52296781539917, \"umap_y\": 2.926060914993286, \"post_id\": 13086.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13088, \"umap_x\": 2.0783722400665283, \"umap_y\": 3.386871576309204, \"post_id\": 13088.0, \"author_id\": 1056.0, \"id_y\": 1056.0, \"author\": \"Antifaschistisches Solidarit\\u00e4tskomitee\", \"author_group\": \"Other\"}, {\"id_x\": 13090, \"umap_x\": -1.2743642330169678, \"umap_y\": 0.6034947633743286, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13092, \"umap_x\": -1.9891594648361206, \"umap_y\": 4.287553787231445, \"post_id\": 13092.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13095, \"umap_x\": -0.57635098695755, \"umap_y\": 4.049878120422363, \"post_id\": 13095.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 13110, \"umap_x\": -1.965279221534729, \"umap_y\": 3.8099982738494873, \"post_id\": 13110.0, \"author_id\": 1057.0, \"id_y\": 1057.0, \"author\": \"anarchxs\", \"author_group\": \"Other\"}, {\"id_x\": 13114, \"umap_x\": -1.0919830799102783, \"umap_y\": 3.8753440380096436, \"post_id\": 13114.0, \"author_id\": 1058.0, \"id_y\": 1058.0, \"author\": \"Zimmerwald_Komitee\", \"author_group\": \"Other\"}, {\"id_x\": 13120, \"umap_x\": -0.2801835536956787, \"umap_y\": 3.1955177783966064, \"post_id\": 13120.0, \"author_id\": 1059.0, \"id_y\": 1059.0, \"author\": \"Burkhard Garweg\", \"author_group\": \"Other\"}, {\"id_x\": 13125, \"umap_x\": 0.5220750570297241, \"umap_y\": 6.0596771240234375, \"post_id\": 13125.0, \"author_id\": 1060.0, \"id_y\": 1060.0, \"author\": \"Richard Schuberth\", \"author_group\": \"Other\"}, {\"id_x\": 13127, \"umap_x\": 0.4522792100906372, \"umap_y\": 1.2262874841690063, \"post_id\": 13127.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13132, \"umap_x\": -1.9599202871322632, \"umap_y\": 0.7087686657905579, \"post_id\": 13132.0, \"author_id\": 312.0, \"id_y\": 312.0, \"author\": \"Autonome Gruppen\", \"author_group\": \"Other\"}, {\"id_x\": 13138, \"umap_x\": 0.45107418298721313, \"umap_y\": 4.076976299285889, \"post_id\": 13138.0, \"author_id\": 643.0, \"id_y\": 643.0, \"author\": \"antifa\", \"author_group\": \"Other\"}, {\"id_x\": 13142, \"umap_x\": -0.24200284481048584, \"umap_y\": 1.0637630224227905, \"post_id\": 13142.0, \"author_id\": 273.0, \"id_y\": 273.0, \"author\": \"t-online\", \"author_group\": \"Other\"}, {\"id_x\": 13144, \"umap_x\": -2.0822596549987793, \"umap_y\": 0.9642488360404968, \"post_id\": 13144.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 13146, \"umap_x\": -1.0419272184371948, \"umap_y\": 2.121181011199951, \"post_id\": 13146.0, \"author_id\": 79.0, \"id_y\": 79.0, \"author\": \"Susanne Sodan\", \"author_group\": \"Other\"}, {\"id_x\": 13146, \"umap_x\": -1.0419272184371948, \"umap_y\": 2.121181011199951, \"post_id\": 13146.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 13146, \"umap_x\": -1.0419272184371948, \"umap_y\": 2.121181011199951, \"post_id\": 13146.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13148, \"umap_x\": 1.2992486953735352, \"umap_y\": 3.666707992553711, \"post_id\": 13148.0, \"author_id\": 195.0, \"id_y\": 195.0, \"author\": \"Antonie Rietzschel\", \"author_group\": \"Antonie Rietzschel\"}, {\"id_x\": 13148, \"umap_x\": 1.2992486953735352, \"umap_y\": 3.666707992553711, \"post_id\": 13148.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13150, \"umap_x\": 2.094852924346924, \"umap_y\": 3.384614944458008, \"post_id\": 13150.0, \"author_id\": 1061.0, \"id_y\": 1061.0, \"author\": \"Alea\", \"author_group\": \"Other\"}, {\"id_x\": 13160, \"umap_x\": 1.3603206872940063, \"umap_y\": 3.1750400066375732, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13163, \"umap_x\": -2.9887468814849854, \"umap_y\": -0.8347058296203613, \"post_id\": 13163.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13167, \"umap_x\": 2.077132225036621, \"umap_y\": 3.393186569213867, \"post_id\": 13167.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13170, \"umap_x\": -2.386169195175171, \"umap_y\": 1.0465487241744995, \"post_id\": 13170.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13172, \"umap_x\": -3.1633822917938232, \"umap_y\": 0.9585638642311096, \"post_id\": 13172.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13176, \"umap_x\": 2.1361148357391357, \"umap_y\": 3.36067533493042, \"post_id\": 13176.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13178, \"umap_x\": 2.0145957469940186, \"umap_y\": 3.4300637245178223, \"post_id\": 13178.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 13180, \"umap_x\": -1.887046456336975, \"umap_y\": 0.25951504707336426, \"post_id\": 13180.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13193, \"umap_x\": -1.2464466094970703, \"umap_y\": 0.5246531963348389, \"post_id\": 13193.0, \"author_id\": 1030.0, \"id_y\": 1030.0, \"author\": \"RM16\", \"author_group\": \"Other\"}, {\"id_x\": 13195, \"umap_x\": -1.92052161693573, \"umap_y\": 1.7216275930404663, \"post_id\": 13195.0, \"author_id\": 1062.0, \"id_y\": 1062.0, \"author\": \"Natascha Strobl\", \"author_group\": \"Other\"}, {\"id_x\": 13195, \"umap_x\": -1.92052161693573, \"umap_y\": 1.7216275930404663, \"post_id\": 13195.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13197, \"umap_x\": -1.316510796546936, \"umap_y\": 0.6433168053627014, \"post_id\": 13197.0, \"author_id\": 1030.0, \"id_y\": 1030.0, \"author\": \"RM16\", \"author_group\": \"Other\"}, {\"id_x\": 13200, \"umap_x\": -1.11879563331604, \"umap_y\": 2.9983978271484375, \"post_id\": 13200.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13202, \"umap_x\": 0.7312302589416504, \"umap_y\": 0.4792674779891968, \"post_id\": 13202.0, \"author_id\": 1063.0, \"id_y\": 1063.0, \"author\": \"Zentrum f\\u00fcr politischen Sachschaden\", \"author_group\": \"Other\"}, {\"id_x\": 13210, \"umap_x\": 2.1510748863220215, \"umap_y\": 3.3477396965026855, \"post_id\": 13210.0, \"author_id\": 1064.0, \"id_y\": 1064.0, \"author\": \"FreeNanuk\", \"author_group\": \"Other\"}, {\"id_x\": 13219, \"umap_x\": 0.4462492763996124, \"umap_y\": 2.967620372772217, \"post_id\": 13219.0, \"author_id\": 1034.0, \"id_y\": 1034.0, \"author\": \"epd\", \"author_group\": \"Other\"}, {\"id_x\": 13221, \"umap_x\": -0.824748158454895, \"umap_y\": 3.579749822616577, \"post_id\": 13221.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13224, \"umap_x\": -0.4894203841686249, \"umap_y\": 3.835610866546631, \"post_id\": 13224.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13226, \"umap_x\": -1.9039949178695679, \"umap_y\": 3.4517176151275635, \"post_id\": 13226.0, \"author_id\": 1010.0, \"id_y\": 1010.0, \"author\": \"Zimmerwald Komitee\", \"author_group\": \"Other\"}, {\"id_x\": 13234, \"umap_x\": 0.010047603398561478, \"umap_y\": -0.20351465046405792, \"post_id\": 13234.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 13234, \"umap_x\": 0.010047603398561478, \"umap_y\": -0.20351465046405792, \"post_id\": 13234.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13236, \"umap_x\": 0.5286129117012024, \"umap_y\": 0.15122206509113312, \"post_id\": 13236.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 13236, \"umap_x\": 0.5286129117012024, \"umap_y\": 0.15122206509113312, \"post_id\": 13236.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13238, \"umap_x\": -3.0221517086029053, \"umap_y\": 4.312770366668701, \"post_id\": 13238.0, \"author_id\": 1035.0, \"id_y\": 1035.0, \"author\": \"Natalie Meinert\", \"author_group\": \"Other\"}, {\"id_x\": 13238, \"umap_x\": -3.0221517086029053, \"umap_y\": 4.312770366668701, \"post_id\": 13238.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13240, \"umap_x\": -3.3432018756866455, \"umap_y\": 0.566173255443573, \"post_id\": 13240.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13242, \"umap_x\": -3.4097180366516113, \"umap_y\": -0.3198450803756714, \"post_id\": 13242.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 13242, \"umap_x\": -3.4097180366516113, \"umap_y\": -0.3198450803756714, \"post_id\": 13242.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13244, \"umap_x\": -1.606609582901001, \"umap_y\": 1.4536752700805664, \"post_id\": 13244.0, \"author_id\": 1065.0, \"id_y\": 1065.0, \"author\": \"Pia Lucchesi Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 13246, \"umap_x\": -2.9084346294403076, \"umap_y\": -0.289065420627594, \"post_id\": 13246.0, \"author_id\": 263.0, \"id_y\": 263.0, \"author\": \"Alexander Bischoff\", \"author_group\": \"Other\"}, {\"id_x\": 13248, \"umap_x\": -0.7098966240882874, \"umap_y\": 4.2532243728637695, \"post_id\": 13248.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13250, \"umap_x\": -1.2390947341918945, \"umap_y\": 4.6213908195495605, \"post_id\": 13250.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13252, \"umap_x\": -3.9404280185699463, \"umap_y\": 2.592128276824951, \"post_id\": 13252.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13252, \"umap_x\": -3.9404280185699463, \"umap_y\": 2.592128276824951, \"post_id\": 13252.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13254, \"umap_x\": -2.4055075645446777, \"umap_y\": 1.6095331907272339, \"post_id\": 13254.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 13254, \"umap_x\": -2.4055075645446777, \"umap_y\": 1.6095331907272339, \"post_id\": 13254.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13268, \"umap_x\": -1.400263786315918, \"umap_y\": 2.4916269779205322, \"post_id\": 13268.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13271, \"umap_x\": -3.224914073944092, \"umap_y\": -0.00809754803776741, \"post_id\": 13271.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13273, \"umap_x\": 0.2024327665567398, \"umap_y\": 0.3145577907562256, \"post_id\": 13273.0, \"author_id\": 275.0, \"id_y\": 275.0, \"author\": \"Steffi Robak\", \"author_group\": \"Other\"}, {\"id_x\": 13273, \"umap_x\": 0.2024327665567398, \"umap_y\": 0.3145577907562256, \"post_id\": 13273.0, \"author_id\": 1066.0, \"id_y\": 1066.0, \"author\": \"DNN\", \"author_group\": \"Other\"}, {\"id_x\": 13275, \"umap_x\": 0.9002260565757751, \"umap_y\": 2.059093475341797, \"post_id\": 13275.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 13275, \"umap_x\": 0.9002260565757751, \"umap_y\": 2.059093475341797, \"post_id\": 13275.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13277, \"umap_x\": 0.36319729685783386, \"umap_y\": 2.1864662170410156, \"post_id\": 13277.0, \"author_id\": 1067.0, \"id_y\": 1067.0, \"author\": \"NSU-Watch\", \"author_group\": \"Other\"}, {\"id_x\": 13283, \"umap_x\": 0.3587275445461273, \"umap_y\": 5.276946067810059, \"post_id\": 13283.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 13290, \"umap_x\": 0.43688419461250305, \"umap_y\": -0.5798207521438599, \"post_id\": 13290.0, \"author_id\": 1068.0, \"id_y\": 1068.0, \"author\": \"domr\\u00f6s\", \"author_group\": \"Other\"}, {\"id_x\": 13290, \"umap_x\": 0.43688419461250305, \"umap_y\": -0.5798207521438599, \"post_id\": 13290.0, \"author_id\": 1069.0, \"id_y\": 1069.0, \"author\": \"burkhard\", \"author_group\": \"Other\"}, {\"id_x\": 13292, \"umap_x\": -1.0946406126022339, \"umap_y\": -0.13630786538124084, \"post_id\": 13292.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 13292, \"umap_x\": -1.0946406126022339, \"umap_y\": -0.13630786538124084, \"post_id\": 13292.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13294, \"umap_x\": -0.0956243947148323, \"umap_y\": 1.0535492897033691, \"post_id\": 13294.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 13294, \"umap_x\": -0.0956243947148323, \"umap_y\": 1.0535492897033691, \"post_id\": 13294.0, \"author_id\": 293.0, \"id_y\": 293.0, \"author\": \"Mopo\", \"author_group\": \"Other\"}, {\"id_x\": 13296, \"umap_x\": -3.5997955799102783, \"umap_y\": 2.804337739944458, \"post_id\": 13296.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13296, \"umap_x\": -3.5997955799102783, \"umap_y\": 2.804337739944458, \"post_id\": 13296.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13298, \"umap_x\": -0.028874633833765984, \"umap_y\": 4.090909481048584, \"post_id\": 13298.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 13309, \"umap_x\": -2.054811954498291, \"umap_y\": 4.00642728805542, \"post_id\": 13309.0, \"author_id\": 1070.0, \"id_y\": 1070.0, \"author\": \"Rheinmetall\", \"author_group\": \"Other\"}, {\"id_x\": 13312, \"umap_x\": 0.1521647870540619, \"umap_y\": 5.629202365875244, \"post_id\": 13312.0, \"author_id\": 1071.0, \"id_y\": 1071.0, \"author\": \"Michael B. Elm\", \"author_group\": \"Other\"}, {\"id_x\": 13315, \"umap_x\": -1.7719415426254272, \"umap_y\": -0.10356409102678299, \"post_id\": 13315.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13315, \"umap_x\": -1.7719415426254272, \"umap_y\": -0.10356409102678299, \"post_id\": 13315.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13317, \"umap_x\": 0.9010963439941406, \"umap_y\": 0.9185795783996582, \"post_id\": 13317.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 13317, \"umap_x\": 0.9010963439941406, \"umap_y\": 0.9185795783996582, \"post_id\": 13317.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13324, \"umap_x\": -2.3914616107940674, \"umap_y\": -0.17692191898822784, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13327, \"umap_x\": -0.35951554775238037, \"umap_y\": 0.7550721168518066, \"post_id\": 13327.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13329, \"umap_x\": -1.6469097137451172, \"umap_y\": -0.6695114970207214, \"post_id\": 13329.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 13329, \"umap_x\": -1.6469097137451172, \"umap_y\": -0.6695114970207214, \"post_id\": 13329.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13331, \"umap_x\": -2.181406259536743, \"umap_y\": 1.2909507751464844, \"post_id\": 13331.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 13333, \"umap_x\": 1.3177073001861572, \"umap_y\": 0.43240419030189514, \"post_id\": 13333.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 13335, \"umap_x\": -1.2211586236953735, \"umap_y\": 0.9974422454833984, \"post_id\": 13335.0, \"author_id\": 1072.0, \"id_y\": 1072.0, \"author\": \"Peter Poensgen\", \"author_group\": \"Other\"}, {\"id_x\": 13335, \"umap_x\": -1.2211586236953735, \"umap_y\": 0.9974422454833984, \"post_id\": 13335.0, \"author_id\": 112.0, \"id_y\": 112.0, \"author\": \"BILD\", \"author_group\": \"Other\"}, {\"id_x\": 13350, \"umap_x\": -2.3542747497558594, \"umap_y\": 1.9276354312896729, \"post_id\": 13350.0, \"author_id\": 1073.0, \"id_y\": 1073.0, \"author\": \"Manfred M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 13350, \"umap_x\": -2.3542747497558594, \"umap_y\": 1.9276354312896729, \"post_id\": 13350.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 13353, \"umap_x\": 0.2901599407196045, \"umap_y\": -0.43446701765060425, \"post_id\": 13353.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13355, \"umap_x\": -2.106506824493408, \"umap_y\": 4.032296180725098, \"post_id\": 13355.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13357, \"umap_x\": -2.5430498123168945, \"umap_y\": 0.10623461753129959, \"post_id\": 13357.0, \"author_id\": 1074.0, \"id_y\": 1074.0, \"author\": \"Cops\", \"author_group\": \"Other\"}, {\"id_x\": 13362, \"umap_x\": -1.0662305355072021, \"umap_y\": 0.8404980897903442, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13367, \"umap_x\": 0.30875658988952637, \"umap_y\": 1.876447081565857, \"post_id\": 13367.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 13367, \"umap_x\": 0.30875658988952637, \"umap_y\": 1.876447081565857, \"post_id\": 13367.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 13369, \"umap_x\": 2.0547139644622803, \"umap_y\": 3.341407060623169, \"post_id\": 13369.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13371, \"umap_x\": -0.05400228872895241, \"umap_y\": 4.109887599945068, \"post_id\": 13371.0, \"author_id\": 1075.0, \"id_y\": 1075.0, \"author\": \"BASC.NEWS\", \"author_group\": \"Other\"}, {\"id_x\": 13373, \"umap_x\": -1.4150100946426392, \"umap_y\": 5.401250839233398, \"post_id\": 13373.0, \"author_id\": 902.0, \"id_y\": 902.0, \"author\": \"rls\", \"author_group\": \"Other\"}, {\"id_x\": 13375, \"umap_x\": -3.6095480918884277, \"umap_y\": -0.09910859912633896, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13377, \"umap_x\": -4.213109493255615, \"umap_y\": -0.3069824278354645, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13379, \"umap_x\": -2.6133782863616943, \"umap_y\": -0.4501020908355713, \"post_id\": 13379.0, \"author_id\": 972.0, \"id_y\": 972.0, \"author\": \"Nikolaus Neidhardt\", \"author_group\": \"Other\"}, {\"id_x\": 13379, \"umap_x\": -2.6133782863616943, \"umap_y\": -0.4501020908355713, \"post_id\": 13379.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13381, \"umap_x\": -1.8592227697372437, \"umap_y\": -0.4852333664894104, \"post_id\": 13381.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 13381, \"umap_x\": -1.8592227697372437, \"umap_y\": -0.4852333664894104, \"post_id\": 13381.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13383, \"umap_x\": 0.43272486329078674, \"umap_y\": 5.782133102416992, \"post_id\": 13383.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 13383, \"umap_x\": 0.43272486329078674, \"umap_y\": 5.782133102416992, \"post_id\": 13383.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13387, \"umap_x\": 1.411165714263916, \"umap_y\": -0.08895717561244965, \"post_id\": 13387.0, \"author_id\": 1076.0, \"id_y\": 1076.0, \"author\": \"Franziska H\\u00f6hnl\", \"author_group\": \"Other\"}, {\"id_x\": 13387, \"umap_x\": 1.411165714263916, \"umap_y\": -0.08895717561244965, \"post_id\": 13387.0, \"author_id\": 126.0, \"id_y\": 126.0, \"author\": \"S\\u00e4chsische Zeitung\", \"author_group\": \"S\\u00e4chsische Zeitung\"}, {\"id_x\": 13389, \"umap_x\": 0.15563315153121948, \"umap_y\": 4.948539733886719, \"post_id\": 13389.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13391, \"umap_x\": -0.8266573548316956, \"umap_y\": 3.884542226791382, \"post_id\": 13391.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13394, \"umap_x\": -0.32253074645996094, \"umap_y\": 2.027520179748535, \"post_id\": 13394.0, \"author_id\": 1077.0, \"id_y\": 1077.0, \"author\": \"Chiara Pannullo\", \"author_group\": \"Other\"}, {\"id_x\": 13399, \"umap_x\": 0.11972905695438385, \"umap_y\": 1.0209029912948608, \"post_id\": 13399.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13402, \"umap_x\": -0.45482292771339417, \"umap_y\": -0.6176008582115173, \"post_id\": 13402.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13405, \"umap_x\": -1.702291488647461, \"umap_y\": 3.170764446258545, \"post_id\": 13405.0, \"author_id\": 1078.0, \"id_y\": 1078.0, \"author\": \"Internationalistisches Zentrum\", \"author_group\": \"Other\"}, {\"id_x\": 13427, \"umap_x\": -0.6281641721725464, \"umap_y\": 0.9317702054977417, \"post_id\": 13427.0, \"author_id\": 1079.0, \"id_y\": 1079.0, \"author\": \"Die langen Finger der Rigaer Stra\\u00dfe\", \"author_group\": \"Other\"}, {\"id_x\": 13448, \"umap_x\": -2.703856945037842, \"umap_y\": 3.7363595962524414, \"post_id\": 13448.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13452, \"umap_x\": -0.2717739939689636, \"umap_y\": 3.2884819507598877, \"post_id\": 13452.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 13454, \"umap_x\": -1.2619636058807373, \"umap_y\": 3.6398258209228516, \"post_id\": 13454.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 13460, \"umap_x\": -0.5435789823532104, \"umap_y\": 3.787147283554077, \"post_id\": 13460.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 13462, \"umap_x\": 0.05581177398562431, \"umap_y\": 4.114745140075684, \"post_id\": 13462.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 13474, \"umap_x\": -1.2034943103790283, \"umap_y\": 2.2547006607055664, \"post_id\": 13474.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13477, \"umap_x\": 1.6969783306121826, \"umap_y\": 3.5556766986846924, \"post_id\": 13477.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13479, \"umap_x\": 0.04634963348507881, \"umap_y\": 4.552357196807861, \"post_id\": 13479.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13481, \"umap_x\": 0.46014901995658875, \"umap_y\": 5.858445644378662, \"post_id\": 13481.0, \"author_id\": 1080.0, \"id_y\": 1080.0, \"author\": \"radikale linke\", \"author_group\": \"Other\"}, {\"id_x\": 13483, \"umap_x\": 0.4571243226528168, \"umap_y\": 5.293482303619385, \"post_id\": 13483.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 13485, \"umap_x\": -3.8411014080047607, \"umap_y\": 0.40069472789764404, \"post_id\": 13485.0, \"author_id\": 518.0, \"id_y\": 518.0, \"author\": \"Eric Mittmann\", \"author_group\": \"Other\"}, {\"id_x\": 13485, \"umap_x\": -3.8411014080047607, \"umap_y\": 0.40069472789764404, \"post_id\": 13485.0, \"author_id\": 1081.0, \"id_y\": 1081.0, \"author\": \"tag24\", \"author_group\": \"Other\"}, {\"id_x\": 13492, \"umap_x\": 0.1981109082698822, \"umap_y\": -0.04419814050197601, \"post_id\": 13492.0, \"author_id\": 1082.0, \"id_y\": 1082.0, \"author\": \"radicalpast\", \"author_group\": \"Other\"}, {\"id_x\": 13495, \"umap_x\": 0.573765754699707, \"umap_y\": 0.18787916004657745, \"post_id\": 13495.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13501, \"umap_x\": -4.00190544128418, \"umap_y\": -0.5478166937828064, \"post_id\": 13501.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 13503, \"umap_x\": -0.899890661239624, \"umap_y\": 1.962796926498413, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13511, \"umap_x\": -0.4934191405773163, \"umap_y\": -0.7700835466384888, \"post_id\": 13511.0, \"author_id\": 1083.0, \"id_y\": 1083.0, \"author\": \"VW-Arbeiter\", \"author_group\": \"Other\"}, {\"id_x\": 13514, \"umap_x\": -1.0479580163955688, \"umap_y\": -0.4484844207763672, \"post_id\": 13514.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 13516, \"umap_x\": -0.09413357079029083, \"umap_y\": 1.9083679914474487, \"post_id\": 13516.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13519, \"umap_x\": 0.4801599979400635, \"umap_y\": 5.639597415924072, \"post_id\": 13519.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 13523, \"umap_x\": -1.5197534561157227, \"umap_y\": 2.8888158798217773, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13533, \"umap_x\": 0.4917588233947754, \"umap_y\": 5.8966827392578125, \"post_id\": 13533.0, \"author_id\": 1084.0, \"id_y\": 1084.0, \"author\": \"Monty Ott\", \"author_group\": \"Other\"}, {\"id_x\": 13536, \"umap_x\": -2.1221439838409424, \"umap_y\": 4.410760879516602, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13539, \"umap_x\": -0.8385124802589417, \"umap_y\": 3.529247760772705, \"post_id\": 13539.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13541, \"umap_x\": 1.4668716192245483, \"umap_y\": 3.209559917449951, \"post_id\": 13541.0, \"author_id\": 241.0, \"id_y\": 241.0, \"author\": \"Einige\", \"author_group\": \"Other\"}, {\"id_x\": 13543, \"umap_x\": -3.0974156856536865, \"umap_y\": 3.059009075164795, \"post_id\": 13543.0, \"author_id\": 1085.0, \"id_y\": 1085.0, \"author\": \"Anarchistisches Netzwerk Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 13545, \"umap_x\": -0.6900129914283752, \"umap_y\": 4.280906677246094, \"post_id\": 13545.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13551, \"umap_x\": -2.5039565563201904, \"umap_y\": -0.32748857140541077, \"post_id\": 13551.0, \"author_id\": 479.0, \"id_y\": 479.0, \"author\": \"Bastian Fischer\", \"author_group\": \"Other\"}, {\"id_x\": 13557, \"umap_x\": -2.998323440551758, \"umap_y\": -1.418055772781372, \"post_id\": 13557.0, \"author_id\": 205.0, \"id_y\": 205.0, \"author\": \"Lucas B\\u00f6hme\", \"author_group\": \"Other\"}, {\"id_x\": 13562, \"umap_x\": -2.1052024364471436, \"umap_y\": 2.810178518295288, \"post_id\": 13562.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13565, \"umap_x\": -1.8933688402175903, \"umap_y\": 2.9481401443481445, \"post_id\": 13565.0, \"author_id\": 498.0, \"id_y\": 498.0, \"author\": \"MDR SACHSEN\", \"author_group\": \"Other\"}, {\"id_x\": 13570, \"umap_x\": -0.9228115081787109, \"umap_y\": 0.9111554622650146, \"post_id\": 13570.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 13573, \"umap_x\": -1.9804400205612183, \"umap_y\": 4.071408748626709, \"post_id\": 13573.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13580, \"umap_x\": 0.4017082750797272, \"umap_y\": 5.716037273406982, \"post_id\": 13580.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 13582, \"umap_x\": 0.41771358251571655, \"umap_y\": 6.041975975036621, \"post_id\": 13582.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13584, \"umap_x\": 0.1857304871082306, \"umap_y\": 2.531433343887329, \"post_id\": 13584.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 13591, \"umap_x\": -1.4227014780044556, \"umap_y\": 4.1424641609191895, \"post_id\": 13591.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13594, \"umap_x\": -0.7456316351890564, \"umap_y\": 5.16525936126709, \"post_id\": 13594.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13611, \"umap_x\": -0.6540114283561707, \"umap_y\": -0.7791385650634766, \"post_id\": 13611.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13614, \"umap_x\": -0.8323015570640564, \"umap_y\": 1.5241749286651611, \"post_id\": 13614.0, \"author_id\": 1086.0, \"id_y\": 1086.0, \"author\": \"Cornelia Lehmann\", \"author_group\": \"Other\"}, {\"id_x\": 13616, \"umap_x\": 0.7752050161361694, \"umap_y\": 1.2185425758361816, \"post_id\": 13616.0, \"author_id\": 100.0, \"id_y\": 100.0, \"author\": \"Yvonne Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 13616, \"umap_x\": 0.7752050161361694, \"umap_y\": 1.2185425758361816, \"post_id\": 13616.0, \"author_id\": 1087.0, \"id_y\": 1087.0, \"author\": \"katapult sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 13618, \"umap_x\": 0.9926339387893677, \"umap_y\": -0.8328354358673096, \"post_id\": 13618.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 13618, \"umap_x\": 0.9926339387893677, \"umap_y\": -0.8328354358673096, \"post_id\": 13618.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13620, \"umap_x\": 0.8685022592544556, \"umap_y\": 0.30971938371658325, \"post_id\": 13620.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 13620, \"umap_x\": 0.8685022592544556, \"umap_y\": 0.30971938371658325, \"post_id\": 13620.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13622, \"umap_x\": -2.5036027431488037, \"umap_y\": 1.8123323917388916, \"post_id\": 13622.0, \"author_id\": 38.0, \"id_y\": 38.0, \"author\": \"Ren\\u00e9 Loch\", \"author_group\": \"Other\"}, {\"id_x\": 13622, \"umap_x\": -2.5036027431488037, \"umap_y\": 1.8123323917388916, \"post_id\": 13622.0, \"author_id\": 928.0, \"id_y\": 928.0, \"author\": \"LIZ\", \"author_group\": \"Other\"}, {\"id_x\": 13631, \"umap_x\": 0.6609773635864258, \"umap_y\": 4.085376262664795, \"post_id\": 13631.0, \"author_id\": 418.0, \"id_y\": 418.0, \"author\": \"Rote Hilfe\", \"author_group\": \"Other\"}, {\"id_x\": 13633, \"umap_x\": -0.49253758788108826, \"umap_y\": 3.0030019283294678, \"post_id\": 13633.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13635, \"umap_x\": -0.4126776456832886, \"umap_y\": 1.7438544034957886, \"post_id\": 13635.0, \"author_id\": 39.0, \"id_y\": 39.0, \"author\": \"Rote Hilfe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13637, \"umap_x\": -3.7120349407196045, \"umap_y\": -1.0159893035888672, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13639, \"umap_x\": -0.0497329942882061, \"umap_y\": 2.432105779647827, \"post_id\": 13639.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13642, \"umap_x\": -1.734696626663208, \"umap_y\": 4.266362190246582, \"post_id\": 13642.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13661, \"umap_x\": -0.13165418803691864, \"umap_y\": 3.4867284297943115, \"post_id\": 13661.0, \"author_id\": 1088.0, \"id_y\": 1088.0, \"author\": \"Maja und Hanna\", \"author_group\": \"Other\"}, {\"id_x\": 13664, \"umap_x\": -1.3199455738067627, \"umap_y\": 1.2706937789916992, \"post_id\": 13664.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 13675, \"umap_x\": 1.176783800125122, \"umap_y\": 3.338183879852295, \"post_id\": 13675.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13677, \"umap_x\": -0.10016246885061264, \"umap_y\": 2.003974676132202, \"post_id\": 13677.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13681, \"umap_x\": -3.782869577407837, \"umap_y\": -0.9215654730796814, \"post_id\": 13681.0, \"author_id\": 1089.0, \"id_y\": 1089.0, \"author\": \"Sebastian Walther\", \"author_group\": \"Other\"}, {\"id_x\": 13683, \"umap_x\": -0.589408278465271, \"umap_y\": 2.0684752464294434, \"post_id\": 13683.0, \"author_id\": 1090.0, \"id_y\": 1090.0, \"author\": \"Enrico Glazner\", \"author_group\": \"Other\"}, {\"id_x\": 13685, \"umap_x\": 0.26386913657188416, \"umap_y\": 0.6323106288909912, \"post_id\": 13685.0, \"author_id\": 1091.0, \"id_y\": 1091.0, \"author\": \"Katrin Tominski\", \"author_group\": \"Other\"}, {\"id_x\": 13687, \"umap_x\": 1.1292325258255005, \"umap_y\": 0.5044633150100708, \"post_id\": 13687.0, \"author_id\": 742.0, \"id_y\": 742.0, \"author\": \"Nadja Malak\", \"author_group\": \"Other\"}, {\"id_x\": 13687, \"umap_x\": 1.1292325258255005, \"umap_y\": 0.5044633150100708, \"post_id\": 13687.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 13689, \"umap_x\": 0.6629680395126343, \"umap_y\": 0.38996201753616333, \"post_id\": 13689.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13691, \"umap_x\": 0.26854172348976135, \"umap_y\": -0.33045336604118347, \"post_id\": 13691.0, \"author_id\": 1092.0, \"id_y\": 1092.0, \"author\": \"J\\u00fcrgen Dahlkamp\", \"author_group\": \"Other\"}, {\"id_x\": 13693, \"umap_x\": -2.9919276237487793, \"umap_y\": -1.5440863370895386, \"post_id\": 13693.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13704, \"umap_x\": 0.9439127445220947, \"umap_y\": 3.9947497844696045, \"post_id\": 13704.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13706, \"umap_x\": 0.21362842619419098, \"umap_y\": 3.3365488052368164, \"post_id\": 13706.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13711, \"umap_x\": -3.1808958053588867, \"umap_y\": -0.4747653603553772, \"post_id\": 13711.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 13714, \"umap_x\": -0.8274209499359131, \"umap_y\": 4.090983867645264, \"post_id\": 13714.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13719, \"umap_x\": -0.6754284501075745, \"umap_y\": 2.3960559368133545, \"post_id\": 13719.0, \"author_id\": 1029.0, \"id_y\": 1029.0, \"author\": \"Provisorischer anarchistischer Antikriegsrat Berlin\", \"author_group\": \"Other\"}, {\"id_x\": 13722, \"umap_x\": 0.31779006123542786, \"umap_y\": 3.4123904705047607, \"post_id\": 13722.0, \"author_id\": 899.0, \"id_y\": 899.0, \"author\": \"Soligruppe Nanuk\", \"author_group\": \"Other\"}, {\"id_x\": 13725, \"umap_x\": -1.2897472381591797, \"umap_y\": 0.6480984091758728, \"post_id\": 13725.0, \"author_id\": 1030.0, \"id_y\": 1030.0, \"author\": \"RM16\", \"author_group\": \"Other\"}, {\"id_x\": 13728, \"umap_x\": -2.290644645690918, \"umap_y\": -0.43621209263801575, \"post_id\": 13728.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 13728, \"umap_x\": -2.290644645690918, \"umap_y\": -0.43621209263801575, \"post_id\": 13728.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13730, \"umap_x\": -3.708638906478882, \"umap_y\": -0.16147173941135406, \"post_id\": 13730.0, \"author_id\": 270.0, \"id_y\": 270.0, \"author\": \"Kerstin Decker\", \"author_group\": \"Other\"}, {\"id_x\": 13730, \"umap_x\": -3.708638906478882, \"umap_y\": -0.16147173941135406, \"post_id\": 13730.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13732, \"umap_x\": 0.5164480805397034, \"umap_y\": 1.7307482957839966, \"post_id\": 13732.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 13732, \"umap_x\": 0.5164480805397034, \"umap_y\": 1.7307482957839966, \"post_id\": 13732.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 13734, \"umap_x\": -0.9227069616317749, \"umap_y\": -1.2721353769302368, \"post_id\": 13734.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13734, \"umap_x\": -0.9227069616317749, \"umap_y\": -1.2721353769302368, \"post_id\": 13734.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13736, \"umap_x\": -2.5528085231781006, \"umap_y\": 0.42377322912216187, \"post_id\": 13736.0, \"author_id\": 1093.0, \"id_y\": 1093.0, \"author\": \"Cathrin Reichelt\", \"author_group\": \"Other\"}, {\"id_x\": 13738, \"umap_x\": -2.7699131965637207, \"umap_y\": 0.2467060387134552, \"post_id\": 13738.0, \"author_id\": 518.0, \"id_y\": 518.0, \"author\": \"Eric Mittmann\", \"author_group\": \"Other\"}, {\"id_x\": 13738, \"umap_x\": -2.7699131965637207, \"umap_y\": 0.2467060387134552, \"post_id\": 13738.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 13740, \"umap_x\": 1.4195833206176758, \"umap_y\": -0.676053524017334, \"post_id\": 13740.0, \"author_id\": 476.0, \"id_y\": 476.0, \"author\": \"Doreen Reinhard\", \"author_group\": \"Other\"}, {\"id_x\": 13748, \"umap_x\": -0.9588530659675598, \"umap_y\": 4.390141487121582, \"post_id\": 13748.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13750, \"umap_x\": -2.6287453174591064, \"umap_y\": 2.2644190788269043, \"post_id\": 13750.0, \"author_id\": 1094.0, \"id_y\": 1094.0, \"author\": \"Franziska Anders\", \"author_group\": \"Other\"}, {\"id_x\": 13752, \"umap_x\": 0.2853015959262848, \"umap_y\": 0.6513571739196777, \"post_id\": 13752.0, \"author_id\": 26.0, \"id_y\": 26.0, \"author\": \"Hendrik Lasch\", \"author_group\": \"Other\"}, {\"id_x\": 13754, \"umap_x\": 0.6115226149559021, \"umap_y\": 6.072601318359375, \"post_id\": 13754.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 13756, \"umap_x\": -3.4770100116729736, \"umap_y\": 1.8590173721313477, \"post_id\": 13756.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 13758, \"umap_x\": -1.7375118732452393, \"umap_y\": 4.404740810394287, \"post_id\": 13758.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13761, \"umap_x\": -0.10073733329772949, \"umap_y\": 3.7521042823791504, \"post_id\": 13761.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13764, \"umap_x\": -2.58707857131958, \"umap_y\": -0.4262841045856476, \"post_id\": 13764.0, \"author_id\": 1095.0, \"id_y\": 1095.0, \"author\": \"Autonome Besetzungstage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13766, \"umap_x\": -1.5730392932891846, \"umap_y\": -0.9864000082015991, \"post_id\": 13766.0, \"author_id\": 1095.0, \"id_y\": 1095.0, \"author\": \"Autonome Besetzungstage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13768, \"umap_x\": 0.2706433832645416, \"umap_y\": 4.210755825042725, \"post_id\": 13768.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 13770, \"umap_x\": -2.4263858795166016, \"umap_y\": 0.31792816519737244, \"post_id\": 13770.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13772, \"umap_x\": -0.51484215259552, \"umap_y\": 3.012244939804077, \"post_id\": 13772.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13796, \"umap_x\": -2.719777822494507, \"umap_y\": -0.2153463363647461, \"post_id\": 13796.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13799, \"umap_x\": -2.0932295322418213, \"umap_y\": 0.280773401260376, \"post_id\": 13799.0, \"author_id\": 1095.0, \"id_y\": 1095.0, \"author\": \"Autonome Besetzungstage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13801, \"umap_x\": -0.8151372671127319, \"umap_y\": 1.3963205814361572, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13807, \"umap_x\": 0.7154279351234436, \"umap_y\": 3.0450172424316406, \"post_id\": 13807.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13810, \"umap_x\": -0.3055840730667114, \"umap_y\": 3.9245524406433105, \"post_id\": 13810.0, \"author_id\": 1096.0, \"id_y\": 1096.0, \"author\": \"Solistrukturen\", \"author_group\": \"Other\"}, {\"id_x\": 13818, \"umap_x\": 0.3952551484107971, \"umap_y\": 5.670950412750244, \"post_id\": 13818.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13821, \"umap_x\": -0.8263300061225891, \"umap_y\": 2.5046892166137695, \"post_id\": 13821.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13823, \"umap_x\": 0.04405491426587105, \"umap_y\": 3.8203790187835693, \"post_id\": 13823.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 13825, \"umap_x\": -2.596621513366699, \"umap_y\": -0.41788411140441895, \"post_id\": 13825.0, \"author_id\": 1095.0, \"id_y\": 1095.0, \"author\": \"Autonome Besetzungstage Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13833, \"umap_x\": -1.9548509120941162, \"umap_y\": 2.0200140476226807, \"post_id\": 13833.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13836, \"umap_x\": -2.80568265914917, \"umap_y\": 5.590330600738525, \"post_id\": 13836.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13846, \"umap_x\": -1.4623150825500488, \"umap_y\": 4.130362033843994, \"post_id\": 13846.0, \"author_id\": 440.0, \"id_y\": 440.0, \"author\": \"anarchist\", \"author_group\": \"Other\"}, {\"id_x\": 13856, \"umap_x\": -1.9414048194885254, \"umap_y\": 0.27150219678878784, \"post_id\": 13856.0, \"author_id\": 963.0, \"id_y\": 963.0, \"author\": \"Fabian Schmid\", \"author_group\": \"Other\"}, {\"id_x\": 13856, \"umap_x\": -1.9414048194885254, \"umap_y\": 0.27150219678878784, \"post_id\": 13856.0, \"author_id\": 1097.0, \"id_y\": 1097.0, \"author\": \"Colette M. Schmidt\", \"author_group\": \"Other\"}, {\"id_x\": 13856, \"umap_x\": -1.9414048194885254, \"umap_y\": 0.27150219678878784, \"post_id\": 13856.0, \"author_id\": 1098.0, \"id_y\": 1098.0, \"author\": \"Adelheid W\\u00f6lfl\", \"author_group\": \"Other\"}, {\"id_x\": 13856, \"umap_x\": -1.9414048194885254, \"umap_y\": 0.27150219678878784, \"post_id\": 13856.0, \"author_id\": 482.0, \"id_y\": 482.0, \"author\": \"Martina Renner\", \"author_group\": \"Other\"}, {\"id_x\": 13864, \"umap_x\": -1.6374799013137817, \"umap_y\": -0.5546587109565735, \"post_id\": 13864.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13866, \"umap_x\": -3.131765127182007, \"umap_y\": 0.11958865821361542, \"post_id\": 13866.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 13868, \"umap_x\": -2.0469510555267334, \"umap_y\": 2.6509439945220947, \"post_id\": 13868.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13870, \"umap_x\": 0.2821022868156433, \"umap_y\": 3.6896352767944336, \"post_id\": 13870.0, \"author_id\": 1099.0, \"id_y\": 1099.0, \"author\": \"Devran\", \"author_group\": \"Other\"}, {\"id_x\": 13872, \"umap_x\": 0.07976881414651871, \"umap_y\": 4.3023834228515625, \"post_id\": 13872.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13874, \"umap_x\": -0.986483097076416, \"umap_y\": 5.294467449188232, \"post_id\": 13874.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13876, \"umap_x\": -0.9515299797058105, \"umap_y\": 5.2651872634887695, \"post_id\": 13876.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13886, \"umap_x\": -3.7347819805145264, \"umap_y\": 0.3982280194759369, \"post_id\": 13886.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13892, \"umap_x\": -0.5652644038200378, \"umap_y\": -0.10119371116161346, \"post_id\": 13892.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 13895, \"umap_x\": -0.7298121452331543, \"umap_y\": 0.15212778747081757, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 13897, \"umap_x\": -0.3391188681125641, \"umap_y\": 2.604158639907837, \"post_id\": 13897.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 13902, \"umap_x\": -0.7893075346946716, \"umap_y\": 3.3775627613067627, \"post_id\": 13902.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 13904, \"umap_x\": -0.8998139500617981, \"umap_y\": 0.6043158769607544, \"post_id\": 13904.0, \"author_id\": 1100.0, \"id_y\": 1100.0, \"author\": \"Antimilitaristisches Aktionsnetzwerk\", \"author_group\": \"Other\"}, {\"id_x\": 13906, \"umap_x\": -2.846635580062866, \"umap_y\": 2.6789486408233643, \"post_id\": 13906.0, \"author_id\": 569.0, \"id_y\": 569.0, \"author\": \"Ermittlungsausschuss Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13913, \"umap_x\": 0.3875831067562103, \"umap_y\": 3.9458677768707275, \"post_id\": 13913.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 13915, \"umap_x\": -3.9843506813049316, \"umap_y\": -0.5758932828903198, \"post_id\": 13915.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 13918, \"umap_x\": -3.0727648735046387, \"umap_y\": 2.1046907901763916, \"post_id\": 13918.0, \"author_id\": 598.0, \"id_y\": 598.0, \"author\": \"Dissens\", \"author_group\": \"Other\"}, {\"id_x\": 13920, \"umap_x\": -1.9745478630065918, \"umap_y\": -0.38616088032722473, \"post_id\": 13920.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13922, \"umap_x\": 0.7874845266342163, \"umap_y\": -0.38783207535743713, \"post_id\": 13922.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13924, \"umap_x\": 1.1024526357650757, \"umap_y\": 0.770342230796814, \"post_id\": 13924.0, \"author_id\": 1101.0, \"id_y\": 1101.0, \"author\": \"Leonhard Pitz\", \"author_group\": \"Other\"}, {\"id_x\": 13924, \"umap_x\": 1.1024526357650757, \"umap_y\": 0.770342230796814, \"post_id\": 13924.0, \"author_id\": 801.0, \"id_y\": 801.0, \"author\": \"Netzpolitik\", \"author_group\": \"Other\"}, {\"id_x\": 13926, \"umap_x\": 0.6238536238670349, \"umap_y\": 2.1784472465515137, \"post_id\": 13926.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 13928, \"umap_x\": -0.9569883346557617, \"umap_y\": -0.46306949853897095, \"post_id\": 13928.0, \"author_id\": 1102.0, \"id_y\": 1102.0, \"author\": \"Connor Endt\", \"author_group\": \"Other\"}, {\"id_x\": 13930, \"umap_x\": 0.10756804794073105, \"umap_y\": 0.5769093036651611, \"post_id\": 13930.0, \"author_id\": 1094.0, \"id_y\": 1094.0, \"author\": \"Franziska Anders\", \"author_group\": \"Other\"}, {\"id_x\": 13930, \"umap_x\": 0.10756804794073105, \"umap_y\": 0.5769093036651611, \"post_id\": 13930.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 13932, \"umap_x\": -2.8983960151672363, \"umap_y\": -1.571009635925293, \"post_id\": 13932.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13934, \"umap_x\": -2.700542449951172, \"umap_y\": 0.2833392322063446, \"post_id\": 13934.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13936, \"umap_x\": -3.8123104572296143, \"umap_y\": 0.4944881498813629, \"post_id\": 13936.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13938, \"umap_x\": -3.220865249633789, \"umap_y\": 0.4638267159461975, \"post_id\": 13938.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13940, \"umap_x\": 0.633202850818634, \"umap_y\": 6.12738037109375, \"post_id\": 13940.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 13942, \"umap_x\": -1.9133632183074951, \"umap_y\": 0.8984216451644897, \"post_id\": 13942.0, \"author_id\": 1103.0, \"id_y\": 1103.0, \"author\": \"Corin Baurmann\", \"author_group\": \"Other\"}, {\"id_x\": 13942, \"umap_x\": -1.9133632183074951, \"umap_y\": 0.8984216451644897, \"post_id\": 13942.0, \"author_id\": 222.0, \"id_y\": 222.0, \"author\": \"Josa Mania-Schlegel\", \"author_group\": \"Other\"}, {\"id_x\": 13944, \"umap_x\": -3.495499610900879, \"umap_y\": 1.5884473323822021, \"post_id\": 13944.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 13946, \"umap_x\": 0.22257104516029358, \"umap_y\": 2.464944362640381, \"post_id\": 13946.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 13948, \"umap_x\": -1.553964376449585, \"umap_y\": 1.5325862169265747, \"post_id\": 13948.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 13967, \"umap_x\": -1.824178695678711, \"umap_y\": 0.8306345343589783, \"post_id\": 13967.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 13969, \"umap_x\": -3.6675384044647217, \"umap_y\": -0.11208415031433105, \"post_id\": 13969.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 13976, \"umap_x\": -0.9571219086647034, \"umap_y\": 3.7887661457061768, \"post_id\": 13976.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 13988, \"umap_x\": -0.8545663356781006, \"umap_y\": 5.26693868637085, \"post_id\": 13988.0, \"author_id\": 1104.0, \"id_y\": 1104.0, \"author\": \"Betroffenen-Supportgruppe\", \"author_group\": \"Other\"}, {\"id_x\": 14000, \"umap_x\": -1.8829936981201172, \"umap_y\": 2.3470053672790527, \"post_id\": 14000.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14003, \"umap_x\": -2.8312013149261475, \"umap_y\": -0.42111656069755554, \"post_id\": 14003.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14006, \"umap_x\": 0.16243822872638702, \"umap_y\": 4.087349891662598, \"post_id\": 14006.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 14011, \"umap_x\": 0.3273863196372986, \"umap_y\": 5.221450328826904, \"post_id\": 14011.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14014, \"umap_x\": -3.585333824157715, \"umap_y\": -0.14442700147628784, \"post_id\": 14014.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 14017, \"umap_x\": 0.6567794680595398, \"umap_y\": 1.863645076751709, \"post_id\": 14017.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 14017, \"umap_x\": 0.6567794680595398, \"umap_y\": 1.863645076751709, \"post_id\": 14017.0, \"author_id\": 816.0, \"id_y\": 816.0, \"author\": \"mopo\", \"author_group\": \"Other\"}, {\"id_x\": 14019, \"umap_x\": -3.1811773777008057, \"umap_y\": -0.7506974935531616, \"post_id\": 14019.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 14019, \"umap_x\": -3.1811773777008057, \"umap_y\": -0.7506974935531616, \"post_id\": 14019.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 14021, \"umap_x\": -2.3593618869781494, \"umap_y\": 4.5458173751831055, \"post_id\": 14021.0, \"author_id\": 1105.0, \"id_y\": 1105.0, \"author\": \"Lara Schultz\", \"author_group\": \"Other\"}, {\"id_x\": 14023, \"umap_x\": 0.14865805208683014, \"umap_y\": -0.5563648343086243, \"post_id\": 14023.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14025, \"umap_x\": 0.516893208026886, \"umap_y\": -0.40335121750831604, \"post_id\": 14025.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 14025, \"umap_x\": 0.516893208026886, \"umap_y\": -0.40335121750831604, \"post_id\": 14025.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14027, \"umap_x\": -1.9138696193695068, \"umap_y\": -1.4355840682983398, \"post_id\": 14027.0, \"author_id\": 268.0, \"id_y\": 268.0, \"author\": \"Jens Rometsch\", \"author_group\": \"Jens Rometsch\"}, {\"id_x\": 14027, \"umap_x\": -1.9138696193695068, \"umap_y\": -1.4355840682983398, \"post_id\": 14027.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14029, \"umap_x\": 1.0385537147521973, \"umap_y\": 1.2508611679077148, \"post_id\": 14029.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 14029, \"umap_x\": 1.0385537147521973, \"umap_y\": 1.2508611679077148, \"post_id\": 14029.0, \"author_id\": 1106.0, \"id_y\": 1106.0, \"author\": \"jungle world\", \"author_group\": \"Other\"}, {\"id_x\": 14031, \"umap_x\": -0.44621825218200684, \"umap_y\": -0.7382418513298035, \"post_id\": 14031.0, \"author_id\": 1107.0, \"id_y\": 1107.0, \"author\": \"s\\u00e4chsischer Fl\\u00fcchtlingsrat\", \"author_group\": \"Other\"}, {\"id_x\": 14033, \"umap_x\": -2.6046738624572754, \"umap_y\": -0.8727915287017822, \"post_id\": 14033.0, \"author_id\": 375.0, \"id_y\": 375.0, \"author\": \"Klaus Staeubert\", \"author_group\": \"Other\"}, {\"id_x\": 14033, \"umap_x\": -2.6046738624572754, \"umap_y\": -0.8727915287017822, \"post_id\": 14033.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14035, \"umap_x\": -1.0604099035263062, \"umap_y\": 1.0074493885040283, \"post_id\": 14035.0, \"author_id\": 521.0, \"id_y\": 521.0, \"author\": \"Dominic Welters\", \"author_group\": \"Other\"}, {\"id_x\": 14035, \"umap_x\": -1.0604099035263062, \"umap_y\": 1.0074493885040283, \"post_id\": 14035.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14037, \"umap_x\": -0.6948830485343933, \"umap_y\": 0.24181121587753296, \"post_id\": 14037.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14039, \"umap_x\": -3.3503379821777344, \"umap_y\": 1.5700522661209106, \"post_id\": 14039.0, \"author_id\": 286.0, \"id_y\": 286.0, \"author\": \"Mark Daniel\", \"author_group\": \"Other\"}, {\"id_x\": 14039, \"umap_x\": -3.3503379821777344, \"umap_y\": 1.5700522661209106, \"post_id\": 14039.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14041, \"umap_x\": -1.0887842178344727, \"umap_y\": 0.09407836943864822, \"post_id\": 14041.0, \"author_id\": 1108.0, \"id_y\": 1108.0, \"author\": \"Jana Brechlin\", \"author_group\": \"Other\"}, {\"id_x\": 14041, \"umap_x\": -1.0887842178344727, \"umap_y\": 0.09407836943864822, \"post_id\": 14041.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14043, \"umap_x\": -0.8724909424781799, \"umap_y\": 3.1545889377593994, \"post_id\": 14043.0, \"author_id\": 418.0, \"id_y\": 418.0, \"author\": \"Rote Hilfe\", \"author_group\": \"Other\"}, {\"id_x\": 14045, \"umap_x\": -3.1449735164642334, \"umap_y\": -0.44999706745147705, \"post_id\": 14045.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14047, \"umap_x\": -0.41931188106536865, \"umap_y\": -1.6475142240524292, \"post_id\": 14047.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14049, \"umap_x\": -0.4004534184932709, \"umap_y\": -1.7064727544784546, \"post_id\": 14049.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 14051, \"umap_x\": 0.9526481628417969, \"umap_y\": 2.263745069503784, \"post_id\": 14051.0, \"author_id\": 1109.0, \"id_y\": 1109.0, \"author\": \"Aktionsb\\u00fcndnis gegen Neonazis aus Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14053, \"umap_x\": -0.3969910740852356, \"umap_y\": -1.7494113445281982, \"post_id\": 14053.0, \"author_id\": 1110.0, \"id_y\": 1110.0, \"author\": \"Jan T\\u00f6lva\", \"author_group\": \"Other\"}, {\"id_x\": 14055, \"umap_x\": -1.3581833839416504, \"umap_y\": 2.760798692703247, \"post_id\": 14055.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14057, \"umap_x\": -0.02349730208516121, \"umap_y\": 3.287580728530884, \"post_id\": 14057.0, \"author_id\": 1111.0, \"id_y\": 1111.0, \"author\": \"Nanuk\", \"author_group\": \"Other\"}, {\"id_x\": 14059, \"umap_x\": -0.4496229290962219, \"umap_y\": 2.250422716140747, \"post_id\": 14059.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 14059, \"umap_x\": -0.4496229290962219, \"umap_y\": 2.250422716140747, \"post_id\": 14059.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14061, \"umap_x\": -0.422358900308609, \"umap_y\": 2.063319206237793, \"post_id\": 14061.0, \"author_id\": 1112.0, \"id_y\": 1112.0, \"author\": \"Kristin Engel\", \"author_group\": \"Other\"}, {\"id_x\": 14061, \"umap_x\": -0.422358900308609, \"umap_y\": 2.063319206237793, \"post_id\": 14061.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14063, \"umap_x\": -3.940553903579712, \"umap_y\": -0.6335361003875732, \"post_id\": 14063.0, \"author_id\": 517.0, \"id_y\": 517.0, \"author\": \"Clara Geilen\", \"author_group\": \"Other\"}, {\"id_x\": 14063, \"umap_x\": -3.940553903579712, \"umap_y\": -0.6335361003875732, \"post_id\": 14063.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14066, \"umap_x\": 0.7936710715293884, \"umap_y\": 2.8958685398101807, \"post_id\": 14066.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 14068, \"umap_x\": 0.6998818516731262, \"umap_y\": 2.807896852493286, \"post_id\": 14068.0, \"author_id\": 1113.0, \"id_y\": 1113.0, \"author\": \"Linksjugend Sachsen\", \"author_group\": \"Other\"}, {\"id_x\": 14068, \"umap_x\": 0.6998818516731262, \"umap_y\": 2.807896852493286, \"post_id\": 14068.0, \"author_id\": 924.0, \"id_y\": 924.0, \"author\": \"linXXnet\", \"author_group\": \"Other\"}, {\"id_x\": 14071, \"umap_x\": -0.519260823726654, \"umap_y\": 4.2480149269104, \"post_id\": 14071.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14073, \"umap_x\": 0.34758496284484863, \"umap_y\": 4.042543411254883, \"post_id\": 14073.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14075, \"umap_x\": -0.3905487358570099, \"umap_y\": -0.3034099042415619, \"post_id\": 14075.0, \"author_id\": 1114.0, \"id_y\": 1114.0, \"author\": \"Brandon\", \"author_group\": \"Other\"}, {\"id_x\": 14077, \"umap_x\": 0.37218356132507324, \"umap_y\": 2.034271240234375, \"post_id\": 14077.0, \"author_id\": 1115.0, \"id_y\": 1115.0, \"author\": \"Thomas\", \"author_group\": \"Other\"}, {\"id_x\": 14079, \"umap_x\": 1.1430208683013916, \"umap_y\": 0.560073733329773, \"post_id\": 14079.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14081, \"umap_x\": -0.4218609631061554, \"umap_y\": 4.281405925750732, \"post_id\": 14081.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14118, \"umap_x\": -1.2232064008712769, \"umap_y\": 2.7007858753204346, \"post_id\": 14118.0, \"author_id\": 1026.0, \"id_y\": 1026.0, \"author\": \"Koukaki Squats Community\", \"author_group\": \"Other\"}, {\"id_x\": 14127, \"umap_x\": 0.33407071232795715, \"umap_y\": 3.2468655109405518, \"post_id\": 14127.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 14129, \"umap_x\": -2.690063953399658, \"umap_y\": 5.462337493896484, \"post_id\": 14129.0, \"author_id\": 1116.0, \"id_y\": 1116.0, \"author\": \"Arya Zahedi\", \"author_group\": \"Other\"}, {\"id_x\": 14131, \"umap_x\": 0.8229994177818298, \"umap_y\": -0.8614194393157959, \"post_id\": 14131.0, \"author_id\": 1117.0, \"id_y\": 1117.0, \"author\": \"Volker Wei\\u00df\", \"author_group\": \"Other\"}, {\"id_x\": 14133, \"umap_x\": -0.8209477663040161, \"umap_y\": 3.702131509780884, \"post_id\": 14133.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14135, \"umap_x\": 0.24716204404830933, \"umap_y\": 4.3386759757995605, \"post_id\": 14135.0, \"author_id\": 171.0, \"id_y\": 171.0, \"author\": \"ermittlungsausschuss dresden\", \"author_group\": \"Other\"}, {\"id_x\": 14137, \"umap_x\": -2.1809158325195312, \"umap_y\": 4.465575695037842, \"post_id\": 14137.0, \"author_id\": 1118.0, \"id_y\": 1118.0, \"author\": \"Solidarity Colectives\", \"author_group\": \"Other\"}, {\"id_x\": 14156, \"umap_x\": -3.2687430381774902, \"umap_y\": 0.8261532187461853, \"post_id\": 14156.0, \"author_id\": 527.0, \"id_y\": 527.0, \"author\": \"Tobias Pr\\u00fcwer\", \"author_group\": \"Other\"}, {\"id_x\": 14158, \"umap_x\": -1.8625576496124268, \"umap_y\": 1.0241773128509521, \"post_id\": 14158.0, \"author_id\": 945.0, \"id_y\": 945.0, \"author\": \"David Muschenich\", \"author_group\": \"Other\"}, {\"id_x\": 14160, \"umap_x\": -0.3964959681034088, \"umap_y\": -1.7042415142059326, \"post_id\": 14160.0, \"author_id\": 1119.0, \"id_y\": 1119.0, \"author\": \"Lucius Teidelbaum\", \"author_group\": \"Other\"}, {\"id_x\": 14170, \"umap_x\": -1.7773102521896362, \"umap_y\": -1.1649335622787476, \"post_id\": 14170.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14177, \"umap_x\": -3.919583320617676, \"umap_y\": -0.6231325268745422, \"post_id\": 14177.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 14177, \"umap_x\": -3.919583320617676, \"umap_y\": -0.6231325268745422, \"post_id\": 14177.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14179, \"umap_x\": -0.7279916405677795, \"umap_y\": 2.4071762561798096, \"post_id\": 14179.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 14181, \"umap_x\": 0.5199707746505737, \"umap_y\": 1.3441084623336792, \"post_id\": 14181.0, \"author_id\": 269.0, \"id_y\": 269.0, \"author\": \"Mathias W\\u00f6bking\", \"author_group\": \"Other\"}, {\"id_x\": 14181, \"umap_x\": 0.5199707746505737, \"umap_y\": 1.3441084623336792, \"post_id\": 14181.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14183, \"umap_x\": -4.305313587188721, \"umap_y\": 4.18147611618042, \"post_id\": 14183.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 14183, \"umap_x\": -4.305313587188721, \"umap_y\": 4.18147611618042, \"post_id\": 14183.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14185, \"umap_x\": 0.7181161642074585, \"umap_y\": 2.651557683944702, \"post_id\": 14185.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14187, \"umap_x\": -0.40812358260154724, \"umap_y\": 0.9880791902542114, \"post_id\": 14187.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14197, \"umap_x\": 0.1341399997472763, \"umap_y\": 2.7465078830718994, \"post_id\": 14197.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14200, \"umap_x\": -1.4571117162704468, \"umap_y\": 1.9108911752700806, \"post_id\": 14200.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 14205, \"umap_x\": 0.23697197437286377, \"umap_y\": 5.421636581420898, \"post_id\": 14205.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14207, \"umap_x\": 0.23907189071178436, \"umap_y\": 4.0058794021606445, \"post_id\": 14207.0, \"author_id\": 1115.0, \"id_y\": 1115.0, \"author\": \"Thomas\", \"author_group\": \"Other\"}, {\"id_x\": 14209, \"umap_x\": 1.321424961090088, \"umap_y\": 3.915471076965332, \"post_id\": 14209.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 14211, \"umap_x\": -0.6781091094017029, \"umap_y\": 3.093374013900757, \"post_id\": 14211.0, \"author_id\": 1120.0, \"id_y\": 1120.0, \"author\": \"Ilja Kharkow\", \"author_group\": \"Other\"}, {\"id_x\": 14221, \"umap_x\": -1.2978981733322144, \"umap_y\": 0.5216948390007019, \"post_id\": 14221.0, \"author_id\": 1121.0, \"id_y\": 1121.0, \"author\": \"Habersaath46\", \"author_group\": \"Other\"}, {\"id_x\": 14224, \"umap_x\": -2.8239166736602783, \"umap_y\": 5.578322410583496, \"post_id\": 14224.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14233, \"umap_x\": -0.13933762907981873, \"umap_y\": 4.474844455718994, \"post_id\": 14233.0, \"author_id\": 9.0, \"id_y\": 9.0, \"author\": \"dpa\", \"author_group\": \"dpa\"}, {\"id_x\": 14238, \"umap_x\": -0.021493617445230484, \"umap_y\": 3.6957199573516846, \"post_id\": 14238.0, \"author_id\": 1122.0, \"id_y\": 1122.0, \"author\": \"John Malamatinas\", \"author_group\": \"Other\"}, {\"id_x\": 14238, \"umap_x\": -0.021493617445230484, \"umap_y\": 3.6957199573516846, \"post_id\": 14238.0, \"author_id\": 1123.0, \"id_y\": 1123.0, \"author\": \"Jan Theurich\", \"author_group\": \"Other\"}, {\"id_x\": 14240, \"umap_x\": 0.19331972301006317, \"umap_y\": 3.944429874420166, \"post_id\": 14240.0, \"author_id\": 420.0, \"id_y\": 420.0, \"author\": \"EA\", \"author_group\": \"Other\"}, {\"id_x\": 14242, \"umap_x\": -2.0716192722320557, \"umap_y\": 2.5505404472351074, \"post_id\": 14242.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14245, \"umap_x\": -2.6711440086364746, \"umap_y\": 2.1953039169311523, \"post_id\": 14245.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14248, \"umap_x\": -1.7570304870605469, \"umap_y\": -0.5001688003540039, \"post_id\": 14248.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14250, \"umap_x\": -2.007338047027588, \"umap_y\": -1.8497344255447388, \"post_id\": 14250.0, \"author_id\": 103.0, \"id_y\": 103.0, \"author\": \"David Berndt\", \"author_group\": \"Other\"}, {\"id_x\": 14256, \"umap_x\": -2.861421585083008, \"umap_y\": 2.075089454650879, \"post_id\": 14256.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14259, \"umap_x\": -2.7305519580841064, \"umap_y\": 1.5355145931243896, \"post_id\": 14259.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14261, \"umap_x\": 0.2928405702114105, \"umap_y\": 3.9817163944244385, \"post_id\": 14261.0, \"author_id\": 1122.0, \"id_y\": 1122.0, \"author\": \"John Malamatinas\", \"author_group\": \"Other\"}, {\"id_x\": 14263, \"umap_x\": -0.021611908450722694, \"umap_y\": 1.7985190153121948, \"post_id\": 14263.0, \"author_id\": 1035.0, \"id_y\": 1035.0, \"author\": \"Natalie Meinert\", \"author_group\": \"Other\"}, {\"id_x\": 14265, \"umap_x\": -2.7037196159362793, \"umap_y\": -0.4800822138786316, \"post_id\": 14265.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 14267, \"umap_x\": -1.471523642539978, \"umap_y\": -0.7684910893440247, \"post_id\": 14267.0, \"author_id\": 1024.0, \"id_y\": 1024.0, \"author\": \"Caroline Wiede\", \"author_group\": \"Other\"}, {\"id_x\": 14269, \"umap_x\": -0.7229312062263489, \"umap_y\": 4.067960739135742, \"post_id\": 14269.0, \"author_id\": 1124.0, \"id_y\": 1124.0, \"author\": \"Alex Struwe\", \"author_group\": \"Other\"}, {\"id_x\": 14271, \"umap_x\": 0.10124854743480682, \"umap_y\": 3.975287437438965, \"post_id\": 14271.0, \"author_id\": 393.0, \"id_y\": 393.0, \"author\": \"Sebastian Weiermann\", \"author_group\": \"Other\"}, {\"id_x\": 14276, \"umap_x\": -1.1197489500045776, \"umap_y\": 2.6699912548065186, \"post_id\": 14276.0, \"author_id\": 1125.0, \"id_y\": 1125.0, \"author\": \"Lea\", \"author_group\": \"Other\"}, {\"id_x\": 14279, \"umap_x\": -2.9903948307037354, \"umap_y\": 2.671069383621216, \"post_id\": 14279.0, \"author_id\": 265.0, \"id_y\": 265.0, \"author\": \"EA Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14282, \"umap_x\": 0.026103569194674492, \"umap_y\": 4.789212703704834, \"post_id\": 14282.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14285, \"umap_x\": -2.9343154430389404, \"umap_y\": -0.3427085280418396, \"post_id\": 14285.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 14287, \"umap_x\": 0.1993892788887024, \"umap_y\": 3.729724645614624, \"post_id\": 14287.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14290, \"umap_x\": 0.09363109618425369, \"umap_y\": 3.8795602321624756, \"post_id\": 14290.0, \"author_id\": 278.0, \"id_y\": 278.0, \"author\": \"Stern\", \"author_group\": \"Other\"}, {\"id_x\": 14293, \"umap_x\": 0.33738985657691956, \"umap_y\": 5.588709354400635, \"post_id\": 14293.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14296, \"umap_x\": 0.37653759121894836, \"umap_y\": 5.755347728729248, \"post_id\": 14296.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14299, \"umap_x\": 0.43297651410102844, \"umap_y\": 5.816417217254639, \"post_id\": 14299.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14333, \"umap_x\": 0.23078353703022003, \"umap_y\": 3.9003148078918457, \"post_id\": 14333.0, \"author_id\": 1126.0, \"id_y\": 1126.0, \"author\": \"Antifa Ost Komplex\", \"author_group\": \"Other\"}, {\"id_x\": 14335, \"umap_x\": -1.7639214992523193, \"umap_y\": 0.8476986289024353, \"post_id\": 14335.0, \"author_id\": 1127.0, \"id_y\": 1127.0, \"author\": \"Stephanie Bart\", \"author_group\": \"Other\"}, {\"id_x\": 14340, \"umap_x\": 0.08660086989402771, \"umap_y\": 4.108368873596191, \"post_id\": 14340.0, \"author_id\": 490.0, \"id_y\": 490.0, \"author\": \"Antifa\", \"author_group\": \"Other\"}, {\"id_x\": 14344, \"umap_x\": -3.314518928527832, \"umap_y\": 2.1041038036346436, \"post_id\": 14344.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14349, \"umap_x\": -1.5622590780258179, \"umap_y\": 2.7341606616973877, \"post_id\": 14349.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 14351, \"umap_x\": -0.7500854730606079, \"umap_y\": -0.8694299459457397, \"post_id\": 14351.0, \"author_id\": 1128.0, \"id_y\": 1128.0, \"author\": \"kreuzer Marie Allmansberger\", \"author_group\": \"Other\"}, {\"id_x\": 14353, \"umap_x\": 0.2773815989494324, \"umap_y\": 5.558774471282959, \"post_id\": 14353.0, \"author_id\": 1129.0, \"id_y\": 1129.0, \"author\": \"Elendsverwaltung\", \"author_group\": \"Other\"}, {\"id_x\": 14362, \"umap_x\": 0.889795184135437, \"umap_y\": 1.9463003873825073, \"post_id\": 14362.0, \"author_id\": 28.0, \"id_y\": 28.0, \"author\": \"Antifaschist\", \"author_group\": \"Other\"}, {\"id_x\": 14364, \"umap_x\": -1.4295467138290405, \"umap_y\": 2.4996960163116455, \"post_id\": 14364.0, \"author_id\": 151.0, \"id_y\": 151.0, \"author\": \"Karin Schlottmann\", \"author_group\": \"Other\"}, {\"id_x\": 14369, \"umap_x\": 0.786364734172821, \"umap_y\": 0.8974213600158691, \"post_id\": 14369.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 14371, \"umap_x\": 0.39227238297462463, \"umap_y\": 3.396864175796509, \"post_id\": 14371.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 14375, \"umap_x\": -1.4912192821502686, \"umap_y\": 1.8059601783752441, \"post_id\": 14375.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 14377, \"umap_x\": 0.11208099126815796, \"umap_y\": 3.96748948097229, \"post_id\": 14377.0, \"author_id\": 1115.0, \"id_y\": 1115.0, \"author\": \"Thomas\", \"author_group\": \"Other\"}, {\"id_x\": 14379, \"umap_x\": -0.11324784904718399, \"umap_y\": 3.9746406078338623, \"post_id\": 14379.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14381, \"umap_x\": 0.35573095083236694, \"umap_y\": 4.627839088439941, \"post_id\": 14381.0, \"author_id\": 43.0, \"id_y\": 43.0, \"author\": \"Konrad Litschko\", \"author_group\": \"Other\"}, {\"id_x\": 14381, \"umap_x\": 0.35573095083236694, \"umap_y\": 4.627839088439941, \"post_id\": 14381.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 14389, \"umap_x\": -2.107840061187744, \"umap_y\": 3.9969539642333984, \"post_id\": 14389.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14391, \"umap_x\": -1.7716771364212036, \"umap_y\": 1.9345310926437378, \"post_id\": 14391.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 14393, \"umap_x\": 0.53216153383255, \"umap_y\": 2.342169761657715, \"post_id\": 14393.0, \"author_id\": 438.0, \"id_y\": 438.0, \"author\": \"Ermittlungsausschuss Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 14395, \"umap_x\": -0.9769207239151001, \"umap_y\": 2.880265951156616, \"post_id\": 14395.0, \"author_id\": 192.0, \"id_y\": 192.0, \"author\": \"Andreas Debski\", \"author_group\": \"Other\"}, {\"id_x\": 14395, \"umap_x\": -0.9769207239151001, \"umap_y\": 2.880265951156616, \"post_id\": 14395.0, \"author_id\": 1130.0, \"id_y\": 1130.0, \"author\": \"Torsten Gellner\", \"author_group\": \"Other\"}, {\"id_x\": 14397, \"umap_x\": -3.1823863983154297, \"umap_y\": 1.495286226272583, \"post_id\": 14397.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 14399, \"umap_x\": 0.23775605857372284, \"umap_y\": 0.944593608379364, \"post_id\": 14399.0, \"author_id\": 613.0, \"id_y\": 613.0, \"author\": \"Valentin Dreher\", \"author_group\": \"Other\"}, {\"id_x\": 14399, \"umap_x\": 0.23775605857372284, \"umap_y\": 0.944593608379364, \"post_id\": 14399.0, \"author_id\": 862.0, \"id_y\": 862.0, \"author\": \"s\\u00e4chsische zeitung\", \"author_group\": \"Other\"}, {\"id_x\": 14401, \"umap_x\": -4.231683254241943, \"umap_y\": -0.2376856952905655, \"post_id\": 14401.0, \"author_id\": 456.0, \"id_y\": 456.0, \"author\": \"ZEIT\", \"author_group\": \"Other\"}, {\"id_x\": 14403, \"umap_x\": -2.6952402591705322, \"umap_y\": 0.9159784913063049, \"post_id\": 14403.0, \"author_id\": 411.0, \"id_y\": 411.0, \"author\": \"Andr\\u00e9 Neumann\", \"author_group\": \"Other\"}, {\"id_x\": 14405, \"umap_x\": -0.8858998417854309, \"umap_y\": -0.19342900812625885, \"post_id\": 14405.0, \"author_id\": 183.0, \"id_y\": 183.0, \"author\": \"Haig Latchinian\", \"author_group\": \"Other\"}, {\"id_x\": 14405, \"umap_x\": -0.8858998417854309, \"umap_y\": -0.19342900812625885, \"post_id\": 14405.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14407, \"umap_x\": -3.8815112113952637, \"umap_y\": 0.01998288370668888, \"post_id\": 14407.0, \"author_id\": 296.0, \"id_y\": 296.0, \"author\": \"Ekkehard Schulreich\", \"author_group\": \"Other\"}, {\"id_x\": 14407, \"umap_x\": -3.8815112113952637, \"umap_y\": 0.01998288370668888, \"post_id\": 14407.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14409, \"umap_x\": -3.689218044281006, \"umap_y\": 2.7616851329803467, \"post_id\": 14409.0, \"author_id\": 966.0, \"id_y\": 966.0, \"author\": \"Nestor\", \"author_group\": \"Other\"}, {\"id_x\": 14425, \"umap_x\": 0.03295037895441055, \"umap_y\": 4.3684844970703125, \"post_id\": 14425.0, \"author_id\": 1131.0, \"id_y\": 1131.0, \"author\": \"Betroffene\", \"author_group\": \"Other\"}, {\"id_x\": 14427, \"umap_x\": -0.4261986017227173, \"umap_y\": 4.4508585929870605, \"post_id\": 14427.0, \"author_id\": 97.0, \"id_y\": 97.0, \"author\": \"Lars Wienand\", \"author_group\": \"Other\"}, {\"id_x\": 14429, \"umap_x\": -0.36082640290260315, \"umap_y\": 0.4510350823402405, \"post_id\": 14429.0, \"author_id\": 229.0, \"id_y\": 229.0, \"author\": \"Benjamin Lummer\", \"author_group\": \"Other\"}, {\"id_x\": 14431, \"umap_x\": 1.0643465518951416, \"umap_y\": 0.09815368801355362, \"post_id\": 14431.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 14433, \"umap_x\": 1.7158806324005127, \"umap_y\": 0.32560059428215027, \"post_id\": 14433.0, \"author_id\": 1132.0, \"id_y\": 1132.0, \"author\": \"Tobias Winzer\", \"author_group\": \"Other\"}, {\"id_x\": 14433, \"umap_x\": 1.7158806324005127, \"umap_y\": 0.32560059428215027, \"post_id\": 14433.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14443, \"umap_x\": 0.4655419886112213, \"umap_y\": 2.4743988513946533, \"post_id\": 14443.0, \"author_id\": 1133.0, \"id_y\": 1133.0, \"author\": \"Soligruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14446, \"umap_x\": -1.0952894687652588, \"umap_y\": 1.831425666809082, \"post_id\": 14446.0, \"author_id\": 1134.0, \"id_y\": 1134.0, \"author\": \"Beate Kindt-Matuschek\", \"author_group\": \"Other\"}, {\"id_x\": 14446, \"umap_x\": -1.0952894687652588, \"umap_y\": 1.831425666809082, \"post_id\": 14446.0, \"author_id\": 23.0, \"id_y\": 23.0, \"author\": \"Freie Presse\", \"author_group\": \"Freie Presse\"}, {\"id_x\": 14448, \"umap_x\": -0.3844078481197357, \"umap_y\": -0.3468402624130249, \"post_id\": 14448.0, \"author_id\": 869.0, \"id_y\": 869.0, \"author\": \"Erik Anke\", \"author_group\": \"Other\"}, {\"id_x\": 14448, \"umap_x\": -0.3844078481197357, \"umap_y\": -0.3468402624130249, \"post_id\": 14448.0, \"author_id\": 880.0, \"id_y\": 880.0, \"author\": \"freie presse\", \"author_group\": \"Other\"}, {\"id_x\": 14452, \"umap_x\": -0.8667306900024414, \"umap_y\": -1.247675895690918, \"post_id\": 14452.0, \"author_id\": 36.0, \"id_y\": 36.0, \"author\": \"Denise Peikert\", \"author_group\": \"Denise Peikert\"}, {\"id_x\": 14452, \"umap_x\": -0.8667306900024414, \"umap_y\": -1.247675895690918, \"post_id\": 14452.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14454, \"umap_x\": -3.13633131980896, \"umap_y\": 1.1455246210098267, \"post_id\": 14454.0, \"author_id\": 255.0, \"id_y\": 255.0, \"author\": \"Vincent Ebneth\", \"author_group\": \"Other\"}, {\"id_x\": 14454, \"umap_x\": -3.13633131980896, \"umap_y\": 1.1455246210098267, \"post_id\": 14454.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14456, \"umap_x\": -1.1345617771148682, \"umap_y\": 1.750057578086853, \"post_id\": 14456.0, \"author_id\": 99.0, \"id_y\": 99.0, \"author\": \"Matthias Puppe\", \"author_group\": \"Other\"}, {\"id_x\": 14456, \"umap_x\": -1.1345617771148682, \"umap_y\": 1.750057578086853, \"post_id\": 14456.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14458, \"umap_x\": -3.8590822219848633, \"umap_y\": -1.0082889795303345, \"post_id\": 14458.0, \"author_id\": 49.0, \"id_y\": 49.0, \"author\": \"Frank D\\u00f6ring\", \"author_group\": \"Frank D\\u00f6ring\"}, {\"id_x\": 14460, \"umap_x\": -3.560795783996582, \"umap_y\": -1.4028797149658203, \"post_id\": 14460.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14462, \"umap_x\": -2.5510048866271973, \"umap_y\": -0.1024787500500679, \"post_id\": 14462.0, \"author_id\": 1024.0, \"id_y\": 1024.0, \"author\": \"Caroline Wiede\", \"author_group\": \"Other\"}, {\"id_x\": 14462, \"umap_x\": -2.5510048866271973, \"umap_y\": -0.1024787500500679, \"post_id\": 14462.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14464, \"umap_x\": -0.7076882123947144, \"umap_y\": -0.9707516431808472, \"post_id\": 14464.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14476, \"umap_x\": -1.0664066076278687, \"umap_y\": -0.308397501707077, \"post_id\": 14476.0, \"author_id\": 802.0, \"id_y\": 802.0, \"author\": \"Periskop\", \"author_group\": \"Other\"}, {\"id_x\": 14479, \"umap_x\": -0.2364484667778015, \"umap_y\": 3.2481753826141357, \"post_id\": 14479.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14490, \"umap_x\": 0.3655140995979309, \"umap_y\": 2.764101982116699, \"post_id\": 14490.0, \"author_id\": 1133.0, \"id_y\": 1133.0, \"author\": \"Soligruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14492, \"umap_x\": -0.5626289248466492, \"umap_y\": 2.482679605484009, \"post_id\": 14492.0, \"author_id\": 1133.0, \"id_y\": 1133.0, \"author\": \"Soligruppe Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14495, \"umap_x\": -0.8921338319778442, \"umap_y\": -1.2858363389968872, \"post_id\": 14495.0, \"author_id\": 118.0, \"id_y\": 118.0, \"author\": \"Zeit\", \"author_group\": \"Other\"}, {\"id_x\": 14497, \"umap_x\": 1.3141769170761108, \"umap_y\": -0.7729555368423462, \"post_id\": 14497.0, \"author_id\": 1035.0, \"id_y\": 1035.0, \"author\": \"Natalie Meinert\", \"author_group\": \"Other\"}, {\"id_x\": 14499, \"umap_x\": -1.7439566850662231, \"umap_y\": 3.7472875118255615, \"post_id\": 14499.0, \"author_id\": 1135.0, \"id_y\": 1135.0, \"author\": \"Peter Gelderloos\", \"author_group\": \"Other\"}, {\"id_x\": 14507, \"umap_x\": -1.7427983283996582, \"umap_y\": 2.426431655883789, \"post_id\": 14507.0, \"author_id\": 958.0, \"id_y\": 958.0, \"author\": \"Sebastian Lotzer\", \"author_group\": \"Other\"}, {\"id_x\": 14511, \"umap_x\": -3.0957682132720947, \"umap_y\": 2.613752603530884, \"post_id\": 14511.0, \"author_id\": 1136.0, \"id_y\": 1136.0, \"author\": \"Leonard Roemer\", \"author_group\": \"Other\"}, {\"id_x\": 14511, \"umap_x\": -3.0957682132720947, \"umap_y\": 2.613752603530884, \"post_id\": 14511.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14513, \"umap_x\": 0.07503274828195572, \"umap_y\": -0.5614631772041321, \"post_id\": 14513.0, \"author_id\": 414.0, \"id_y\": 414.0, \"author\": \"tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 14515, \"umap_x\": -1.3704333305358887, \"umap_y\": -1.8006160259246826, \"post_id\": 14515.0, \"author_id\": 561.0, \"id_y\": 561.0, \"author\": \"Fionn Klose\", \"author_group\": \"Other\"}, {\"id_x\": 14517, \"umap_x\": 0.10479394346475601, \"umap_y\": 3.777273416519165, \"post_id\": 14517.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 14520, \"umap_x\": -0.8835220336914062, \"umap_y\": 2.8053410053253174, \"post_id\": 14520.0, \"author_id\": 803.0, \"id_y\": 803.0, \"author\": \"alea\", \"author_group\": \"Other\"}, {\"id_x\": 14523, \"umap_x\": -1.2660725116729736, \"umap_y\": 3.9813709259033203, \"post_id\": 14523.0, \"author_id\": 1137.0, \"id_y\": 1137.0, \"author\": \"Eris\", \"author_group\": \"Other\"}, {\"id_x\": 14523, \"umap_x\": -1.2660725116729736, \"umap_y\": 3.9813709259033203, \"post_id\": 14523.0, \"author_id\": 1138.0, \"id_y\": 1138.0, \"author\": \"Linke Einheit Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14528, \"umap_x\": -1.9585572481155396, \"umap_y\": 4.267261981964111, \"post_id\": 14528.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14531, \"umap_x\": -1.4022538661956787, \"umap_y\": -1.8081623315811157, \"post_id\": 14531.0, \"author_id\": 731.0, \"id_y\": 731.0, \"author\": \"Maik Baumg\\u00e4rtner\", \"author_group\": \"Other\"}, {\"id_x\": 14531, \"umap_x\": -1.4022538661956787, \"umap_y\": -1.8081623315811157, \"post_id\": 14531.0, \"author_id\": 348.0, \"id_y\": 348.0, \"author\": \"Johannes Grunert\", \"author_group\": \"Other\"}, {\"id_x\": 14531, \"umap_x\": -1.4022538661956787, \"umap_y\": -1.8081623315811157, \"post_id\": 14531.0, \"author_id\": 733.0, \"id_y\": 733.0, \"author\": \"Ann-Katrin M\\u00fcller\", \"author_group\": \"Other\"}, {\"id_x\": 14533, \"umap_x\": -0.37592700123786926, \"umap_y\": -1.788537621498108, \"post_id\": 14533.0, \"author_id\": 250.0, \"id_y\": 250.0, \"author\": \"Autor\", \"author_group\": \"Other\"}, {\"id_x\": 14535, \"umap_x\": -0.826130211353302, \"umap_y\": 5.218211650848389, \"post_id\": 14535.0, \"author_id\": 1131.0, \"id_y\": 1131.0, \"author\": \"Betroffene\", \"author_group\": \"Other\"}, {\"id_x\": 14537, \"umap_x\": -0.7439243197441101, \"umap_y\": 4.945533275604248, \"post_id\": 14537.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14539, \"umap_x\": 0.27048441767692566, \"umap_y\": 4.184351921081543, \"post_id\": 14539.0, \"author_id\": 1115.0, \"id_y\": 1115.0, \"author\": \"Thomas\", \"author_group\": \"Other\"}, {\"id_x\": 14541, \"umap_x\": 0.897808313369751, \"umap_y\": 3.9877450466156006, \"post_id\": 14541.0, \"author_id\": 1122.0, \"id_y\": 1122.0, \"author\": \"John Malamatinas\", \"author_group\": \"Other\"}, {\"id_x\": 14541, \"umap_x\": 0.897808313369751, \"umap_y\": 3.9877450466156006, \"post_id\": 14541.0, \"author_id\": 1123.0, \"id_y\": 1123.0, \"author\": \"Jan Theurich\", \"author_group\": \"Other\"}, {\"id_x\": 14543, \"umap_x\": 0.32166722416877747, \"umap_y\": 3.2899134159088135, \"post_id\": 14543.0, \"author_id\": 496.0, \"id_y\": 496.0, \"author\": \"BASC\", \"author_group\": \"Other\"}, {\"id_x\": 14545, \"umap_x\": -0.22365136444568634, \"umap_y\": 4.18597936630249, \"post_id\": 14545.0, \"author_id\": 371.0, \"id_y\": 371.0, \"author\": \"a\", \"author_group\": \"a\"}, {\"id_x\": 14547, \"umap_x\": 1.1098906993865967, \"umap_y\": 0.3134598135948181, \"post_id\": 14547.0, \"author_id\": 920.0, \"id_y\": 920.0, \"author\": \"Antifa Recherche Team Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 14562, \"umap_x\": -0.017769640311598778, \"umap_y\": -0.5464154481887817, \"post_id\": 14562.0, \"author_id\": 944.0, \"id_y\": 944.0, \"author\": \"Tagesschau\", \"author_group\": \"Other\"}, {\"id_x\": 14564, \"umap_x\": 0.0667470321059227, \"umap_y\": -0.5357142090797424, \"post_id\": null, \"author_id\": null, \"id_y\": null, \"author\": \"Unknown\", \"author_group\": \"Unknown\"}, {\"id_x\": 14566, \"umap_x\": -0.40770646929740906, \"umap_y\": -0.8066150546073914, \"post_id\": 14566.0, \"author_id\": 350.0, \"id_y\": 350.0, \"author\": \"Leipzig\", \"author_group\": \"Other\"}, {\"id_x\": 14569, \"umap_x\": 0.7629671692848206, \"umap_y\": 1.9031957387924194, \"post_id\": 14569.0, \"author_id\": 131.0, \"id_y\": 131.0, \"author\": \"taz\", \"author_group\": \"taz\"}, {\"id_x\": 14572, \"umap_x\": -0.1561482846736908, \"umap_y\": 1.5897377729415894, \"post_id\": 14572.0, \"author_id\": 425.0, \"id_y\": 425.0, \"author\": \"Eric Hofmann\", \"author_group\": \"Other\"}, {\"id_x\": 14574, \"umap_x\": -3.1187353134155273, \"umap_y\": 4.287723541259766, \"post_id\": 14574.0, \"author_id\": 1139.0, \"id_y\": 1139.0, \"author\": \"ABC-Dresden\", \"author_group\": \"Other\"}, {\"id_x\": 14580, \"umap_x\": -2.555488348007202, \"umap_y\": 2.2170724868774414, \"post_id\": 14580.0, \"author_id\": 34.0, \"id_y\": 34.0, \"author\": \"Anonym\", \"author_group\": \"Anonym\"}, {\"id_x\": 14588, \"umap_x\": -1.4323927164077759, \"umap_y\": -0.7789562940597534, \"post_id\": 14588.0, \"author_id\": 1140.0, \"id_y\": 1140.0, \"author\": \"Christine Jacob\", \"author_group\": \"Other\"}, {\"id_x\": 14588, \"umap_x\": -1.4323927164077759, \"umap_y\": -0.7789562940597534, \"post_id\": 14588.0, \"author_id\": 1013.0, \"id_y\": 1013.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14590, \"umap_x\": 1.0086212158203125, \"umap_y\": 0.18771620094776154, \"post_id\": 14590.0, \"author_id\": 1000.0, \"id_y\": 1000.0, \"author\": \"lvz\", \"author_group\": \"lvz\"}, {\"id_x\": 14592, \"umap_x\": -2.071899652481079, \"umap_y\": -0.4266551434993744, \"post_id\": 14592.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 14594, \"umap_x\": -0.972070038318634, \"umap_y\": -1.290165662765503, \"post_id\": 14594.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 14596, \"umap_x\": 0.9233794808387756, \"umap_y\": -0.869601845741272, \"post_id\": 14596.0, \"author_id\": 582.0, \"id_y\": 582.0, \"author\": \"MDR\", \"author_group\": \"MDR\"}, {\"id_x\": 14598, \"umap_x\": 1.2267515659332275, \"umap_y\": 0.5834208726882935, \"post_id\": 14598.0, \"author_id\": 7.0, \"id_y\": 7.0, \"author\": \"LVZ\", \"author_group\": \"LVZ\"}, {\"id_x\": 14600, \"umap_x\": -1.0094537734985352, \"umap_y\": 0.6707562208175659, \"post_id\": 14600.0, \"author_id\": 1141.0, \"id_y\": 1141.0, \"author\": \"Lea Hruschka\", \"author_group\": \"Other\"}, {\"id_x\": 14600, \"umap_x\": -1.0094537734985352, \"umap_y\": 0.6707562208175659, \"post_id\": 14600.0, \"author_id\": 214.0, \"id_y\": 214.0, \"author\": \"Edgar Lopez\", \"author_group\": \"Other\"}, {\"id_x\": 14609, \"umap_x\": -0.21790394186973572, \"umap_y\": 2.889512777328491, \"post_id\": 14609.0, \"author_id\": 1142.0, \"id_y\": 1142.0, \"author\": \"Atomkinder e.V.\", \"author_group\": \"Other\"}, {\"id_x\": 14611, \"umap_x\": -0.3055095374584198, \"umap_y\": 4.264981746673584, \"post_id\": 14611.0, \"author_id\": 1143.0, \"id_y\": 1143.0, \"author\": \"Antifa Westberlin\", \"author_group\": \"Other\"}, {\"id_x\": 14613, \"umap_x\": 0.9975761771202087, \"umap_y\": 1.0325548648834229, \"post_id\": 14613.0, \"author_id\": 333.0, \"id_y\": 333.0, \"author\": \"mpu\", \"author_group\": \"Other\"}, {\"id_x\": 14615, \"umap_x\": -3.182854652404785, \"umap_y\": -1.0665204524993896, \"post_id\": 14615.0, \"author_id\": 640.0, \"id_y\": 640.0, \"author\": \"AIB\", \"author_group\": \"Other\"}, {\"id_x\": 14617, \"umap_x\": -0.8422752022743225, \"umap_y\": -0.1668323129415512, \"post_id\": 14617.0, \"author_id\": 640.0, \"id_y\": 640.0, \"author\": \"AIB\", \"author_group\": \"Other\"}, {\"id_x\": 14619, \"umap_x\": -0.7866588830947876, \"umap_y\": -0.8377236723899841, \"post_id\": 14619.0, \"author_id\": 640.0, \"id_y\": 640.0, \"author\": \"AIB\", \"author_group\": \"Other\"}, {\"id_x\": 14623, \"umap_x\": -3.972134828567505, \"umap_y\": -0.5568779110908508, \"post_id\": 14623.0, \"author_id\": 498.0, \"id_y\": 498.0, \"author\": \"MDR SACHSEN\", \"author_group\": \"Other\"}, {\"id_x\": 14625, \"umap_x\": -2.984452962875366, \"umap_y\": 4.272590637207031, \"post_id\": 14625.0, \"author_id\": 466.0, \"id_y\": 466.0, \"author\": \"Thorsten Mense\", \"author_group\": \"Other\"}, {\"id_x\": 14627, \"umap_x\": 0.2764526605606079, \"umap_y\": 4.078695297241211, \"post_id\": 14627.0, \"author_id\": 578.0, \"id_y\": 578.0, \"author\": \"Fritz Burschel\", \"author_group\": \"Other\"}, {\"id_x\": 14627, \"umap_x\": 0.2764526605606079, \"umap_y\": 4.078695297241211, \"post_id\": 14627.0, \"author_id\": 117.0, \"id_y\": 117.0, \"author\": \"AK\", \"author_group\": \"Other\"}]}}, {\"mode\": \"vega-lite\"});\n",
"</script>"
],
"text/plain": [
"alt.Chart(...)"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Total points: 5021\n",
"Unique authors: 1127\n",
"Top 15 authors shown in legend (others grouped as 'Other')\n"
]
}
],
"source": [
"# Check for UMAP coordinates and create scatter plot with author coloring\n",
"umap_found = False\n",
"\n",
"# Look for tables with umap_x and umap_y columns\n",
"for table_name, df in dataframes.items():\n",
" if 'umap_x' in df.columns and 'umap_y' in df.columns:\n",
" print(f\"Found UMAP coordinates in table: {table_name}\")\n",
" umap_found = True\n",
" \n",
" # Check if we can join with authors\n",
" if 'posts' in dataframes and 'post_authors' in dataframes and 'authors' in dataframes:\n",
" df_posts = dataframes['posts']\n",
" df_post_authors = dataframes['post_authors']\n",
" df_authors = dataframes['authors']\n",
" \n",
" # Check if the current table has necessary columns for joining\n",
" if 'id' in df.columns or 'post_id' in df.columns:\n",
" post_id_col = 'id' if 'id' in df.columns else 'post_id'\n",
" \n",
" # Start with posts table that has UMAP coordinates\n",
" df_umap = df[[post_id_col, 'umap_x', 'umap_y']].dropna(subset=['umap_x', 'umap_y'])\n",
" \n",
" # Join with post_authors to get author_id\n",
" if 'post_id' in df_post_authors.columns and 'author_id' in df_post_authors.columns:\n",
" df_umap = df_umap.merge(\n",
" df_post_authors[['post_id', 'author_id']],\n",
" left_on=post_id_col,\n",
" right_on='post_id',\n",
" how='left'\n",
" )\n",
" \n",
" # Join with authors to get author name\n",
" if 'id' in df_authors.columns and 'name' in df_authors.columns:\n",
" df_umap = df_umap.merge(\n",
" df_authors[['id', 'name']],\n",
" left_on='author_id',\n",
" right_on='id',\n",
" how='left'\n",
" )\n",
" \n",
" # Rename name column to author for clarity\n",
" df_umap = df_umap.rename(columns={'name': 'author'})\n",
" \n",
" # Fill missing authors with 'Unknown'\n",
" df_umap['author'] = df_umap['author'].fillna('Unknown')\n",
" \n",
" # Get top 15 authors by count for better visualization\n",
" top_authors = df_umap['author'].value_counts().head(15).index.tolist()\n",
" df_umap['author_group'] = df_umap['author'].apply(\n",
" lambda x: x if x in top_authors else 'Other'\n",
" )\n",
" \n",
" # Create scatter plot with author coloring\n",
" scatter = alt.Chart(df_umap).mark_circle(size=40, opacity=0.7).encode(\n",
" x=alt.X('umap_x:Q', title='UMAP Dimension 1'),\n",
" y=alt.Y('umap_y:Q', title='UMAP Dimension 2'),\n",
" color=alt.Color('author_group:N', title='Author', scale=alt.Scale(scheme='tableau20')),\n",
" tooltip=['author', 'umap_x', 'umap_y']\n",
" ).properties(\n",
" title='UMAP 2D Projection by Author',\n",
" width=800,\n",
" height=600\n",
" ).interactive()\n",
" \n",
" display(scatter)\n",
" \n",
" print(f\"\\nTotal points: {len(df_umap)}\")\n",
" print(f\"Unique authors: {df_umap['author'].nunique()}\")\n",
" print(f\"Top 15 authors shown in legend (others grouped as 'Other')\")\n",
" else:\n",
" print(\"Could not find required columns in authors table\")\n",
" else:\n",
" print(\"Could not find required columns in post_authors table\")\n",
" else:\n",
" print(f\"Could not find post_id column in {table_name} table\")\n",
" else:\n",
" # Fallback: create plot without author coloring\n",
" df_umap = df[['umap_x', 'umap_y']].dropna()\n",
" \n",
" scatter = alt.Chart(df_umap).mark_circle(size=30, opacity=0.6).encode(\n",
" x=alt.X('umap_x:Q', title='UMAP Dimension 1'),\n",
" y=alt.Y('umap_y:Q', title='UMAP Dimension 2'),\n",
" tooltip=['umap_x', 'umap_y']\n",
" ).properties(\n",
" title='UMAP 2D Projection',\n",
" width=700,\n",
" height=600\n",
" ).interactive()\n",
" \n",
" display(scatter)\n",
" \n",
" print(f\"\\nTotal points: {len(df_umap)}\")\n",
" print(\"Note: Author coloring not available (missing required tables)\")\n",
" \n",
" break\n",
"\n",
"if not umap_found:\n",
" print(\"No UMAP coordinates (umap_x, umap_y) found in any table\")"
]
},
{
"cell_type": "markdown",
"id": "c57a57fa",
"metadata": {},
"source": [
"### 3D Embedding Visualization\n",
"\n",
"Visualize the high-dimensional embeddings in 3D space using PCA for dimensionality reduction.\n"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "42352fef",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Found embedding column in posts table\n",
"No valid embeddings found\n"
]
}
],
"source": [
"import numpy as np\n",
"import plotly.graph_objects as go\n",
"import json\n",
"\n",
"# Check if posts table has embedding column\n",
"if 'posts' in dataframes:\n",
" df_posts = dataframes['posts']\n",
" \n",
" if 'embedding' in df_posts.columns:\n",
" print(\"Found embedding column in posts table\")\n",
" \n",
" # Extract embeddings and convert to array\n",
" embeddings_3d = []\n",
" valid_indices = []\n",
" \n",
" for idx, embedding in enumerate(df_posts['embedding']):\n",
" try:\n",
" # Handle different embedding formats (string, list, array, bytes)\n",
" if isinstance(embedding, bytes):\n",
" emb_array = np.array(json.loads(embedding.decode('utf-8')))\n",
" elif isinstance(embedding, str):\n",
" emb_array = np.array(json.loads(embedding))\n",
" elif isinstance(embedding, (list, tuple)):\n",
" emb_array = np.array(embedding)\n",
" else:\n",
" emb_array = embedding\n",
" \n",
" if emb_array is not None and len(emb_array) >= 3:\n",
" # Take only the first 3 dimensions\n",
" embeddings_3d.append(emb_array[:3])\n",
" valid_indices.append(idx)\n",
" except Exception as e:\n",
" continue\n",
" \n",
" if embeddings_3d:\n",
" # Convert to numpy array and ensure it's 2D (n_embeddings, 3)\n",
" embeddings_3d = np.array(embeddings_3d)\n",
" if embeddings_3d.ndim == 1:\n",
" embeddings_3d = embeddings_3d.reshape(-1, 3)\n",
" print(f\"Extracted {len(embeddings_3d)} embeddings with shape {embeddings_3d.shape}\")\n",
" \n",
" # Create a dataframe with 3D coordinates\n",
" df_3d = pd.DataFrame({\n",
" 'dim_1': embeddings_3d[:, 0],\n",
" 'dim_2': embeddings_3d[:, 1],\n",
" 'dim_3': embeddings_3d[:, 2]\n",
" })\n",
" \n",
" # Try to add author information\n",
" if 'post_authors' in dataframes and 'authors' in dataframes:\n",
" try:\n",
" df_post_authors = dataframes['post_authors']\n",
" df_authors = dataframes['authors']\n",
" \n",
" # Get author names for valid indices\n",
" authors = []\n",
" for idx in valid_indices:\n",
" post_id = df_posts.iloc[idx]['id'] if 'id' in df_posts.columns else None\n",
" if post_id is not None:\n",
" author_rows = df_post_authors[df_post_authors['post_id'] == post_id]\n",
" if not author_rows.empty:\n",
" author_id = author_rows.iloc[0]['author_id']\n",
" author_name = df_authors[df_authors['id'] == author_id]['name'].values\n",
" authors.append(author_name[0] if len(author_name) > 0 else 'Unknown')\n",
" else:\n",
" authors.append('Unknown')\n",
" else:\n",
" authors.append('Unknown')\n",
" \n",
" df_3d['author'] = authors\n",
" \n",
" # Get top 10 authors for coloring\n",
" top_authors = df_3d['author'].value_counts().head(10).index.tolist()\n",
" df_3d['author_group'] = df_3d['author'].apply(\n",
" lambda x: x if x in top_authors else 'Other'\n",
" )\n",
" \n",
" # Create 3D scatter plot with Plotly\n",
" fig = go.Figure(data=[go.Scatter3d(\n",
" x=df_3d['dim_1'],\n",
" y=df_3d['dim_2'],\n",
" z=df_3d['dim_3'],\n",
" mode='markers',\n",
" marker=dict(\n",
" size=4,\n",
" color=[top_authors.index(author) if author in top_authors else len(top_authors) \n",
" for author in df_3d['author_group']],\n",
" colorscale='Viridis',\n",
" showscale=True,\n",
" colorbar=dict(title=\"Author Group\"),\n",
" opacity=0.7\n",
" ),\n",
" text=df_3d['author'],\n",
" hovertemplate='<b>%{text}</b><br>Dim 1: %{x:.3f}<br>Dim 2: %{y:.3f}<br>Dim 3: %{z:.3f}<extra></extra>'\n",
" )])\n",
" except Exception as e:\n",
" print(f\"Could not add author coloring: {e}\")\n",
" # Fallback: create plot without author coloring\n",
" fig = go.Figure(data=[go.Scatter3d(\n",
" x=df_3d['dim_1'],\n",
" y=df_3d['dim_2'],\n",
" z=df_3d['dim_3'],\n",
" mode='markers',\n",
" marker=dict(size=4, opacity=0.7, color='blue'),\n",
" hovertemplate='Dim 1: %{x:.3f}<br>Dim 2: %{y:.3f}<br>Dim 3: %{z:.3f}<extra></extra>'\n",
" )])\n",
" else:\n",
" # Create 3D scatter plot without author coloring\n",
" fig = go.Figure(data=[go.Scatter3d(\n",
" x=df_3d['dim_1'],\n",
" y=df_3d['dim_2'],\n",
" z=df_3d['dim_3'],\n",
" mode='markers',\n",
" marker=dict(size=4, opacity=0.7, color='blue'),\n",
" hovertemplate='Dim 1: %{x:.3f}<br>Dim 2: %{y:.3f}<br>Dim 3: %{z:.3f}<extra></extra>'\n",
" )])\n",
" \n",
" fig.update_layout(\n",
" title='3D Visualization of Post Embeddings (First 3 Dimensions)',\n",
" scene=dict(\n",
" xaxis_title='Embedding Dimension 1',\n",
" yaxis_title='Embedding Dimension 2',\n",
" zaxis_title='Embedding Dimension 3'\n",
" ),\n",
" width=900,\n",
" height=700\n",
" )\n",
" \n",
" fig.show()\n",
" else:\n",
" print(\"No valid embeddings found\")\n",
" else:\n",
" print(\"No 'embedding' column found in posts table\")\n",
"else:\n",
" print(\"No 'posts' table found in database\")\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "knack-viz",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.14"
}
},
"nbformat": 4,
"nbformat_minor": 5
}