diff --git "a/BERTopic.ipynb" "b/BERTopic.ipynb"
new file mode 100644--- /dev/null
+++ "b/BERTopic.ipynb"
@@ -0,0 +1,10795 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "c3950dcb",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "8b15018b05fd492c8b04c766b1a77705",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Batches: 0%| | 0/30 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "from sentence_transformers import SentenceTransformer\n",
+ "from bertopic import BERTopic\n",
+ "from umap import UMAP\n",
+ "import pandas as pd\n",
+ "\n",
+ "df = pd.read_csv('NikeTwitter.csv')\n",
+ "docs = df['translated_text'].tolist()\n",
+ "\n",
+ "# Prepare embeddings\n",
+ "# docs = fetch_20newsgroups(subset='all', remove=('headers', 'footers', 'quotes'))['data']\n",
+ "sentence_model = SentenceTransformer(\"all-MiniLM-L6-v2\")\n",
+ "embeddings = sentence_model.encode(docs, show_progress_bar=True)\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "b83910f5",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "f011832e",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Train BERTopic\n",
+ "topic_model = BERTopic().fit(docs, embeddings)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "e93acf78",
+ "metadata": {
+ "scrolled": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "coloraxis": "coloraxis",
+ "hovertemplate": "x: %{x}
y: %{y}
Similarity Score: %{z}",
+ "name": "0",
+ "type": "heatmap",
+ "x": [
+ "0_dr_pepper_the",
+ "1_drinks_know_to"
+ ],
+ "xaxis": "x",
+ "y": [
+ "0_dr_pepper_the",
+ "1_drinks_know_to"
+ ],
+ "yaxis": "y",
+ "z": [
+ [
+ 1,
+ 0.8606308209529787
+ ],
+ [
+ 0.8606308209529787,
+ 0.9999999999999996
+ ]
+ ]
+ }
+ ],
+ "layout": {
+ "coloraxis": {
+ "colorbar": {
+ "title": {
+ "text": "Similarity Score"
+ }
+ },
+ "colorscale": [
+ [
+ 0,
+ "rgb(247,252,240)"
+ ],
+ [
+ 0.125,
+ "rgb(224,243,219)"
+ ],
+ [
+ 0.25,
+ "rgb(204,235,197)"
+ ],
+ [
+ 0.375,
+ "rgb(168,221,181)"
+ ],
+ [
+ 0.5,
+ "rgb(123,204,196)"
+ ],
+ [
+ 0.625,
+ "rgb(78,179,211)"
+ ],
+ [
+ 0.75,
+ "rgb(43,140,190)"
+ ],
+ [
+ 0.875,
+ "rgb(8,104,172)"
+ ],
+ [
+ 1,
+ "rgb(8,64,129)"
+ ]
+ ]
+ },
+ "height": 800,
+ "hoverlabel": {
+ "bgcolor": "white",
+ "font": {
+ "family": "Rockwell",
+ "size": 16
+ }
+ },
+ "legend": {
+ "title": {
+ "text": "Trend"
+ }
+ },
+ "margin": {
+ "t": 60
+ },
+ "showlegend": true,
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "#2a3f5f"
+ },
+ "error_y": {
+ "color": "#2a3f5f"
+ },
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "#E5ECF6",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "baxis": {
+ "endlinecolor": "#2a3f5f",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "#2a3f5f"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ },
+ "colorscale": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "#EBF0F8"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "#C8D4E3"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowcolor": "#2a3f5f",
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 0,
+ "ticks": ""
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "#8e0152"
+ ],
+ [
+ 0.1,
+ "#c51b7d"
+ ],
+ [
+ 0.2,
+ "#de77ae"
+ ],
+ [
+ 0.3,
+ "#f1b6da"
+ ],
+ [
+ 0.4,
+ "#fde0ef"
+ ],
+ [
+ 0.5,
+ "#f7f7f7"
+ ],
+ [
+ 0.6,
+ "#e6f5d0"
+ ],
+ [
+ 0.7,
+ "#b8e186"
+ ],
+ [
+ 0.8,
+ "#7fbc41"
+ ],
+ [
+ 0.9,
+ "#4d9221"
+ ],
+ [
+ 1,
+ "#276419"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#0d0887"
+ ],
+ [
+ 0.1111111111111111,
+ "#46039f"
+ ],
+ [
+ 0.2222222222222222,
+ "#7201a8"
+ ],
+ [
+ 0.3333333333333333,
+ "#9c179e"
+ ],
+ [
+ 0.4444444444444444,
+ "#bd3786"
+ ],
+ [
+ 0.5555555555555556,
+ "#d8576b"
+ ],
+ [
+ 0.6666666666666666,
+ "#ed7953"
+ ],
+ [
+ 0.7777777777777778,
+ "#fb9f3a"
+ ],
+ [
+ 0.8888888888888888,
+ "#fdca26"
+ ],
+ [
+ 1,
+ "#f0f921"
+ ]
+ ]
+ },
+ "colorway": [
+ "#636efa",
+ "#EF553B",
+ "#00cc96",
+ "#ab63fa",
+ "#FFA15A",
+ "#19d3f3",
+ "#FF6692",
+ "#B6E880",
+ "#FF97FF",
+ "#FECB52"
+ ],
+ "font": {
+ "color": "#2a3f5f"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "#E5ECF6",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "#E5ECF6",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "radialaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "yaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ },
+ "zaxis": {
+ "backgroundcolor": "#E5ECF6",
+ "gridcolor": "white",
+ "gridwidth": 2,
+ "linecolor": "white",
+ "showbackground": true,
+ "ticks": "",
+ "zerolinecolor": "white"
+ }
+ },
+ "shapedefaults": {
+ "line": {
+ "color": "#2a3f5f"
+ }
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "baxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ },
+ "bgcolor": "#E5ECF6",
+ "caxis": {
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": ""
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "white",
+ "linecolor": "white",
+ "ticks": "",
+ "title": {
+ "standoff": 15
+ },
+ "zerolinecolor": "white",
+ "zerolinewidth": 2
+ }
+ }
+ },
+ "title": {
+ "font": {
+ "color": "Black",
+ "size": 22
+ },
+ "text": "Similarity Matrix",
+ "x": 0.55,
+ "xanchor": "center",
+ "y": 0.95,
+ "yanchor": "top"
+ },
+ "width": 800,
+ "xaxis": {
+ "anchor": "y",
+ "constrain": "domain",
+ "domain": [
+ 0,
+ 1
+ ],
+ "scaleanchor": "y"
+ },
+ "yaxis": {
+ "anchor": "x",
+ "autorange": "reversed",
+ "constrain": "domain",
+ "domain": [
+ 0,
+ 1
+ ]
+ }
+ }
+ },
+ "text/html": [
+ "
"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Run the visualization with the original embeddings\n",
+ "# topic_model.visualize_hierarchy()\n",
+ "topic_model.visualize_heatmap()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "46f245d1",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Shoe Name: \"Nike Air Max 1 x Travis Scott Cactus Jack Men's 14\" To Get The Full Details About Nike Air Max 1 x Travis Scott Cactus Jack Men's 14, Click The Link In The Comment Section Below: ",
+ "@cgritmon A3b @Nike with its “just do it.” statement, encourages each individual to work hard & be their best. #ChatAboutBrand",
+ ".@Galatasaray x @Nike 2014/15 Home Jersey Available now at ",
+ "if we're being honest nikes are the most trash shoes ever. name a pair of nikes that you can wear for hours and are mad comfortable.",
+ "\"It's Down To Day 28 Of #BHMKOTD & I Have Had So Much Fun Wit You All & A Big S/o To @JerLisa_Nicole For Da Experience, So Its Rep 'Chicago' Today I'm Gonna Go Wit 2022 Jordan 1 'Chicago' aka 'Lost & Found' To Step Out!\" #MJ23 @Jumpman23 #SNKRS @Nike #Love4Kicks #SNKRHD ",
+ "I'm excited to see what my favorite brands like Nike and Raytheon will be doing this year artistically",
+ "@elio82 with this I will buy my middle son Ben nikes. His feet are starting to bleed. ",
+ "Got this bad boy on the market, Travis Scott Air Max 1 saturn gold. Comes with original box and barcode. Contact for more details @trvisXX @Nike #sneaker #nike #TravisScott #dunks ",
+ "Offspring Restock: Nike Dunk Low Trainers Phantom Iron Ore Brown European_Union: #Sneakers ",
+ "ad: Nike Dunk High 'White / Black' via DTLR BUY HERE -> ",
+ "Run me that lifetime supply of bootseyes @Nike",
+ "Bid on big brands label Browse the huge range of big brands in Marchington this week including DeWalt, Dior, Nike and more. Bid here backhand_index_pointing_right ",
+ "AD: Dropped via SSENSE Nike Air Humara Midnight Navy Faded Spruce ",
+ "Dropped via SSENSE Nike x Premium Goods Air Force 1 => ",
+ "A Look Back At A Decade Of Nike's Black History Month Collection ",
+ "Throughout these past days I checked it's not near my room so that I like Starbucks. Nike is great night.",
+ "Hahaha. Nike don mix up Naija jersey for Liverpool.",
+ "@SteveNorrisTV @nike_shauna Yes, but he said that sometimes if they just rest- they recover and he sat it up there to let it settle down and recover. He then said that he did not survive. If he was never back there until he found them- why would he know he died? He said he left right after he took the chicken",
+ "Customized Nike Air Jordan Retro 15 XV Stealth Sneakers Fly Ki by LionessPrints via @Etsy",
+ "Cristiano Ronaldo Did Not Cast Vote At FIFA Awards Where Lionel Messi Won. This Is The Reason - NDTV Sports #LosAngeles #love #sports #nike",
+ "@FitzDunk Genna, I did affi give you a subscribe after your last video on Nike. You did stick pon 69… firefirefire",
+ " Speaking of I got a question, can we get a re-release of the teal jerseys? But have them say Memphis instead also Memphis never got an earned jersey for playoffs eyes ",
+ "Franchised DT Daron Payne 'would've been on the Browns radar' - Dawgs By Nature #Dallas #nike #sports #workout",
+ "Judge getting that Nike/Jordan deal soon",
+ "Nike Court Air Zoom Vapor Pro Tennis Women's Sz 6.5 Shoes Multicolor CZ0222-400 eBay ",
+ "@GenePicone2 @Nike Last two shoes I bought ripped. Warmup pants ripped. Not after a lot of wear either.",
+ "The night that I learned I had no radishes, Jesus Christ, the son of god, crawled out of my air ducts to show off his new Nike sneakers, and I was so miserable that all I could do was stuff him back into my air ducts .",
+ "@TheOvalPawffice I love her red high-heeled_shoe. Next she needs to wear Nike shoes.",
+ "@Nike @GUESS @NestleFr @microsoftfrance IMPT « carbon credits crypto project » claims to be in partnership with you ? What can you say about this? Cause it looks like a scam! ",
+ "Ad: Nike Air Force 1 '07 White/White-Lt Photo Blue ",
+ "What’s really crazy is Nike been tracking SNKRS Ls per user at least since 2018 and still won’t give people they know rarely ever get EA access and continue to give some of the same people or new people with no history access first constantly",
+ "On the last day of #blackhistorymonth we celebrate our diver, Kristen Hayden (@kristen_hayden)! Kristen became the first African American woman to win a national title in diving. Kristen celebrates Nike Agunbiade, who became the first woman of color to win two Pac-12 titles. ",
+ "@DucklingVenom Nike is good tbh just these leaks so far are bad",
+ "@GarbageApe We were so innocent back then. Before the Fall",
+ "@TheSiteSupply Well I already got a W on the AMM 12s so ima go with either the Tiffany AF1s or the Nike SB 4s firefirefire",
+ "@OscarPr31751228 @SOLELINKS Fawk Snkrs Exclusive Access, they hype it up just to screw you up!! They gave me Exclusive Access on the Lost n Found, only to allocate a warehouse that were experiencing delays and I never got my shoe! Nike could have done something about it, but didn't try to make it right. Fake!",
+ "The #NikeAirHuarache Craft Receives The “Coconut Milk” Treatment: Spring is just around the corner, and Nike is… Follow @tensolesdown ",
+ "Ssense EU Restock: Nike White Ambush Edition Air Force 1 Low Sp Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "AD: Dropped today Jordan Why Not .6 'Bright Crimson/Volt' DSG Finishline $10 off w/code FNLFAM JDsports Nike ",
+ "Sneaker News: The Nike Air Huarache Craft Receives The “Coconut Milk” Treatment #sneaker ",
+ "@mulherv1ado @hateroIogy @icaica_10 Then why didn't nike/victim take it up with the police and file a report? Where is the police report from 2016? Why did they continue to work with him until 2019, and bring this up when he decided to drop them for Puma?",
+ "@CABBIE96 Delete those Nikes and put a pair of Clark's on",
+ "Ad: Nike Grade School Air Force 1 White/Bright Crimson-Photo Blue ",
+ "@Fwiz @0xPolygon @BankofAmerica @Starbucks @Nike Is it true that Polygon is susceptible to a simple multisig attack? How many of the keys do you have access to?",
+ "A Chill \"Worn Blue\" Covers the Nike Zoom Vomero 5 take you to SSENSE || COP that on StockX > ",
+ "Nike have it as part of their contract to produce an awful away kit every season it seems.",
+ "@AStheGOAT24 Funny enough I found these at a Nike clearance outlet store. Different style but the quality is same >>>> Appreciate you brotha ",
+ "#GiveawayAlert megaphone Final Countdown 8hrs Left Your #Big #Win Awaits Dont get #LeftBehind in the Dust Subscribe Like Comment Follow Upvote You Are Appreciated @greydaygamers Gotta have a #PS5 for #PSVR2 #VRgaming #SupportSmallStreams Goal 1k Subscribers Be the #One \" JustDoIt\" #Nike",
+ "Nike Mens Dry Victory Polo, Photo Blue/White, Xx-Large ~ #cricket #ad ",
+ "#TravisScott x #Nike #SBDunk Low Premium Special Box ",
+ "@DaveOCKOP This should be our away kit for 23/24 @Nike get your act together this is the Best away kit the club has ever had ",
+ "#SneakerScouts The Nike Air Force 1 Low 'Triple White' is now available via @FinishLine! |$110| #give @Nike >>> ",
+ "Ad: Restock: Nike Air VaporMax Plus Men's Shoes Black/Black/Dark Grey United_States ",
+ "So I ordered some new shoes since they had a good deal on them, this is what I ordered and this is what I got. And now both shoes are out thanks @Nike. Kinda easy to point out that I got a pair of kids' shoes and women's shoes instead of men's 12.5 and 13 shoes. ",
+ "Nike Women's Aerobic Visor #Amazon ",
+ "Nike Kyrie Infinity 1 World 1 People Sweet Beet CZ0204-600 #Kyrie #Nike #Follow",
+ "Nike check_mark_button",
+ "beau and irina are like nike and mcdonalds. beau is doing it and irina is loving it.",
+ "Ssense US Restock: Nike Off-White Undercover Edition Moc Flow Sp United_States: #Sneakers ",
+ "Ad: Does DJ Khaled need another Jordan collab? Available via Nike US DJ Khaled x Air Jordan 5 \"Crimson Bliss\" FREE shipping and returns MEN ($225) >> GS ($160) >> ",
+ "@Olanikeajagun01 so finally Nike finds lovebeaming_face_with_smiling_eyes",
+ "@LiverpoolLatam @Nike Mas fea ...",
+ "@cydelmg @BagHoldingNFTs @Nike They are doing what they should have 'not being in a rush. #TeamRTFKT",
+ "@BagHoldingNFTs @youarestoic @Nike @RTFKT I think your opinion is totally fair. Only time will tell..",
+ "This Receiver's Combine Performance Could Make Him a Raven - #LosAngeles #nike #sports #fitness",
+ "Ssense EU Restock: Nike Black Slam Jam Edition Air Force 1 Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "A $70 hoodie should not be creating all the lint in the world even after 2 washes @Nike",
+ "Outside with it…red_heart #Nike #LostandFound #Kotd ",
+ "@Nike: just do it. @GovWike: over do it. #electionresults2023 #INECElectionResult",
+ "@LenRavelo42 @Fanatics @Dodgers You check @Nike",
+ "Currently there's a commercial where AT&T says my phone should be on Antiques Road Show while another commercial has LeBron James making fun of the Nikes I wear. I didn't need Lily from AT&T or Lebron James to tell me I'm uncool. I know that already. thumbs_up",
+ "NIKE MATTE BLACK METAL EYEGLASSES ",
+ "Nike Tampa Bay Buccaneers Custom #00 Men's Red Color Rush Limited Jersey ",
+ "Idk what Nike got goin on smh. Still no Shipping confirmation…",
+ "Biggest thing I miss from last year is Nike ID. So many options and shoe models to choose from",
+ "running_shoe Nike PH Sale #NikePH #NikeSale #NikePhilippines ",
+ "@Candynsis40 Cool story, in 1966 they started a bus line to take kids to the beach, cut down on hitch hiking, the news was on bus asking if we liked it, I got off bus & camera guy followed us,I'd embroidered Just Do It on my jean shorts, later I saw it on 5pm newssmiling_face_with_sunglassesrolling_on_the_floor_laughingso Nike I want my cut$$",
+ "Nike Air Max 2021 Mens Running Trainers DA1925 Sneakers Shoes (UK 10 US 11 EU 45, Ghost Obsidian Ashen Slate 002) $269.21 1st_place_medal ",
+ "@AHumanoidDroid @Mdixon55 And if you want to go down the canceling path better look at the gop: Disney, M&Ms, Cheney, Hillary, CRT, LGBTQ+, Dixie chicks, women comedians, Nike, bill gates, Apple, Starbucks, anyone who doesn't agree with them, women with a brain... ",
+ "AD: Dropping at 12am PT/3am ET Nike Air Force 1 Low Jewel 'Safety Orange' Endclothing -> Sizes available now on Revolve Shop -> ",
+ "@snkr_twitr The way I see it, Nike is helping me save money every time I take an L.",
+ "#Nike #SB #Dunk Low #StreetHawker 2021 CV1628-800 ",
+ "where my old nike coworkers at that still work there? Lol I need a favor",
+ "Attention Athletes! Closed-toed footwear WITH LACES is required for lifting. Hey Dudes and Crocs don't count. If cushy running shoes are uncomfortable look for something like Nike Metcons or cross-trainers with less padding in them. Converse or Vans work as well as anything.",
+ "@NikesofLasso When is Nike releasing these jerseys",
+ "Nike Beige Air Max 1 Sail & Volt Sneakers Dropped on SSENSE --> Small sizes ",
+ "3D billboards to celebrate the reveal of the Louis Vuitton and Nike “Air Force 1” by Virgil Abloh partnership by AoiroStudio - ",
+ "@nike_shauna @SteveNorrisTV Thank you!!! I've been wondering how he knew so much about what happened to that chicken- you would think that he would never have thought about it again given what the rest of his evening turned into.",
+ "Oregon Eggshell White White & Chameleon Green / Dark Bronze Helmet Concept!! - Ombre Eggshell White & Chameleon Green / Dark Bronze Face Mask -The wings are similar to the colors of the 2012-14 white jersey wings & numbers. (Ex. 2013 vs Nicholls State) #GoDucks #Nike ",
+ " _Nicole _twitr I received my L&F's in a Nike Pass. It was during the chaos drop. I had just started following _kw they were so genuinely nice and kind to me. These were a gift to my baby boy who is 14. I wore 'em 85 so I never put these toe. He has… ",
+ "@Fwiz @0xPolygon @BankofAmerica @Starbucks @Nike shut up geek",
+ "Ssense US Restock: Nike White Ambush Edition Air Force 1 Low Sp United_States: #Sneakers ",
+ "@makeupnkickz @Nike I love the blue.",
+ "Nike Sportswear Dunk Unisex Football Grey/Mineral Teal/Pearl Pink link on Zal #sneakers #sneakerhead #reseller",
+ "“University Red” And “Coconut Milk” Coordinate Across The Nike Air Force 1 Sculpt ",
+ "I wan pair of black Nike bakin's",
+ "I feel like I'm wearing a cape on when I'm wearing Nike check_box_with_check",
+ "um Alex Morgan's fit for the FIFA Best awards was made from two Nike trench coats, OUT OF TWO TRENCH COATS exploding_head ",
+ "@PownicMania5000 Super Mario Bros. Versus a movie about Nike shoes? April 5 competition!film_frames",
+ "I need all involved at Nike prosecuted",
+ "@hushkyle Tbf the music decent enough to get her somewhere and she fits nike tbh",
+ "A lil' custom work with one of, if not, the greatest cartoon ever. #goku socks #dragonballz #snkrsliveheatingup #snkrs #yoursneakersaredope #kotd #WDYWT #bhmkotd #SnkrsKickCheck #jordan #Nike #YourSneakersAreDope #Kicksoftheday #whatsonyourfeet ",
+ "Air Jordan Nike Boys GS Dub Zero Camo Basketball Sneakers Shoes 5.5Y 5.5 NEW eBay ",
+ "#SneakerScouts The Nike LeBron 20 'The Debut' is now available via @champssports! |$200| #ad @KingJames @Nike >>> ",
+ "@BIGHOMIEJULIO face_with_tears_of_joyface_with_tears_of_joyyou not alone",
+ "Ad: Restock: Nike Air Force 1 '07 Men's Shoes White/White United_States ",
+ "@_kaliclaire Hope it's going well smiling_face_with_smiling_eyes have you chosen any Nikes to wear tonight? x",
+ "I wish Nike would take inspiration from the 99/00 Barça shirts when creating our shirts for next season ",
+ "Are nike air forces nice to people with a wide front to their feet?",
+ "By far and away the WORST kit of the Nike era, it's on par with that shambles 13/14 third kit",
+ "@aXxGamerxXx @BagHoldingNFTs @Nike Every business is focused on profit. I promise the million$$$ yuga got from vcs wasn't charity",
+ "@TDA3397 @Nike more politically motivated for me",
+ "currently crying bc i think i lost my nike pro pants and them were my fav pantsbroken_heart",
+ "CHECK THIS OUT white_heart #nike #arte #nikecollab #collab #artexnike #artenike #arteantwerp #graphicdesigner #graphicart #conceptualart Project by: @IggyTeed ",
+ "now who on the nike advertising team approved this ad?face_with_raised_eyebrowcamera_with_flash ",
+ "Bryson Tiller's cultural impact was special. Niggas on campus was wearing nike caps and growing beards lol ",
+ "Offspring Restock: Nike Dunk Low Trainers Black Team Gold Coconut Milk Particle Grey European_Union: #Sneakers ",
+ "June 22nd is the NBA Draft. June 24th is the start of the FIBA U19's. July 3rd is the final Nike EYBL event. July 7th it the Las Vegas Summer League.. Right after the draft it's still going to be an absolutely awesome time for basketball as a scout and a fan.",
+ "@Braden_LFC What on earth were Nike thinking face_vomiting",
+ "@j3_jets @PFF See Drew has on lifts and Bryce has on Nike slides",
+ "@ChristianLukens Nah i wasn't a homer back when I was learning to watch the game. And Davids was in all the Nike commercials.",
+ "@I_Buy_NFTs Yep, web 3 going to teach Nike a lesson. About time too.",
+ "The Travis Scott x Nike Air Jordan 1 Low WMNS “Olive” will be releasing Wednesday April 26th in women's (with extended sizing) preschool and toddler sizing, retailing for $150 dollars, style code DZ4137-106. Photo: fk.shane ",
+ "Last I recall Nike supported anti police BLM'ers now want police protection - Out Of Control: Nike Begs Portland Mayor For Police Protection When Store Re-Opens ",
+ "MARCH 2023 AIR JORDAN + NIKE RELEASE DATES firefirefire ",
+ "Sorry Portland, but this is just hysterical! You have created such a toilet out of your city! They don't have enough cops (Wonder why?) to even let someone else pay them to do the job!!! Nike begs Portland mayor to protect shuttered store ",
+ "Ad: Nike Off-White Undercover Edition Moc Flow SP Sneakers ",
+ "Detailed Look at the Nike Air Max 1 '86 \"Big Bubble\" ",
+ "RESTOCK Nike Nike Kids' Air Jordan 1 Low Se Sneaker on Nordstrom ",
+ " The article is on block.",
+ "@Fwiz @0xPolygon @BankofAmerica @Starbucks @Nike Great job. Building a strong network and collaborating with the right brands. Polygon is growing during the bearpirate_flaghandshake",
+ "@Official_Glenns @Nike With that gold on the trim that looks like what Sonny would have us wearing.. lol. Do you know if they are going to sell the girls swim jerseys? Those were nice. Tried to find one of the old club Hockey jerseys.",
+ "Same guy you said elevated the game is also nothing special. Last question bro, if someone doesn't agree with your points or thinks LeBron is the best in everything (even in losing) ... Are they blinded by Skip Bayless and Nike? Like are those the only reasons?",
+ "Official Look at the Nike Air Max 97 Be True The Nike Air Max 97 \"Be True\" is officially showcased and it's essentially an exclusive variation which celebrates Pride Month in June. Draped in a combination of “Pink... - #spiffy ",
+ "If you like her, NIKE her",
+ "The perfect Duo! Vintage and Nikestar-struck running_shoe #Vintage #Nike ",
+ "Nike ISPA's latest is dropping eyes ",
+ "Great to catch up with the one and only Sonny Vaccaro. The former Nike exec and former @reedleycollege student will be played by Matt Damon in the upcoming @airmovie We'll hear from Sonny #Liveat6 ",
+ "#SneakerScouts The Nike Air More Uptempo 96 'Action Grape' is now available via @champssports for $127.50! (use code PARFEB15 - retail $170) #ad @Nike >>> ",
+ "I just copped the Nike Dunk Low Oregon with @SoleRetriever ",
+ "@garryhood1872 @Daisyjanew @BrianEntin So he had 2 pairs of size 13 Nike Shoes on him?!?",
+ "WTS ALL Jordan 4 Seafoams UK7.5 UK8 UK8.5 UK8 PRICE £260 Jordan 4 SE Craft UK7.5 x2 UK9 UK9.5 PRICE: £255 Jordan 1 high black and white UK7 UK7.5 PRICE £220 Nike dunk low active fuchsia UK 4.5 x2 UK5.5 x3 UK6 (EU39) x2 Price £95 DAMAGED BOX UK 5.5 £70 ",
+ "@LiverpoolLatam @Nike Es fake",
+ "I just noticed uraraka is wearing Nike air more uptempo 96 lol",
+ "NEW: Several @Nike employees took to LinkedIn Tuesday to say they were laid off from the footwear and apparel giant. ",
+ "“Multi-Color” Nike Dunk Lows artist_palette ",
+ "@HeilMako @5utzow @trashydrakefan Yeah he got several of his own shoes in the 2000's and eventually bags and shirts through Nike. MMA fashion pioneer",
+ "@BrianEntin Thought the shoes were VANS not NIKES",
+ "Nike Air Humara “Faded Spruce” dropping today for $160.00 => ",
+ "@LiverpoolLatam @Nike Terrible!!!! Well, I like it",
+ "Dropped via Nike US SB Blazer Court Mid PRM 'Desert Ochre' => ",
+ "@Nikes_Own loudly_crying_faceloudly_crying_faceNY rats be different lol. You might be onto something lol",
+ "Has anyone got footage of Marge wearing those Nike's before Jan 5?",
+ "Doyenne Skateboards x Nike SB link up for a distinctive unisex apparel range smiling_face_with_sunglasses Link > ",
+ "@Dewayne42005783 @playboi1526 @MikeRoach247 @payton_pierce26 You also realize Oregon isn't even considered a top 25 program all time. If Nike was such a pull then why did they only have the 9th ranked class. Texas has more money and a top 5-8 program. If Oregon was so awesome why does the Big 10 not want them??",
+ "@JDHelpTeam nike 270's ordered and collected from store 30/12/22. The bubble had popped, can I return for a replacement?",
+ "Nike begs Portland mayor to protect shuttered store ",
+ "NewJeans x Nike Leggings To collaborate with a well-known brand itself is such an honor for me bearred_heart ",
+ "#SneakerScouts The Nike Air Max 95 'Reflective' is now available via @FinishLine! |$175| #give @Nike >>> ",
+ "@BleacherReport @memgrizz Don't disrespect stone cold like this again bro",
+ "@nyjets @ProFootballHOF @Nike so the perfect day to drop the retro Zoom Revis was just released. You could start with the “Gold Jacket” colorway and go from there. You're welcome.",
+ "@Nike Went through the claim process with Nike. These shoes were worn three times and only walked indoors. The dye from the red leather bled into all the white fabric. They said this is due to rubbing and friction from normal wear and tear. Really c'mon man. Done with Nike! ",
+ "@TheCovalentTV Jericho is one of the GOATS and I'd rather be a pillar in Addidas or Pepsi or Burger King rather than a cog in Nike, Coke or McDonalds.",
+ "Trainer Kings…. Y'all already know my favorite day of the week.. #TrainerTuesday + #MrKicksAndFatherhood #sneakerhead #nike #snkrsliveheatingup ",
+ "Serena Williams' 10 Unforgettable Nike Tennis Outfits: The Oral History via @footwearnews",
+ "Nike be like “to qualify for EA you had to have watched one of@our videos 3.5x but by accident on the 2nd time. And sneezed during one of the watches. But this does not guarantee you EA\"",
+ "@DaveOCKOP Nike designers \"wouldn't it be cool if we put mo Salah, one of the greatest footballers in the world, in the worst football shirt in the world?\"",
+ ".@chicagoredstars x @Nike 2017 Home Jersey Available now at ",
+ "A Chill \"Worn Blue\" Covers the Nike Zoom Vomero 5 ",
+ "I love colors or shoes like these I have literally no joke a pair of nikes like these",
+ "Nike Air Force 1 '07 'Triple White' on sale for $88 shipped w/ code STYLE20 Link -> ",
+ "Send our #5 Ranked Team to Nike Indoor Nationals ",
+ "#Nike #AirMax #VaporMax Air Flight Air Zoom #DunkLow ",
+ "NIKE AIR MAX 1 ULTRA MOIRE WOMEN'S RUNNING SHOES eBay ",
+ "The Nike store has been boo boo lately",
+ " #NIKE Windbreaker Men Size L Blue NWT Fully Zipped ",
+ "Offspring Restock: Nike Dunk Low Trainers Pale Ivory Medium Soft Pink Night Maroon European_Union: #Sneakers ",
+ "@SneakerPhetish The sample looks like nike by you",
+ "Ssense EU Restock: Nike Off-White Undercover Edition Moc Flow Sp Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "laptopReleasing 03/01 WEDNESDAY @ 7:00AM PST at mobile_phone • shopping_bagsReleasing 03/01 WEDNESDAY @ 11:00AM PST at Long Beach, San Pedro, Fullerton and Anaheim FCFSshopping_bags • alien W Nike Air Force 1 '07 SE Low “Clouds” alien . Women Sizes 6.5W-12W $119.99 • Available at Long Beach,… ",
+ "@magpie5961 @Retro_NUFC I said that from day one and got absolutely slated for it on the Newcastle Facebook pages. The quality is awful. The materials feel cheap and it's disgustingly overpriced. Adidas, Nike, puma and under armor are miles ahead",
+ " _Nicole _twitr Oh yeah, great stuff!!! I'm 99.9% sure that if someone asked me to draw a picture of what I thought a dynasty looked like when I was a kid, I would have drawn a Bulls logo.",
+ "香港 - (Nike Hong Kong Hong_Kong_SAR_China ) - Just Do It! ",
+ ".@ChelseaFC x @Nike 2022/23 Windbreaker Jacket Available now at ",
+ "@Nike I got this in November and it's already falling apart #nike ",
+ "Who is having trouble on their @nike app? I can't sign in and if I try it won't let me. This is ridiculous!",
+ "Great news for the Hispanic community! Over 300 companies including @Nike @IBM and @Airbnb sign on to a corporate pledge to hire and engage more Hispanics under Hispanic Promise 2.0. @TheHispanicStar #Hispanics #latinos #LatinoAmerica #HispanicGrowth ",
+ "NIKE AIR MAX 1 \"JELLY JEWEL\" WOMEN'S RUNNING SHOES eBay ",
+ "@Bengals can you restock on Nike VAPOR jerseys? I do not understand. Thanks! #WHODEY #RuleTheJungle",
+ "@BagHoldingNFTs @Nike This is why I am a fan of Azuki team going the no VC no corp route. Way more flexibility.",
+ "Come here; you can meet me in the back Dark jeans and your Nikes, look at you Oh, damn, never seen that color blue Just think of the fun things we could do 'Cause I like you",
+ "@NathanJ04060931 Jordan/Nike is a must keep no matter what!! Under Armor can be cut.. @BrittWhoDat what do you think?thinking_face",
+ "Fire @RodWood_Lions right now and let the fans design the uniform before Nike ruins it.",
+ "@cgritmon A3: The first brand that comes to mind is easily Nike. Their partnerships that highlight their accomplishments demonstrate the power of reaching for the stars the way major athletes have. #ChatAboutBrand",
+ " Hi CryptoNerd, Are you on the Wait List? Here's the official link. Make sure to register for the Odyssey Wait List with the same email that's connected to your rewards account. If they don't match, your invitation will be delayed. Big Hug! You'll get in! ",
+ "2023 Nike Invincible 3 | Color: College Navy/Midnight Navy/Black/Metallic Silver | Style: DR2615-400 | #nike #running #runningshoes #nikeinvincible #nikeinvincible3 ",
+ "can't wait for my tote bag and nike tech to come in!!!",
+ "There's a whole ass movie coming out where Nike went to Jordan's mom to get the shoe deal lol",
+ "On set earlier with my hitta Taylah - Nike x SNS shoot fireboxing_glove ",
+ "Seeing this circulating as our away kit for next season. Nike, did your printer run out of ink halfway? Bring back adidas folded_hands_light_skin_tone ",
+ "@Nike Nike does not truly stand by their products, this is obviously a defect with the dye. They truly do not stand by their products!",
+ "@ashleysviews I wear Nike Air Monarch III sneakers. They are very comfortable and last forever.",
+ "The NEW Hawks Football Nike store is open and loaded! Closes March 16 ",
+ "@JonErlichman Nike's was actually “Dimension Six”!",
+ "3D billboards to celebrate the reveal of the Louis Vuitton and Nike “Air Force 1” by Virgil Abloh partnership ",
+ "Sofia Richie Works Up a Sweat in an Athletic Forest Green Set and Nike Flyknit 2 Sneakers ",
+ "Detailed Look at the Nike Air Max 1 '86 \"Big Bubble\" #sneakers ",
+ "Ad: Restock: Nike LeBron IX Men's Shoes Black/Dutch Blue/Fusion Red/Lime Glow United_States ",
+ "Check out these custom #nike #pandadunks roller skates pandaroller_skatefire#Sneakers #rollerskates #skatetwitter ",
+ "Ssense US Restock: Nike Black Slam Jam Edition Air Force 1 United_States: #Sneakers ",
+ "@Whitney_Hartman And I'm sitting here just trying to get a lavender zip up that keeps selling out in minutes of dropping because @Nike is the worst with quantities of items lol.",
+ "red_circlesoccer_ball Wanna watch Liverpool v Manchester United LIVE at Anfield this Sunday?! memoup_arrow Sign up to Nike Membership at JD for free & head over to the Nike Membership Rewards Hub for your chance to win. backhand_index_pointing_right ",
+ "Nike Air Huarache Doernbecher #shorts via @YouTube",
+ "@wwornwwell would some Club C's not check the box? Nike Sweet Classic Lows aka the Billy Madison 2s are also timeless",
+ "【Nike Air Foamposite One “Dream A World”】 rainbowTech Grey/Multi-Color input_numbersDM0115-001 spiral_calendarMarch 3, 2023 yen_banknote$250 camera_with_flashSBD #バッショ #新作バッッシ #スニーカー #新作スニーカー #sneaker #nike #jordan #jumpman ",
+ "@jeringables @patrickpucci2 Pro tip: any Nike retailer or Outlet will have a \"hot wall\" of Jordan's and designer releases that are on display and only available to the public (not employees) These stores take in returns, size exchanges, etc. instead of having to mail back to Nike All at Retail. No mark up",
+ "My Nike frames are hard af, can't wait until they're here. I still need a hard a** designer pair.",
+ "@DanielKaruga6 @NjeriBt Seriously though almost every product in Kenya is counterfeit from the phones we use and household items, clothes we wear the channel Gucci bags and the Nike air shoes all these are counterfeit.",
+ "@KrisMur78507138 I like Nike tbh just these leaks look bad",
+ "@Nike Just do it @GovWike Just Overdo it #NigeriaDecides2023 #INECFailedNigerians #INECIsCorrupt #CongratulationsObidatti",
+ "Nike & SNKRS pulled this the last time for the Lost & Found 1s and the result was terrible. I have no clue who's bright idea this is but it ain't it!!! Do they know how many people lost that \"Free Throw Line\" draw?!? I can see it now, too much \"access\" and not enough product. ",
+ "Offspring Restock: Nike Dunk Low Trainers Sail Team Red Black Muslin European_Union: #Sneakers ",
+ "Nike Air Humara “Midnight Navy” dropping today for $160.00 => ",
+ "@HottestRiven @Nike I honestly don't know, first time I've ever had any issues. I opened the box and was like hmmm I think these are a little small lol",
+ "@JDWhite112 That means you will get access bro. It's always the accounts that don't fit the criteria Nike lays out. You have the best chance face_with_tears_of_joy",
+ "so they're making a jordan and Nike sb collab with a pair of 4's idk how I feel about it",
+ "#SneakerScouts The Nike Air Max 95 'Medium Olive' is now available via @FinishLine for $160! (use code WINISHWINE - retail $175) #ad @Nike >>> ",
+ "Nike Air Jordan 12 'For Today's Manie' Whether they are mandatory or not, these are pure firefirefirefirefire and I am glad to have them in the collection! White pair on the way!! Thank you @maniere_usa for the W ",
+ "@AFCRichmond When does Nike release this kit?!",
+ "Ooh I LOVE this! Greek goddess Victoria was the Roman goddess Nike and with that quote being on the wall fire",
+ "AD: UNDERCOVER c Nike Moc Flow 'Light Bone' on SSENSE Shop -> ",
+ "@Valencovarrubs @Nike Por favor",
+ "New Looks at the Nike Air Max 1 '86 \"Big Bubble\" eyes SEE MORE: ",
+ "yah, yah. im boring like that. i just love clean, classic shoes. classic style (AF1 nike, converse) like the style that they're known for. chelsea boots are amazing. and timbs too. lmao",
+ "@Pubgent1 @thesolesupplier @Nike I just tried finding these high tops but can't find them anywhere face_exhalingface_exhaling links ?",
+ "A3b @Nike with its “just do it.” statement, encourages each individual to work hard & be their best. #ChatAboutBrand ",
+ "@CheesyCheesy3 adidas has absolutely fumbled the bag on a few big name schools that went to nike in the last decade Indiana please join them soon",
+ "Nike Air Force 1 Low SP Restock --> ",
+ "Available via Nike SNKRS App and online (shock drop/raffle). This will be the final Travis Scott x Nike Air Jordan 1 Low colorway.",
+ "Socks on my feet make the Nike completedouble_exclamation_mark ",
+ "@La3Life Just thinking out loud here…. If @Nike can go back all the way to 2018…. What about giving loyalty access to those like me with accounts from 2009 & before? I mean... it gives me no pleasure to see somebody with a 2022 account hitting \"EA\" when I haven't gotten any for years now.",
+ "@dbone78685355 @HV3_Golf @RangeGoatsGC I mean, Bubba is known for being one of extremely generous to charities. HV3 has his own charity. You do realize that the 1990 PGA Championship was played at a whites only club, right? And Nike (dirty lab), Dell (dirty components), and Shell/BP (dirty air), and Saudi $ in PGA?",
+ "When the Skip Bayless and Nike sponsored ESPN veil is lifted from your eyes you'll see that Jordan isn't special WHATSOEVER compared to today's talent. Good W for me my boy handshake Ready to easily do this every time",
+ "I am a demon on Nike Chat for returns past 60 days loudly_crying_face",
+ "new nikes came in the mail (sorry no free feet pics) ",
+ "Ad: Nike Air Jordan 11 Retro Sneaker ",
+ "everything in older ver looks better but the newer ver of dragon actually looks more accurate to like. a chinese or east asian dragon.... they're like really slim so i nike that.....",
+ "@juliancomeau Like Nike and Shia Labeouf would say: just do it check_mark_buttonfire",
+ "@TexasFanatic20 @playboi1526 @MikeRoach247 @payton_pierce26 Remember Kelvin Banks and Cam Williams we're headed there had it not been for a coaching change. NIKE is a tough to beat bro.",
+ "@snipernick32 Nike tripping thinking_face You know people that go a few months and don't hit on SNKRS just delete there account and start another person_facepalming the only people getting EA are botter's robot they got hundreds of accounts face_with_symbols_on_mouthface_with_symbols_on_mouthface_with_symbols_on_mouthvictory_hand",
+ "if they manage to screw up this jersey, I'll never forgive Nike. We're literally just black, gold, and some bridges. Please man.",
+ "@DaveOCKOP Did Nike run out of ink?",
+ "wait i thought my bf was beside me in a nike fit shirt and then i thought my sister was in the bed nexh ro mine jersey wirh blue hair in red black sweater was beside me",
+ "@thesolesupplier Got em last week fresh for holiday and bought the nephew some high tops to match #twinning @Nike ",
+ "@SoleRetriever Kinda looks like my Nike ID eyeseyes ",
+ "#SAPHOngoingGOs [PH GO] SALE double_exclamation_mark NIKE DUNK LOW PANDA ➤ 7600 PHP (PAYO) ➤ Size 240-245mm ➤ 7800 PHP (PAYO) ➤ Size 250-260mm ➤ ALL IN + LSF ➤ NET ➤ w/ freebies from us! Dm to order heart_hands_light_skin_tone ",
+ "New Seattle Mariners Nike Authentic Collection Pregame Performance Hoodie Men's eBay ",
+ "Ad: Women's Nike Jordan Off-White Artist Series T-Shirt ",
+ "Ad: Nike Free Run Pure Platinum/White-Off White-Photo Blue ",
+ "40% ($60) below retail Nike Zoom GT Cut 2 Black Desert Berry Size: 9 — Retail: $150 BUY NOW right_arrow $90 ",
+ "@KSUWindbreaker Or the “Do It Just” Nike painter's hats.",
+ "Now that we've seen these historic Nike SB x Jordan 4's the question is…would skaters actually skate them?? skateboard",
+ "Chill \"Worn Blue\" Covers the Nike Zoom Vomero 5 via @Hypebeast",
+ "@vidsthatgohard Nike “just do it”",
+ "Nike Dunk High Retro Knicks Orange Deep Royal White DD1399-800 #NikeDunks #KnicksSneakers #SneakerAddict #Shoes #Nike #Dunks #NikeRetros #Knicks",
+ "Gents if she is wearing Nike don't worry just do it winking_face ",
+ "@duck_fanzzzzzzz @TheRealRitzy @oregonfootball @Nike @usnikefootball Miami fan here that split with UW. Let us know when Oregon even gets a fractional natty, let alone a full one. woozy_face",
+ "now how does nike remember when i lost that draw? skull they pulled this same stunt for L&F i didn't forget",
+ "@FPLFalse9 I like it if it is indeed authentic. Nike actually tried something outside the template. That's rare.",
+ "#SneakerScouts The Nike Air VaporMax Plus 'Black/Metallic Gold' is now available via @FinishLine! |$210| #give @Nike >>> ",
+ "Kevin Durant expected to make Phoenix Suns debut vs. Charlotte Hornets - Arizona Sports #Dallas #fitness #nike #love",
+ "Light and low to the court, the Nike Air Zoom Vapor Pro 2 Hard Court Tennis Shoes are an awesome versatile pair that are ideal for players looking to access explosive movements without compromising on comfort. Live on our site now - ",
+ "@GiantsGruntled @TheGiantsWire I don't think Jones gets more than $30-$35m in an ideal world I'd hope $30-$32m max but I'm not Athletes First and Joe Schoen",
+ "@DaveOCKOP Every other team getting quality kits of @Nike but we've getting well stitched up by them, totally let us down kit wise",
+ null
+ ],
+ "marker": {
+ "color": "#CFD8DC",
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "other",
+ "showlegend": false,
+ "type": "scattergl",
+ "x": [
+ 1.8896967,
+ 2.4257338,
+ 3.3882399,
+ 1.2298534,
+ 2.8575392,
+ 2.5739477,
+ 1.8487095,
+ 1.8810937,
+ 2.701224,
+ 1.9768922,
+ 2.0199952,
+ -0.5946369,
+ 1.3565235,
+ 1.4652944,
+ 1.660185,
+ 2.6712182,
+ 3.2619438,
+ 2.515003,
+ 2.3363585,
+ 3.1362789,
+ 1.0867729,
+ 3.5080495,
+ 4.0628114,
+ 2.243511,
+ 0.6876486,
+ 1.6753266,
+ 1.4142965,
+ 2.009423,
+ 3.5659287,
+ 1.3997445,
+ 3.3210073,
+ 1.7089169,
+ 2.5959766,
+ 1.5852554,
+ 2.0497265,
+ 2.4249659,
+ 2.5172057,
+ 2.1604972,
+ 2.1662107,
+ 2.5235348,
+ 3.910957,
+ 2.1810732,
+ 1.4643286,
+ 3.054766,
+ 1.651553,
+ 3.350719,
+ 1.2985803,
+ 3.3995235,
+ -0.5948758,
+ 2.0618682,
+ 3.3592174,
+ 0.9578312,
+ 1.7982453,
+ 1.926787,
+ 0.6577039,
+ 1.8165005,
+ 1.3950026,
+ 2.6616633,
+ 2.0297232,
+ 2.1676092,
+ 1.6688186,
+ 3.515562,
+ 3.5683484,
+ 3.485361,
+ 3.8890343,
+ 2.180057,
+ -0.3856529,
+ 1.3023765,
+ 2.9916975,
+ 3.4017797,
+ 3.0028057,
+ 1.0611746,
+ -0.7349992,
+ 1.9233519,
+ 2.792381,
+ 1.2500317,
+ 1.326442,
+ 0.6729469,
+ 3.123346,
+ 1.5552418,
+ 2.4254053,
+ 2.3417535,
+ 2.8127403,
+ 1.1906582,
+ 3.1857312,
+ 1.598493,
+ 1.209345,
+ 2.4969351,
+ 1.2175754,
+ 1.509458,
+ 3.0018442,
+ 2.0308495,
+ 2.5242698,
+ 2.4412525,
+ 2.5026014,
+ 1.105981,
+ 1.4098768,
+ 2.7474988,
+ 2.3586335,
+ 3.963048,
+ 2.026907,
+ 1.2896323,
+ 0.42370775,
+ 1.0057969,
+ 1.3080668,
+ 1.8330371,
+ 1.6955868,
+ 2.510525,
+ 2.2027414,
+ 3.3773215,
+ 3.54714,
+ 2.952387,
+ 1.4475198,
+ 1.1790905,
+ 1.5764654,
+ 11.730873,
+ 2.653456,
+ 2.4103215,
+ 1.8624091,
+ 3.447125,
+ 3.4050074,
+ 3.4634538,
+ 1.7957983,
+ 3.9686346,
+ 2.23799,
+ 3.9801204,
+ 1.752479,
+ 1.0627551,
+ 2.4229662,
+ 3.2680376,
+ 3.052393,
+ -1.2104642,
+ 2.275673,
+ 0.96463925,
+ 1.9820044,
+ 1.6870623,
+ 2.187464,
+ 2.3043456,
+ 0.7550014,
+ 2.6602895,
+ 2.402913,
+ 0.58555615,
+ 3.4390166,
+ 2.566538,
+ 2.62915,
+ 2.3264575,
+ 2.6457891,
+ 2.395609,
+ 1.246124,
+ 3.3954277,
+ 1.4565187,
+ 1.8978188,
+ 1.4275298,
+ 1.2145264,
+ 3.7343302,
+ 2.1431074,
+ 3.9701166,
+ -4.8990955,
+ 0.85338134,
+ 3.4069014,
+ 2.7314136,
+ 2.5210786,
+ 3.119896,
+ 1.5234059,
+ 1.4238666,
+ 3.3560283,
+ 3.2559621,
+ 3.4211485,
+ 1.6396129,
+ 1.2163845,
+ 0.8618056,
+ 3.6166618,
+ 2.207738,
+ 0.5742508,
+ 2.1876864,
+ -0.7838106,
+ 2.6936975,
+ 2.3701673,
+ 2.157817,
+ 1.1276913,
+ 0.11806551,
+ 1.2820348,
+ 2.915847,
+ 3.281934,
+ 2.1583624,
+ 2.3831017,
+ 3.1184623,
+ 0.45746696,
+ 3.4858372,
+ 3.6072903,
+ 1.133208,
+ 2.1482012,
+ 3.4578164,
+ 2.9208982,
+ 2.1918724,
+ 1.6193447,
+ 2.633854,
+ 2.2820857,
+ 1.106111,
+ 2.472333,
+ 2.5826044,
+ 1.1529936,
+ 2.6607676,
+ 2.509912,
+ 1.2190064,
+ 2.6286404,
+ 1.0694907,
+ 1.9263246,
+ 1.2913882,
+ 2.0303423,
+ -0.64794034,
+ 3.421266,
+ 0.8999681,
+ 2.6048746,
+ 1.1260835,
+ 2.2662401,
+ 1.41099,
+ 3.1189938,
+ 2.428524,
+ 2.9567237,
+ 2.1496203,
+ 2.681932,
+ 1.269818,
+ 2.4492428,
+ 2.1716692,
+ 1.8612497,
+ 0.7938846,
+ 2.0668707,
+ 2.6795206,
+ 2.0268075,
+ 1.7593468,
+ 3.4492354,
+ 1.0521073,
+ 1.2672464,
+ 1.6398937,
+ 2.4814563,
+ 2.7764482,
+ 1.5978358,
+ 1.8355633,
+ 1.553418,
+ 3.3146377,
+ 3.2257655,
+ 2.1796331,
+ 1.9056097,
+ 1.9071828,
+ 1.9690946,
+ 1.1294504,
+ 1.3857784,
+ 3.6119132,
+ 1.9449658,
+ 3.2476425,
+ 2.589341,
+ 1.3469288,
+ 1.6831082,
+ 2.2738125,
+ 1.133388,
+ -0.3658745,
+ 1.6596597,
+ 1.4352899,
+ 0.47837558,
+ 2.265878,
+ 1.6070484,
+ 1.614717,
+ 1.9651349,
+ 2.4043972,
+ 1.6670809,
+ 3.6051998,
+ 2.0058496,
+ 3.262993,
+ 0.8849792,
+ 2.2834423,
+ 1.3394667,
+ 3.1985345,
+ 3.3462653,
+ 2.1188974
+ ],
+ "y": [
+ 2.5935822,
+ 5.233135,
+ 6.816963,
+ 4.605503,
+ 7.775622,
+ 4.449221,
+ 5.521581,
+ 2.5921504,
+ 1.3089687,
+ 2.0595467,
+ 5.457377,
+ 3.1515727,
+ 1.5030315,
+ 1.5936701,
+ 2.5251248,
+ 3.9642844,
+ 5.949703,
+ 5.915913,
+ 2.8076398,
+ 5.799617,
+ 4.056895,
+ 6.7375827,
+ 6.6423073,
+ 3.167276,
+ 2.2192411,
+ 6.106758,
+ 6.2907043,
+ 6.327075,
+ 5.866606,
+ 2.32857,
+ 4.9654746,
+ 2.4050667,
+ 5.889506,
+ 6.7322474,
+ 3.824059,
+ 6.3888683,
+ 1.2440983,
+ 1.5834498,
+ 3.2249339,
+ 1.2500837,
+ 5.360449,
+ 5.879926,
+ 2.1925356,
+ 7.5609136,
+ 2.1771045,
+ 4.324058,
+ 4.596651,
+ 6.191625,
+ 2.4572194,
+ 2.6545904,
+ 4.3074126,
+ 1.9083664,
+ 2.2344391,
+ 5.4468255,
+ 2.3661203,
+ 2.927621,
+ 5.6288714,
+ 5.2687583,
+ 1.6250454,
+ 3.1421244,
+ 7.575368,
+ 6.422181,
+ 6.320106,
+ 6.1335635,
+ 6.4214396,
+ 1.5725913,
+ 2.8911731,
+ 3.2039883,
+ 6.240387,
+ 7.0274777,
+ 5.306352,
+ 4.018944,
+ 2.556061,
+ 5.4167876,
+ 4.739688,
+ 3.0768507,
+ 3.0707905,
+ 1.7258201,
+ 6.2696033,
+ 2.11413,
+ 6.5749617,
+ 2.5177376,
+ 3.991905,
+ 4.5310974,
+ 6.464158,
+ 1.6835179,
+ 2.5020409,
+ 5.954963,
+ 2.5040326,
+ 6.066291,
+ 7.6465535,
+ 1.6624717,
+ 7.325021,
+ 2.0301387,
+ 1.2333641,
+ 4.0742707,
+ 5.67628,
+ 5.5413113,
+ 2.9028144,
+ 5.344485,
+ 6.4138374,
+ 3.9498625,
+ 2.348385,
+ 1.900169,
+ 8.104136,
+ 2.1215057,
+ 7.628108,
+ 4.871619,
+ 4.759469,
+ 4.3046193,
+ 5.7551913,
+ 6.3008657,
+ 6.2426224,
+ 3.234939,
+ 7.369395,
+ 0.16014597,
+ 1.291368,
+ 3.7312644,
+ 6.791087,
+ 7.245472,
+ 6.673375,
+ 5.155474,
+ 2.679248,
+ 5.3228374,
+ 3.6464489,
+ 5.299812,
+ 1.5801901,
+ 2.790145,
+ 2.5234108,
+ 5.8655434,
+ 7.6023965,
+ 2.5587559,
+ 4.2551827,
+ 2.3307776,
+ 6.403215,
+ 2.9873195,
+ 5.365439,
+ 3.1051567,
+ 1.7504905,
+ 2.3611715,
+ 5.658622,
+ 1.4952874,
+ 6.307085,
+ 4.7742987,
+ 5.361203,
+ 2.0398486,
+ 5.760845,
+ 5.5507393,
+ 1.4451026,
+ 6.273289,
+ 1.4754885,
+ 6.7973485,
+ 2.978954,
+ 3.8927307,
+ 7.0875134,
+ 5.7934475,
+ 5.307672,
+ 6.1836686,
+ 1.9405651,
+ 7.3076835,
+ 7.4749165,
+ 5.881419,
+ 5.7748976,
+ 4.4011397,
+ 2.6232595,
+ 4.9027214,
+ 6.007006,
+ 6.78979,
+ 2.2286813,
+ 4.537682,
+ 1.8709816,
+ 6.754945,
+ 2.5527709,
+ 2.1969664,
+ 5.04147,
+ 2.3633096,
+ 1.3080865,
+ 6.5044646,
+ 1.5844715,
+ 1.6422937,
+ 2.6578956,
+ 3.8718162,
+ 1.6528909,
+ 6.9280972,
+ 5.752315,
+ 7.3547673,
+ 7.551116,
+ 2.1957927,
+ 6.6644926,
+ 5.7766767,
+ 4.430547,
+ 4.0867276,
+ 6.5852246,
+ 5.0296717,
+ 7.365666,
+ 2.9787545,
+ 4.2435827,
+ 3.0620883,
+ 4.0518217,
+ 5.9437323,
+ 5.831553,
+ 4.508717,
+ 3.7641506,
+ 5.664224,
+ 2.4539242,
+ 1.29938,
+ 2.7185895,
+ 2.124797,
+ 3.8930593,
+ 1.6592045,
+ 3.1412456,
+ 6.211237,
+ 2.7614367,
+ 3.934627,
+ 2.5117662,
+ 2.9991772,
+ 5.1745453,
+ 5.257339,
+ 5.946258,
+ 6.2472296,
+ 6.178082,
+ 1.332367,
+ 1.5114461,
+ 5.891378,
+ 7.2959166,
+ 4.020468,
+ 1.7218823,
+ 3.582007,
+ 3.9210339,
+ 6.358158,
+ 1.5766875,
+ 6.4768147,
+ 2.8024333,
+ 4.6686544,
+ 6.2470946,
+ 5.228767,
+ 4.5425158,
+ 1.8407084,
+ 2.7171144,
+ 6.0599346,
+ 4.961426,
+ 5.2018275,
+ 4.133338,
+ 6.818162,
+ 5.3667207,
+ 3.057352,
+ 6.83001,
+ 5.6190524,
+ 7.2068157,
+ 7.329526,
+ 5.9732633,
+ 5.921063,
+ 5.7982,
+ 6.22316,
+ 6.5819016,
+ 3.0404518,
+ 2.7717268,
+ 2.9986947,
+ 2.305485,
+ 1.0444223,
+ 5.414259,
+ 3.97695,
+ 2.275726,
+ 5.100602,
+ 2.3730502,
+ 7.446321,
+ 7.1887727,
+ 6.225883,
+ 5.366468,
+ 1.8234876,
+ 3.655715,
+ 1.9689361,
+ 6.9308434,
+ 4.318747,
+ 4.3781657
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "@ShaunRajah3 @Nike I dig it!",
+ "@amagicmantv @amagicmantv a w legend red_heart",
+ "@IamSantana6 @chrome_souls @EndWokeness Ahh nikes, Newports and weed. Yea that totally works great.",
+ "@DaveOCKOP Nike needs to be stopped",
+ "@memesbyky @V_its_me_ They all wish a pair of Nike come put of the box, that's their whole world",
+ "@dabblerer_ @Nike this is siq. how to get invite to mint face_with_monocle",
+ "@ChiSportzKid @Nike @airmovie @Jumpman23 I wish I had 6 million to blow, 1m per game shoe",
+ "@DaveOCKOP smh. enough with Nike already.",
+ "@proper_tees Not having it, far too nice for Nike",
+ "@AOtooTALL @Jumpman23 @Nike @maniere_usa Congrats on the Ws",
+ "@rjolli007 @JerLisa_Nicole @Jumpman23 @nikestore @Nike Thanks Ree!! smiling_face_with_open_hands",
+ "@shwartzmayne @xterrylee_ @TreyTheJedi @RTG_Dada I got a Nike speed and weighted one",
+ "@PVDBIGGIE @TheZeusNetwork @Nike @Prada @The_ZeusNetwork Y use photoshop we know how you really look woman_facepalming_medium_skin_tone",
+ "@iamEchilds @Nike Charlie Hustle is coming out with some in couple of months fyi",
+ "@nico_miranda22 @Uptop_Smoovest @SneakerVisionz That's the draw, EA different but knowing Nike they'll give you access lol",
+ "@Noctron92 @Nike that's so funny LOL",
+ "@bnyquis_ Lol that's why im Nike only with ball kicks",
+ "@JerLisa_Nicole @Nike @Jumpman23 I'm so glad I diddouble_exclamation_marksmiling_face_with_smiling_eyes",
+ "@Asia_kun nike tc 7900 oxygen purple",
+ "@ShiLLin_ViLLian Nike Genesis Cryptokicks",
+ "@AroostookG @GFuelEnergy @Nike Why not both? You can ENERGETICALLY look stylish",
+ "@Notnotrpscelzo @billbutcher1177 Lotta Escalades, Nikes, and Hennessy man_shrugging",
+ "@BrianDaly187 @JerLisa_Nicole @Jumpman23 @nikestore @Nike Thank you Brian!! smiling_face_with_smiling_eyes",
+ "@MartinSLewis @bbc5live @Nike have gone replaced 3 pairs of faulty running shoes with no questions asked, regardless of how many miles they have done. Genuinely cannot fault their customer service.",
+ "@MarcieJ117 @Nike Thank you so much. smiling_face_with_hearts",
+ "@aaron_lfc620 @DaveOCKOP Nike pay more and have another seven years on their contract",
+ "@RottenKnee77 @Milka_Ran @DreamerSRB @Yolitanennis I can see Lacoste is not the sponsor here.....is it Nike?winking_face",
+ "@ali9szn The season after next Nike are introducing new templates. So no more semi circle stuff. We just have to wait until then",
+ "@chhopsky @_Beora NCAA gymnast who sells name and likeness to Nike? Child actress? In Sam Bradford?",
+ "@vincemido @layiwasabi Nike also produced “N-aiki” not “N-eak”",
+ "@FV15vaIverde @Nike @nikefootball @adidas anand",
+ "@snipernick32 I got no words for Nike but billed_cap",
+ "@JadenPMcNeil That's not Adam Conover??",
+ "@GhostofParties @denyart @nytimes Nike.",
+ "@snkr_twitr So Nike don't want anyone using their silhouettes but it's ok for them to use rope laces they got off a ig post?",
+ "@BrendonFelix1 Nike has been very disappointing for us I won't lie",
+ "@ChiSportzKid @Nike @airmovie @Jumpman23 Respect that",
+ "@Ovrnundr @nike exclusive drop for the ladies please",
+ "@pasteIeria need him to model for Nike beaming_face_with_smiling_eyes it's giving golf",
+ "@ComplianceETH @remsvidrol Nikes=not listening",
+ "@GeeMcfly_ Nike so full of shxt.",
+ "@MorganilRamingo Amenfolded_hands",
+ "@makeupnkickz @Nike You're welcome",
+ "@n8frost @JerLisa_Nicole @Nike @nikestore @Jumpman23 Finished the Month in AllStar 1’ssparkles ",
+ "@Nikes_Own I've seen lol",
+ "@Olanikeajagun01 Try getting one nike",
+ "@josefdivine Because all Nike shoes are the same nau.",
+ "@SneakerHardy @LapstoneHammer 100% because they took Nike socks & other appeal and made it 10 times better. A shoe would be fire but at the very least they deserve there own appeal collab.",
+ "@OpthomasPrimus All or 10k?",
+ "@CamdinTrask Let's make sure you get the credit you deserve, Camdin! Please meet us in DM with your Nike Member email and the date, distance, and duration of your run. We'll see you there! envelope_with_arrow ",
+ "@Blessedpapi7X3 @nikestore @Nike Lol I searched the keywords it popped right up",
+ "@champs_heebatu You are used to it ne Whenever i see 11:11 ke nike tanawa",
+ "@ContentB5 @JerLisa_Nicole @Jumpman23 @nikestore @Nike The shoes, the socks, the laces, the pants, the photo…smiling_face_with_heart-eyessmiling_face_with_heartssmiling_face_with_heart-eyessmiling_face_with_hearts ",
+ "@rtplostlink @Zell_Ching @_KOMACHI_1 NIKE?",
+ "@Braden_LFC Nike is also a disgrace …",
+ "@AlderLakee smart as 10 yr old also i got scammed by nike skullskull",
+ "@ComplianceETH @remsvidrol I am so proud of you Nikes. You are out here doing your best and I want you to know I support you and am here for you no matter what ",
+ "@HarryLombardi @Nike you really brought this filth to my timeline",
+ "@UCF_Jaguar If he ain't got Nike monarchs on this ain't it",
+ "@Noctron92 Oh well! We're here to help, Sean. Please meet us in DM with your order number and Nike Member email, so we can take a closer look. envelope_with_arrow ",
+ "@UConnMBB @UConnBookstore Need a @nike authentic one tho !",
+ "Should add children lives matter and stop children hate to your bio and work policies instead of only promoting social change when it looks good for you @Nike",
+ "@FB_Helmet_Guy Yes, be afraid. Nike strikes again.",
+ "@maggiemyan @Nike Ok Nike....I knew they market her but didn't know it was to this extent",
+ "@hoodies4melo @NBATV It's decades of Nike marketing. MJ quit the game entirely twice. They call it retirement lol",
+ "@Minwoo27Lee @APinv @PGATOUR @CallawayGolf Shot, sponsored by Nike these days? Go wel!",
+ "@NathanJ04060931 Nike",
+ "@itsujenffs @Nike Nah, the abused children just ran out of tie dye half way through :(",
+ "@nike release the tank",
+ "@Nike_Scoot coffee plant",
+ "@ConnerLowry19 @revavvvv @bri_sant_ Nike has their interns design your uniforms grimacing_face ",
+ "@JimLaPorta @MiloVentimiglia @catherinehkim @CompanyYouKeep The Nike screen is supposed to feature a hula dance….",
+ "@instablog9ja Honestly Davido needs to arrest this guy and unleash all his anger on him.",
+ "@ContentB5 @JerLisa_Nicole @Jumpman23 @nikestore @Nike That's a good look!",
+ "@Geedot2 @JerLisa_Nicole @Nike @Jumpman23 That's a hell of an AJ1 to break into highs with smiling_face_with_smiling_eyes",
+ "@amagicmantv You already know my epic sir magicman o.O",
+ "@ScottDJBarton if it is im done buying any away nike shyte",
+ "@shuugnasty @JerLisa_Nicole @Jumpman23 @nikestore @Nike Thank you!! grinning_face",
+ "@thcullimore @Sib_Rev @ForestMommy @FMUniverse84 @STEAKandLEGGS69 Nike? Goddess of Victory, ripped off by a shoe company?",
+ "@TheRealMrShaw15 @Jumpman23 @Nike @maniere_usa Yea the black pair was a Social Status W, white pair was Discord",
+ "@SolesSelective @JerLisa_Nicole @Jumpman23 @nikestore @Nike Thank you!!",
+ "@kopwhisperer @DaveOCKOP Slight issue of Nike having another seven years on their contract",
+ "@Nikes_Finest I'm not actually sure, but I hope all",
+ "@BeeGrimez @bamb1ed May I ask do you wear Nike, Adidas clothing of any sort?",
+ "@Pitt_MBB @sibande_nike I co-sign and everybody else \"Just Do it\" winking_face_with_tongue",
+ "@n8frost @JerLisa_Nicole @Nike @nikestore Aww cutie pie",
+ "@ComplianceETH @remsvidrol My bad so it's nikes = advertising his Ls online?",
+ "@Apple @NikeNYC @nikestore @nike the flow is broken! You should pay me for doing qa on your app lol ",
+ "@SneakerNews That Nike colorway is hideous",
+ "@NileGardiner @DavidGHFrost Nike's, just waiting for the \"Boris\" line. Lol this line is the best, and it from Frosty \"architect\" of the deal which was deemed \"crap\" by the ERG.",
+ "@Tweets_n_Nike Women absolutely hate each other lol",
+ "@ComplianceETH @remsvidrol You're totally right. I'm homeless and live in a dumpster behind Arby's. If only I was more like Nikes",
+ "@vincemido @Chxkka @layiwasabi Nike is also pronounced Naikii thorolling_on_the_floor_laughing",
+ "@ComplianceETH @remsvidrol You're right! The joke is on me. You are so smart Nikes. I'm so glad to have you in such an intimate place in my life.",
+ "@startupdareal @sdmlinks AF1 louis vuitton da shopee da nike",
+ "@wilcocarla @JerLisa_Nicole @Jumpman23 @nikestore @Nike folded_hands_medium-light_skin_tonepurple_heart Thanks Carla!",
+ "@ErnieTastyFresh Those longsleeve Nike shirts would be goated",
+ "@HorizonLeague @YSUBaseball @NKUNorseBSB @Nike Wrong link",
+ "@BloodedTheBrav1 You I hope get the EA you showed me how many Ls you have taken and its only Fair David @Nike Bless these guys",
+ "@DeadPirateB @GFuelEnergy @Nike You right you right!",
+ "@DptesSinTapujos @lecoqsportif_co @AsoDeporCali Nike",
+ "@Mobyhaque1 Sack Nike and bring back New Balance",
+ "@Nike can I do more modeling jobs with you guys pls and thanks xx",
+ "@JoshuaLopez202 @Nike Just be careful walking around the streets. I don't want you to be the victim of shoe-jackings",
+ "@irishnan @JeromeAdamsMD @Fidgets808 Me too! We bought my Nike Airs at kohls for a great price, and I ran very well in them, but years later found out they don't really fit my feet right :)",
+ "@DylanFlaherty3 @Nike Anything for people to hate Nike more.",
+ "@erik_anson @therealtblake Without an official Nike press release (yet) it would appear so",
+ "@DaddyKendrick_ @OBADSSS It's very common, rejection due to location. I got rejected by Nike 5 times, under armor 2 times...I'm often glad that some still see something in me and give me a chance (it makes me not mess up and to perform well, but another thing is that you 'll have to charge less.)",
+ "@TDA3397 @Nike I don't buy anymore Nike for various reasons",
+ "@ComplianceETH @remsvidrol That's crazy because you came into a convo thread and commented and pinged us and locked yourself into the thread and pinged. Nikes = not paying attention",
+ "@DaveOCKOP We need to sack Nike off and get new balance back asap",
+ "@WiggyvsTheWorld Lmao aye 10,000 rats ain't no joke",
+ "@PartyStill @DaveOCKOP Nike keeps taking my fave colors and then making me very sad",
+ "@Nikes_Finest Biden is trying to cancel the debt",
+ "@tristang300 Nike no cap",
+ "@sophiee_ob new balance is rooted. I got a soft spot for NIKES",
+ "@DaveOCKOP Stop it Nike",
+ "@ContentB5 @JerLisa_Nicole @Jumpman23 @nikestore @Nike Even in the rain sooooo clean fam! Love it gem_stonehundred_points",
+ "@ShadeTV_247 @Nike @snkr_twitr @YOON_AMBUSH @ambushdesign Got the Phantom on Feature!! My first Ambush. I'm stoked",
+ "@ProfitLegend \"Hi Nike! I see you're trying to grow your twitter following Have you ever considered short form content?\"",
+ "@Tweets_By_Zo Would look great w ur Nike tech suit new_moon_face",
+ "@ElJBell1 @Nike Thank you smiling_face_with_smiling_eyes",
+ "@ProFootballTalk Nike be like ….. ",
+ "@AmFrannie Frame 2 Nike Lake hotelwinking_face",
+ "@Lamardee82 @La3Life I copped the mochas on Nike when they were on discount for 140!!!",
+ "@NathanJ04060931 Nike by a tad them and Jordan's are my top 2",
+ "@ChimmieeHQ How about juviola",
+ "@teebeez_ @heyzeus7 How many signature Nikes does RBG have?",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "0_you_nike_jumpman23",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "0_you_nike_jumpman23"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 2.693345,
+ 2.3755684,
+ 2.8605175,
+ 2.907037,
+ 2.7013638,
+ 2.0198326,
+ 2.944268,
+ 2.872477,
+ 2.6823673,
+ 2.7170458,
+ 2.3066916,
+ 2.7674956,
+ 2.2902591,
+ 2.6670275,
+ 2.521506,
+ 2.4433398,
+ 2.6663346,
+ 2.1306808,
+ 2.8442318,
+ 2.908981,
+ 2.8502364,
+ 2.8717854,
+ 2.383115,
+ 2.588095,
+ 2.002753,
+ 3.0224304,
+ 2.7732093,
+ 3.0678744,
+ 2.878351,
+ 2.918612,
+ 3.1144645,
+ 2.6479764,
+ 2.3402393,
+ 3.1416376,
+ 2.5462463,
+ 3.1709466,
+ 2.9219465,
+ 2.619372,
+ 1.8098364,
+ 2.3542066,
+ 2.8245125,
+ 2.235552,
+ 2.544709,
+ 2.556845,
+ 2.5269117,
+ 2.7748168,
+ 3.1359377,
+ 3.2054334,
+ 2.9400585,
+ 2.3598063,
+ 2.625154,
+ 2.5917823,
+ 1.92678,
+ 2.9309702,
+ 3.178106,
+ 2.8583126,
+ 2.3835535,
+ 3.0273004,
+ 3.1885211,
+ 2.3814008,
+ 2.8028233,
+ 2.6521945,
+ 2.9335194,
+ 2.6305478,
+ 3.0148354,
+ 2.7245564,
+ 2.7205586,
+ 2.72855,
+ 2.8730345,
+ 2.9045796,
+ 2.6427977,
+ 2.6859126,
+ 2.968764,
+ 2.414883,
+ 2.2934325,
+ 2.4492843,
+ 2.7463207,
+ 2.48349,
+ 2.7286096,
+ 2.6478453,
+ 2.551943,
+ 2.8610072,
+ 2.7965157,
+ 2.478768,
+ 1.9170127,
+ 2.5264268,
+ 2.3925316,
+ 2.5250978,
+ 2.730958,
+ 2.6476474,
+ 2.9090707,
+ 2.4508436,
+ 2.8105946,
+ 2.366844,
+ 2.904363,
+ 2.3121014,
+ 2.9138525,
+ 3.0503173,
+ 2.610888,
+ 2.888197,
+ 3.0665486,
+ 3.2255442,
+ 2.4518132,
+ 2.515241,
+ 2.501089,
+ 3.2052383,
+ 2.9531004,
+ 2.4669342,
+ 2.6931748,
+ 2.3495562,
+ 2.9947417,
+ 2.1342309,
+ 2.8116975,
+ 2.858613,
+ 2.8488941,
+ 3.1139412,
+ 2.8963048,
+ 2.5370538,
+ 2.342167,
+ 2.6430025,
+ 2.1985152,
+ 1.9128524,
+ 2.8536408,
+ 1.8597982,
+ 2.616392,
+ 2.2408214,
+ 2.2846003,
+ 2.9165452,
+ 2.6619043
+ ],
+ "y": [
+ 7.203756,
+ 7.9532356,
+ 7.228812,
+ 6.141489,
+ 6.144922,
+ 7.512497,
+ 7.47378,
+ 6.11347,
+ 6.3393793,
+ 7.6116815,
+ 7.918774,
+ 7.004032,
+ 7.813862,
+ 6.48788,
+ 7.0528274,
+ 6.6358747,
+ 6.454824,
+ 7.9553576,
+ 7.086286,
+ 7.0739775,
+ 6.5106506,
+ 7.244509,
+ 7.9030066,
+ 6.197929,
+ 7.7769704,
+ 6.663637,
+ 6.824248,
+ 6.0298233,
+ 6.9069004,
+ 7.039362,
+ 7.175745,
+ 6.8603168,
+ 7.888989,
+ 6.362153,
+ 6.3765173,
+ 5.899538,
+ 7.62346,
+ 7.2515054,
+ 7.6625323,
+ 6.8057275,
+ 6.83209,
+ 7.9338837,
+ 7.485636,
+ 7.8393416,
+ 6.594206,
+ 6.840757,
+ 5.746537,
+ 5.6044664,
+ 7.279667,
+ 7.054617,
+ 6.8303404,
+ 6.515428,
+ 7.841795,
+ 7.111037,
+ 5.706744,
+ 6.7485514,
+ 6.729337,
+ 6.2248363,
+ 6.163349,
+ 7.036956,
+ 6.828335,
+ 6.278734,
+ 6.242041,
+ 6.6025043,
+ 5.5330954,
+ 7.52198,
+ 7.156988,
+ 6.1521773,
+ 6.2737303,
+ 7.1390634,
+ 7.556717,
+ 7.6454606,
+ 6.109401,
+ 7.795743,
+ 7.946367,
+ 8.006732,
+ 6.8697596,
+ 7.8198533,
+ 6.7138457,
+ 7.680217,
+ 7.726095,
+ 6.184159,
+ 6.4225492,
+ 6.8016405,
+ 7.697185,
+ 7.8152494,
+ 6.785866,
+ 7.6426773,
+ 5.694971,
+ 6.5971184,
+ 5.7372117,
+ 6.752147,
+ 6.951759,
+ 6.6972756,
+ 7.119834,
+ 7.9052167,
+ 6.061306,
+ 7.078276,
+ 7.1434636,
+ 6.4471474,
+ 7.090979,
+ 6.3605404,
+ 7.8496823,
+ 6.773714,
+ 6.94384,
+ 5.7248416,
+ 6.559709,
+ 6.9217257,
+ 6.5539665,
+ 6.8361683,
+ 6.271436,
+ 6.6953597,
+ 6.0740767,
+ 6.214739,
+ 7.061057,
+ 6.45543,
+ 6.158106,
+ 7.7793007,
+ 7.2588506,
+ 6.547164,
+ 7.686151,
+ 7.733683,
+ 6.2056775,
+ 7.745848,
+ 7.081405,
+ 6.526556,
+ 7.9498253,
+ 6.7141666,
+ 6.9159193
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Kaplan College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Northeast Mississippi Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Booneville_Uni #Nike #Shoes #Sneakers ",
+ "Post University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Nike #Shoes #Sneakers ",
+ "Total Beauty Institute Logo Nike Running Sneakers smiling_face_with_heart-eyes money_bag Only $76.99 globe_with_meridians Buy Now: #blinkenzo #tagolife #tagowear #Jacksonville_Uni #Jordans #Men_Shoes #Shoes #Sneakers ",
+ "Boston University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Rocky Mountain College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Billings_Uni #Nike #Shoes #Sneakers ",
+ "VH Barber Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bossier_City_Uni #Nike #Shoes #Sneakers ",
+ "Cozmo Beauty School Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bonita_Springs_Uni #Nike #Shoes #Sneakers ",
+ "Fisher College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Jefferson State Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Kelley School of Business Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Lawson State Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Theological Seminary of the Reformed Episcopal Church Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blue_Bell_Uni #Nike #Shoes #Sneakers ",
+ "Bloomfield College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomfield_Uni #Nike #Shoes #Sneakers ",
+ "Southwest Acupuncture College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boulder_Uni #Nike #Shoes #Sneakers ",
+ "Virginia Tech Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Nike #Shoes #Sneakers ",
+ "ESATM Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomfield_Uni #Nike #Shoes #Sneakers ",
+ "Southwest Baptist University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bolivar_Uni #Nike #Shoes #Sneakers ",
+ "INSIDE OUT Air Jordan 1 Mid SE Craft . Day 10 . 365 Days of Creativity Challengefire Made using @photoshop . I hope you support me follow me here backhand_index_pointing_down TWITTER: @michael_rentoy . Hashtags: #manila #art #photomanipulation #photoshop2023 #michaelrentoy #digitalart #airjordan @Nike ",
+ "Virginia College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Bloomsburg University of Pennsylvania Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomsburg_Uni #Nike #Shoes #Sneakers ",
+ "Harvard Medical School Online Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Simmons University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Bluefield University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bluefield_Uni #Nike #Shoes #Sneakers ",
+ "Lynn University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boca_Raton_Uni #Nike #Shoes #Sneakers ",
+ "Binghamton University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Binghamton_Uni #Nike #Shoes #Sneakers ",
+ "Oliver Finley Academy of Cosmetology Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "Florida Atlantic University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boca_Del_Mar_Uni #Nike #Shoes #Sneakers ",
+ "Berklee College of Music Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Frank Phillips College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Borger_Uni #Nike #Shoes #Sneakers ",
+ "Boise Barber College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "Broome Delaware Tioga BOCES Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Binghamton_Uni #Nike #Shoes #Sneakers ",
+ "Tricoci University of Beauty Culture Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "@Millhill1962 @NoLayingUp Exactly! Incidentally, I heard from a very good source with Titleist that, after Rory jumped to Nike, his dad was still insisting that Titleist continue to send him free equipment, which Titleist flatly refused to provide. rolling_on_the_floor_laughingman_shrugging_light_skin_tone Rory comes by his snottiness honestly, apparently!",
+ "University of Alabama at Birmingham Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Northeastern University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Hairmasters Institute of Cosmetology Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Edward Via College of Osteopathic Medicine Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blacksburg_Uni #Nike #Shoes #Sneakers ",
+ "New England School of Law Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "New England College of Business and Finance Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Boca Beauty Academy Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boca_Del_Mar_Uni #Nike #Shoes #Sneakers ",
+ "Emmanuel College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Virginia Polytechnic Institute and State University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blacksburg_Uni #Nike #Shoes #Sneakers ",
+ "Pine Manor College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "CenterPoint Massage & Shiatsu Therapy School & Clinic Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Massachusetts Institute of Technology Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "House of Heavilin Beauty College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blue_Springs_Uni #Nike #Shoes #Sneakers ",
+ "The New England Conservatory of Music Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Cambridge College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Samford University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "University of Massachusetts-Boston Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Cannella School of Hair Design Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blue_Island_Uni #Nike #Shoes #Sneakers ",
+ "Massachusetts College of Art and Design Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Wentworth Institute of Technology Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "United Tribes Technical College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bismarck_Uni #Nike #Shoes #Sneakers ",
+ "New England College of Optometry Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Boston Baptist College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Illinois Wesleyan University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Montgomery County Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blue_Bell_Uni #Nike #Shoes #Sneakers ",
+ "City College Montana State University Billings Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Billings_Uni #Nike #Shoes #Sneakers ",
+ "Virginia Maryland Regional College of Veterinary Medicine Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blacksburg_Uni #Nike #Shoes #Sneakers ",
+ "Yellowstone Christian College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Billings_Uni #Nike #Shoes #Sneakers ",
+ "Everglades University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boca_Raton_Uni #Nike #Shoes #Sneakers ",
+ "The Boston Conservatory Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Urban College of Boston Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Aveda Institute-Boise Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "Bay State College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Boise Bible College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "MGH Institute of Health Professions Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Emerson College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "College of Massage Therapy Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Blackfoot_Uni #Nike #Shoes #Sneakers ",
+ "Bloomsburg University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Nike #Shoes #Sneakers ",
+ "Eagle Gate College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "MCPHS University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Suffolk University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Paul Mitchell the School-Boise Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "A. T. Still University Logo Nike Running Sneakers smiling_face_with_heart-eyes money_bag Only $76.99 globe_with_meridians Buy Now: #blinkenzo #tagolife #tagowear #Jordans #Kirksville_Uni #Men_Shoes #Shoes #Sneakers ",
+ "Wheelock College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Boise State University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boise_Uni #Nike #Shoes #Sneakers ",
+ "Birmingham-Southern College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Bolivar Technical College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bolivar_Uni #Nike #Shoes #Sneakers ",
+ "Lesley University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "American Sentinel University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Birmingham_Uni #Nike #Shoes #Sneakers ",
+ "Pat Goins Beauty School Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bossier_City_Uni #Nike #Shoes #Sneakers ",
+ "Boston Architectural College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Pivot Point Academy Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomingdale_Uni #Nike #Shoes #Sneakers ",
+ "Boston Graduate School of Psychoanalysis Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Bossier Parish Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bossier_City_Uni #Nike #Shoes #Sneakers ",
+ "Atlantis University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bisbee_Uni #Nike #Shoes #Sneakers ",
+ "Northwestern Health Sciences University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Ivy Tech Community College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Indiana University-Bloomington Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Bluefield State College Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bluefield_Uni #Nike #Shoes #Sneakers ",
+ "Bethany Global University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Rasmussen University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Bloomington_Uni #Nike #Shoes #Sneakers ",
+ "Harvard Business School Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Benjamin Franklin Institute of Technology Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boston_Uni #Nike #Shoes #Sneakers ",
+ "Appalachian State University Logo Air Jordan 13 Shoes - BiShop smiling_face_with_heart-eyes Only $76.99 globe_with_meridians Buy Now: #tagoteenet #tagowear #tagolife #Air_Jordan_13 #Boone_Uni #Nike #Shoes #Sneakers ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "1_shoes_7699_globewithmeridians",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "1_shoes_7699_globewithmeridians"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 12.610397,
+ 11.973258,
+ 12.506788,
+ 12.703294,
+ 12.421505,
+ 11.992828,
+ 12.33553,
+ 12.553303,
+ 12.458889,
+ 11.918288,
+ 12.462157,
+ 11.968615,
+ 12.340406,
+ 12.426512,
+ 12.486749,
+ 12.145426,
+ 12.39573,
+ 12.497938,
+ 12.330781,
+ 11.945731,
+ 12.373085,
+ 12.461421,
+ 12.60651,
+ 12.634687,
+ 12.591894,
+ 12.349789,
+ 12.290382,
+ 12.614877,
+ 12.445092,
+ 12.67377,
+ 11.894485,
+ 12.348974,
+ 12.410134,
+ 12.741805,
+ 12.039663,
+ 12.3972435,
+ 12.3663,
+ 12.518433,
+ 12.51799,
+ 12.418992,
+ 12.578328,
+ 12.374411,
+ 12.013958,
+ 12.427105,
+ 12.404217,
+ 12.43415,
+ 12.381522,
+ 12.518317,
+ 12.3681,
+ 12.449717,
+ 12.285275,
+ 12.375351,
+ 12.353323,
+ 12.442128,
+ 11.929162,
+ 12.52043,
+ 12.302089,
+ 12.286413,
+ 11.925325,
+ 11.876191,
+ 12.046461,
+ 11.924429,
+ 12.590421,
+ 12.583791,
+ 12.428724,
+ 11.898118,
+ 12.513751,
+ 11.885164,
+ 12.464989,
+ 12.482,
+ 12.500003,
+ 12.172675,
+ 12.073409,
+ 12.486718,
+ 12.393637,
+ 11.882338,
+ 12.695244,
+ 12.527107,
+ 11.883429,
+ 12.059019,
+ 12.547472,
+ 12.600364,
+ 12.524875,
+ 12.535935,
+ 12.407526,
+ 12.466995,
+ 12.553824,
+ 12.244673,
+ 12.389966,
+ 12.360841,
+ 12.368223,
+ 12.297796,
+ 12.564278,
+ 12.435354,
+ 12.213901,
+ 12.540298,
+ 12.43423,
+ 11.979255,
+ 12.350738
+ ],
+ "y": [
+ -0.3271693,
+ -0.38609418,
+ -0.32019344,
+ -0.41621602,
+ -0.88375884,
+ -0.41439813,
+ -0.46610984,
+ -0.39504886,
+ -0.8974786,
+ -0.332143,
+ -0.54517925,
+ -0.23412636,
+ -0.5829833,
+ -0.11382489,
+ -0.12984073,
+ -0.3987809,
+ -0.18918581,
+ -0.16743964,
+ -0.5508861,
+ -0.35256085,
+ -0.39027813,
+ -0.33416814,
+ -0.4419603,
+ -0.7751589,
+ -0.3783628,
+ -0.75404215,
+ -0.3154518,
+ -0.16243926,
+ -0.84656,
+ -0.49688992,
+ 0.19013503,
+ -0.28429103,
+ -0.33883876,
+ -0.5463287,
+ -0.5699329,
+ -0.45592833,
+ -0.5077883,
+ -0.13860129,
+ -0.65708864,
+ -0.87215936,
+ -0.23238418,
+ -0.81141776,
+ -0.37943044,
+ -0.8399867,
+ -0.21318516,
+ -0.5975434,
+ -0.3578419,
+ -0.9396854,
+ -0.7354196,
+ -0.5300427,
+ -0.8148599,
+ -0.6057153,
+ -0.6841595,
+ -0.72362816,
+ 0.1498623,
+ -0.8021166,
+ -0.809783,
+ -0.26650333,
+ -0.39765027,
+ -0.31377313,
+ -0.38732228,
+ -0.27812186,
+ -0.12305038,
+ -1.0171701,
+ -0.8612038,
+ 0.18213215,
+ -0.7746854,
+ 0.19377705,
+ -0.50767124,
+ -0.8573727,
+ -0.09578024,
+ -0.55159855,
+ -0.12503177,
+ -0.68155724,
+ -0.8110879,
+ 0.17967294,
+ -0.41190577,
+ -0.8240851,
+ 0.19367893,
+ -0.58320946,
+ -0.21142893,
+ -0.43861273,
+ -0.5919272,
+ -0.416306,
+ -0.90089846,
+ -0.5579525,
+ -0.9435887,
+ -0.6876578,
+ -0.13278295,
+ -0.21189153,
+ -0.5191878,
+ -0.26042268,
+ -0.85397005,
+ -0.098015495,
+ -0.4058816,
+ -0.49801385,
+ -0.6923654,
+ -0.3290915,
+ -0.4589429
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @kittykatb182 @ArtistDavila #poshmark #fashion #style #shopmycloset #everettwoodsonoilpainting #dragon #nike: ",
+ "just about finished reading \"Shoe Dog\", about the birth of @Nike and Buck's hard slog to success. Anyone who is in the mood to be launching a successful brand, needs to read his* book. *Phil Knight (same birthday, different year)",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @iheartresale #poshmark #fashion #style #shopmycloset #lacanadienne #haviland #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #lillypulitzer #jcrew: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #freepeople #nike #laurenralphlauren: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @fitmodeldiet1 #poshmark #fashion #style #shopmycloset #basiceditions #nike #newyorkcompany: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #thenorthface #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #crownivy #nike #toms: ",
+ "@XanozIchimonji My parents bought me a nice ass nike winter coat back in 08. Still in great condition. I'll probably never buy another coat.",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #ralphlauren #samedelman #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @karolina72791 #poshmark #fashion #style #shopmycloset #nike #levinegiftsandhandmade #toryburch: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #braun #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #kennethcolereaction: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @Heidisvariety #poshmark #fashion #style #shopmycloset #nike #wondernation #wrangler: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @Loliv17 @FedSen #poshmark #fashion #style #shopmycloset #turnbury #arizonajeancompany #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #urbanoutfitters #handcrafted: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #gbyguess #nike #xero: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #underarmour #forever21 #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #adidas #vans #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @DecoMeshWorks #poshmark #fashion #style #shopmycloset #athleta #passion1 #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #lularoe #rsq: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #oneill #konasol: ",
+ "Trying to cook up a crazy parlay at the buzzer",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #philippplein #gucci #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #toryburch #fallen #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #christydawn #sundayinbrooklyn #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #express #lizclaiborne: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @familygood4 #poshmark #fashion #style #shopmycloset #nike #kierj: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #tous #levis: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #mylittlepony #hallmark: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #coach #dickies: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #crocs #vans #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #djeans #dressbarn: ",
+ "Check out this deal! Nike Generic Banner Set: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #yugioh #brooksbrothers: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #kaws #nike #gymboree: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @penguin_trendy #poshmark #fashion #style #shopmycloset #nike #puma #hollister: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #fashionnova #susangraver #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @JCTCLOSET #poshmark #fashion #style #shopmycloset #underarmour #nike #everlane: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #stevemadden #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #whitemountain #coach #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @gigi_is_back #poshmark #fashion #style #shopmycloset #jordan #nike #fabletics: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @megmal83 #poshmark #fashion #style #shopmycloset #nike #monaco #halogen: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @reneeann_02169 #poshmark #fashion #style #shopmycloset #nike #gildan: ",
+ "@nathanbaugh27 Wow, that's really interesting! It's amazing how successful brands like Nike, Pokémon, and James Patterson can consistently churn out compelling stories using the same narrative structure. I'd love to learn more about how to create my own storytelling engine.",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @ms_monrow @heyrach44 #poshmark #fashion #style #shopmycloset #tahari #nike #shoedazzle: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #toryburch #birdies #nike: ",
+ "Has anyone else ever given there dog a shoe/trainer as a toy? This was my old trainer that i let her have face_with_tears_of_joy #Englishbulldog #Bulldog #nike ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @zinniahoney #poshmark #fashion #style #shopmycloset #theamericanoutdoorsman #nike #hollister: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #americaneagleoutfitters #levis #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #vincecamuto: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #columbia #toms #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #bananarepublic #pendleton: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @LisatheRed #poshmark #fashion #style #shopmycloset #brandymelville #handcrafted #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #louisvuitton #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #born: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #dreampairs #unbranded: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #vans: ",
+ "@nathanbaugh27 Wow, I'm intrigued! Developing a storytelling engine can be a game-changer for creating compelling content and building a strong brand. Excited to check out your step-by-step guide and learn from the success of Nike, Pokémon, and James Patterson.",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #stevemadden #newbalance: ",
+ "Starbucks with \"collectible stamps\" Reddit with “digital collectibles” Nike with \"virtual creations\"",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #jbrand #nike #rockrepublic: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #jordan #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @copacetic_frill #poshmark #fashion #style #shopmycloset #esprit #nike #barbour: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @ezra_hodaya #poshmark #fashion #style #shopmycloset #brittaniaexpress #fadedglory: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @CulinaryHScotch #poshmark #fashion #style #shopmycloset #volcom #randykemper #nike: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @DmpsterGoddess #poshmark #fashion #style #shopmycloset #drmartens #nike #treadeasy: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp from @maddi_millz #poshmark #fashion #style #shopmycloset #nike #handcrafted: ",
+ "Sooo cute together! Rock n' Rescue alums Adidas and Nike chillaxing at their forever home! #doglife #Dog #Rescue #rescuedog ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #lizclaiborne: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #thereset #nike #torrid: ",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #garage #gap: ",
+ "@markkayeshow I had a shirt with Mickey Mouse on it. I trashed it bc of how Disney is. I also trashed my Nike stuff after Colin Kapernick's endorsement",
+ "So good I had to share! Check out all the items I'm loving on @Poshmarkapp #poshmark #fashion #style #shopmycloset #nike #aritzia: ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "2_loving_items_share",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "2_loving_items_share"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ -5.478094,
+ -4.918064,
+ -5.571521,
+ -5.683871,
+ -5.7000732,
+ -5.2231994,
+ -5.406445,
+ -5.7357965,
+ -5.3018384,
+ -5.578266,
+ -5.7462926,
+ -5.7574587,
+ -5.510747,
+ -5.726031,
+ -5.45469,
+ -5.267324,
+ -5.697411,
+ -5.327824,
+ -5.325221,
+ -5.1291156,
+ -5.513091,
+ -5.596809,
+ -5.4180984,
+ -5.740346,
+ -5.6474366,
+ -5.7453656,
+ -5.7757945,
+ -5.596835,
+ -5.576277,
+ -5.701956,
+ -5.475652,
+ -5.3737526,
+ -5.7599616,
+ -5.1212425,
+ -5.7557774,
+ -5.738591,
+ -5.4612846,
+ -5.627141,
+ -5.250672,
+ -5.6943817,
+ -5.515917,
+ -5.3398247,
+ -5.5721745,
+ -5.5762734,
+ -4.9686785,
+ -5.314064,
+ -5.7260594,
+ 1.312011,
+ -5.326735,
+ -5.57555,
+ -5.697835,
+ -5.6220903,
+ -5.622154,
+ -5.225139,
+ -5.5589123,
+ -5.5165577,
+ -5.1269326,
+ -5.35171,
+ -4.8701243,
+ -5.5851326,
+ -5.1413617,
+ -5.5623374,
+ -5.631945,
+ -5.559789,
+ -5.790651,
+ -5.382493,
+ -5.4295926,
+ -5.278568,
+ -5.0766544,
+ -5.803635,
+ -5.807542,
+ -5.525714,
+ -5.173739,
+ -5.5966763,
+ -5.4006796
+ ],
+ "y": [
+ 6.3304763,
+ 5.9207535,
+ 6.2997656,
+ 5.938468,
+ 6.208185,
+ 6.245949,
+ 5.99902,
+ 6.2069254,
+ 6.1291637,
+ 6.178449,
+ 6.318772,
+ 6.127597,
+ 6.126046,
+ 6.0288196,
+ 6.178584,
+ 5.929201,
+ 6.2978683,
+ 6.17754,
+ 6.3653812,
+ 6.1635785,
+ 6.322709,
+ 6.174375,
+ 6.1627235,
+ 6.158506,
+ 6.326172,
+ 6.1498957,
+ 6.3355827,
+ 6.262615,
+ 6.2223344,
+ 5.922483,
+ 6.1346574,
+ 6.4425554,
+ 6.26701,
+ 6.2278867,
+ 6.233594,
+ 6.2471476,
+ 6.0517945,
+ 6.217868,
+ 6.2807336,
+ 6.1550536,
+ 6.0652337,
+ 5.934327,
+ 6.3995333,
+ 6.1706657,
+ 5.8364835,
+ 6.244787,
+ 6.2758775,
+ 6.2555575,
+ 6.1145186,
+ 6.2203283,
+ 6.2360415,
+ 6.226277,
+ 6.182908,
+ 5.947027,
+ 6.2062454,
+ 6.234534,
+ 6.255676,
+ 6.4452424,
+ 5.7711396,
+ 6.0526066,
+ 6.037538,
+ 6.144726,
+ 6.0684886,
+ 6.1416364,
+ 6.2164054,
+ 6.0892053,
+ 6.2756376,
+ 5.965329,
+ 6.2507234,
+ 6.3083014,
+ 6.16215,
+ 6.233432,
+ 5.937799,
+ 6.300762,
+ 6.1712623
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Nike Tonal Green Swoosh Size Medium fits more like a large 22x29.5 $30 shipped $25 local ",
+ "Check out this listing I just added to my #Poshmark closet: Nike Black & White Sports Bra. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike purple athletic running shorts size Med.. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Toddler's Nike Force 1 LV8 White/Anthracite-Yellow Strike. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Flywire. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: rose Nike Womens Air Max Sequent 3 Running Shoes Grey/Pink 908993-012 Size 10. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Dri-Fit shorts size 1X. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Victori One Shower Slide Triple Black Rubber Sandal Womens. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Women's Multicolor Printed Dri-Fit Athletic Running Shorts Size Small. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: University of Alabama Long-sleeve NIKE Game day gear // Adult Large. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Dry-Fit Mens Shorts. Size small.. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Flex Supreme Womens Size 9.5 Gray Orange Yellow 616694-005 Athletic Shoes. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Duke Blue Devils Basketball Retro Men's Small Blue T-shirt. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Men's L Nike Pro Combat 3/4 training leggings. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Dry Fit Baseball Cap. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Patchwork Mens Athletic Shoes. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Dri-Fit Arizona Wildcats Sz S Basketball Shorts Men. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Pro Tank Top Black/White Size Small. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Men's Fly by Mid 2 NBK Basketball Sneakers. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Men's L Nike Pro Combat Pro 3/4 training leggings. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Sportswear Synthetic Fill Hypershield Parka Jacket Newsprint XL CZ2867 001. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Marist College Track NCAA Jacket Red Long Sleeve Full Zip Men's XL. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike red sneakers size 7.5. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Bella Kai Thong 2 Women Sandals Slide Sport Pale Ivory DS. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Free Run shoes in Electric Blue. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: White Nike Blazer Low LE SZ 9.5. #shopmycloset @poshmarkapp",
+ "Check out Vintage 90's Team Nike Brand Athletic Track Full Zip Jacket Men's Size L #eBay via @eBay",
+ "Check out this listing I just added to my #Poshmark closet: Nike Golf Performance Agawam Golf Course Embroidered Red 1/4 Zip Top. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: blossomsaleblossom NIKE Women's One Piece Swimsuit. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike - Women's Small Americana Tank Top EUC!. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Large athletic pants Size L 12-14. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Saved for @jennnelson882 - Nike SuperReps Men size 7.5/Women size 9. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Benassi JDI Men's Sandals Slippers Slides Flip Flops White. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Hoops Tee Dri-Fit Athletic Cut Blue Medium Cotton Blend Short Sleeve Tee. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: NIKE Lunarswift 4 Lunarlon womens size 10 blue Orange Walking Running 510790-446. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Lunar Force 1 Duckboot 12 Sneakers Baroque Brown Olive Green 805899-200. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Women's Slides Benassi JDI Print White & Gold. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Kids Nike Star Runner sneakers. #shopmycloset @poshmarkapp",
+ " #NIKE Men Swim #shorts Size M Black Mesh Lining Po ",
+ "Check out this listing I just added to my #Poshmark closet: Rare NIKE Women's Swoosh 6.0 Shorts. #shopmycloset @poshmarkapp",
+ "just a girl with her nikes orange_heart ",
+ "AD: NEW Nike Dri-FIT DNA+ Basketball Shorts 'Light Photo Blue' Shop -> ",
+ "Check out this listing I just added to my #Poshmark closet: NIKE DRI-FIT LSU SHIRT MEN'S LARGE. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Ohio State Buckeyes Dri Fit Short Sleeve Shirt by NIKE: Adult Mens XXL. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Zoom I Get Buckets Mens Basketball Shoes White Blue Size 10 New. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike LunarEclipse 4 - Womens Running Shoes. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Chicago Cubs Varsity Jacket. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Benassi JDI Slides Women's Sandal Slide100% ORIGINA Black Pink Leather SZ 6. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Patrick Kane USA Nike Jersey, size M. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Women's Nike Air Max Axis White. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Air VaporMax 2021 FK Men's Sneakers size 8.5. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Reax TR. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Toddler white nike court borough low 2 Size 7C. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike athletic Tank top size M 8-10. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: COPY - Nike Dunk Low Bright Crimson Game Royal (GS). #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike man tennis size 9 pre owned great holes no damage. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Vintage Y2K NIKE T-Shirt : Adult XL : Streetwear. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike man tennis size 9 pre owned great holes no stains. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: FREE_buttontwo_hearts NIKE green_heart Your Pace or Mine dri-fit running sparkling_heartgreen_heart teecheck_markFREE_buttonW/any$30 BUNDLEheart_exclamation. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Women's Black & Pink Windbreaker Track Pants Size Medium (8-10). #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: NWT Nike Attack 7/8 Dri-Fit Heather Gray Joggers Size Large. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Tank Top slim fit size M. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: blossomsaleblossom NIKE Swim Shorts w/back zipper pocket. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike 2 Pair Running Shorts. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: NIKE AIR VAPOR MAX FLYKNIGHT 3 EXETER EDITION SNEAKERS SIZE 14. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Creamsicle Coral Salmon Athletic Sweatshirt hooded casual kids girl. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike pink sneakers size 6. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Denver Broncos Wes Welker Youth Jersey SZ Large. #shopmycloset @poshmarkapp",
+ "Check out this listing I just added to my #Poshmark closet: Nike Court Borough Mid 2 Toddler Athletic Shoes 7C. #shopmycloset @poshmarkapp",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "3_listing_added_closet",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "3_listing_added_closet"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ -1.5834795,
+ -2.1275384,
+ -1.8807966,
+ -2.1711607,
+ -2.2234883,
+ -1.8963628,
+ -1.8682598,
+ -2.4001708,
+ -1.8263328,
+ -2.045304,
+ -1.8583555,
+ -1.673153,
+ -1.8425838,
+ -2.2976649,
+ -2.0861146,
+ -2.2019932,
+ -1.8528153,
+ -1.7710433,
+ -2.130965,
+ -2.2177873,
+ -2.0539515,
+ -1.8006616,
+ -1.7184107,
+ -2.2133176,
+ -2.1453943,
+ -2.2071285,
+ -1.7556446,
+ -2.2117727,
+ -2.1143565,
+ -2.0073707,
+ -1.6423577,
+ -1.7269305,
+ -2.3784122,
+ -1.8706057,
+ -1.899983,
+ -2.082812,
+ -2.3483968,
+ -2.1586008,
+ -1.7369676,
+ -1.9915718,
+ -1.6318562,
+ -1.812898,
+ -1.7646091,
+ -1.8238255,
+ -1.8204383,
+ -2.153182,
+ -2.0212586,
+ -2.3469608,
+ -1.5087254,
+ -2.2280395,
+ -1.6892058,
+ -2.22948,
+ -1.9988066,
+ -1.7530229,
+ -2.1565113,
+ -2.3382726,
+ -1.9869889,
+ -2.333139,
+ -2.3749063,
+ -1.6867267,
+ -1.7210491,
+ -1.7831942,
+ -1.9301255,
+ -1.9770159,
+ -1.7064539,
+ -2.0472229,
+ -1.7520354,
+ -1.4523598,
+ -2.1072013,
+ -1.9732689
+ ],
+ "y": [
+ 2.2713313,
+ 2.4103656,
+ 1.9489298,
+ 2.7389743,
+ 2.6855013,
+ 2.823566,
+ 1.976311,
+ 2.7253332,
+ 1.9417539,
+ 2.5154884,
+ 1.9490342,
+ 2.9535203,
+ 2.3650908,
+ 2.600964,
+ 2.5436592,
+ 2.7085214,
+ 1.9315838,
+ 2.7957315,
+ 2.823072,
+ 2.6275241,
+ 2.4839835,
+ 2.3128033,
+ 2.8353922,
+ 2.5821784,
+ 2.7521958,
+ 2.6909544,
+ 2.2765687,
+ 2.6136324,
+ 2.4364176,
+ 2.6670856,
+ 2.4839292,
+ 2.8600533,
+ 2.7427368,
+ 2.0431914,
+ 2.8709984,
+ 2.7844934,
+ 2.7291021,
+ 2.738536,
+ 1.9316063,
+ 1.9916112,
+ 2.9987566,
+ 1.888319,
+ 2.1886435,
+ 2.1870148,
+ 2.9499013,
+ 2.7398694,
+ 2.461951,
+ 2.7126331,
+ 2.4427273,
+ 2.6962347,
+ 2.8482807,
+ 2.681241,
+ 2.835102,
+ 2.7416809,
+ 2.6987185,
+ 2.7706325,
+ 2.401199,
+ 2.7562919,
+ 2.6054559,
+ 2.707911,
+ 2.0771422,
+ 2.7595348,
+ 1.9473953,
+ 2.0379217,
+ 2.857829,
+ 2.4631927,
+ 2.853942,
+ 2.382985,
+ 2.8025498,
+ 2.5312867
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Inspired by Japan and the Sashiko stitching technique, this is the Nike Dunk Low SE 'Industrial Blue'. This shoe's upper is constructed of denim, showcased in Summit White and Industrial Blue. The heel forgoes the traditional Nike branding and instead allows some Sashiko stitch… ",
+ "RESTOCK Nike Women's Dunk Low White / Sail - White on JDSports CA ",
+ "Nike US Restock: Nike Air Max 1 Men'S Shoes United_States: #Sneakers ",
+ "JDSports EU Restock: Nike Dunk Low Enfant France: #Sneakers ",
+ "Nike EU Restock: Nike Dunk Low Se Older Kids' Shoes Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "Bodega Restock: Nike Solo Swoosh Crewneck United_States: #Sneakers ",
+ "Champssports Restock: Nike Vaporfly Next% United_States: #Sneakers ",
+ "Sneakersnstuff EU Restock: Nike Dunk Low Retro European_Union: #Sneakers ",
+ "Nike Dunk High 1985 “Valentine's Day” dropping today for $140.00 => ",
+ "@ItsRichGreen EU is an included Nike region, yep!",
+ "Bodega Restock: Nike Double Panel Pants United_States: #Sneakers ",
+ "ad: Nike Dunk High Wmns 'Panda' Full Restock On Nike EU >> ",
+ "JDSports CA Restock: Nike Women'S Dunk Low White / Sail White Canada: #Sneakers ",
+ "End Clothing US Restock: Nike Dunk High W White, Black & Ed United_States: #Sneakers ",
+ "Nike Sportswear Dunk White/Black/Universe Red link on Zal #sneakers #sneakerhead #reseller",
+ "Nordstrom US Restock: Women's Nike Air Jordan 1 Low United_States: #Sneakers ",
+ "Nordstrom EU Restock: Women Nike Air Jordan 1 Low European_Union: #Sneakers ",
+ "New Arrival Nike Dunk Low WMNS 'Teddy Bear' now available in select sizes in-store and online. SHOP: ",
+ "Nike Sportswear Wmns Dunk Low Cz Shimmer/Mars Stone/Sanddrift/Pearl White link on Zal #sneakers #sneakerhead #reseller",
+ "RESTOCK Nike Dunk Low on Nike ON: BUT: ES: FR: GB: IT: NL: ",
+ "Nike US Restock: Nike Dunk Low Se Women'S Shoes United_States: #Sneakers ",
+ "Ad: WMNS Nike Dunk High 1985 'Alabaster' SSENSE NET-A-PORTER Slam Jam Nordstrom ",
+ "Releasing at 10AM EST Wmns Nike Dunk Low 'Sanddrift' => ",
+ "RESTOCK Nike Jordan Blue & Yellow Air Jordan 1 Retro Hi Og Sneakers on SSense ",
+ "Nike EU Restock: Nike Dunk Low Se Women'S Shoes Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "Nike EU Restock: Nike Dunk Low Men'S Shoes Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "The Nike Dunk High SE \"Celestine Blue\" drops tomorrow on @footlockercad for $175 + free ship! ",
+ "End Clothing EU Restock: Nike Dunk High W White, Black & Ed European_Union: #Sneakers ",
+ "Ssense EU Restock: Nike White & Beige Dunk Low Se Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "RESTOCK Nike Dunk Low Next Nature on Nike ON: BUT: ES: FR: GB: IT: NL: ",
+ "Ad: Restock: Nike ZoomX Dragonfly Track & Field Distance Spikes Hyper Pink/Laser Orange/Black United_States ",
+ "AD: Nike Dunk Low 'Sashiko' drops tomorrow at 7 AM PST / 10 AM EST blue_circle Finishline: JD: ",
+ "AD: Dropping tomorrow 7am PT/10am ET via TDI Nike Dunk Mid 'Off Noir + 'Pale Ivory' Pack -> ",
+ "Nike US Restock: Nike Dunk High Retro Men'S Shoes United_States: #Sneakers ",
+ "Nike US Restock: Nike Dunk Low Big Kids' Shoes United_States: #Sneakers ",
+ "rabbit_face Nike Dunk Low \"Year Of The Rabbit\". ",
+ "Sneakersnstuff EU Restock: Nike Wmns Dunk Low European_Union: #Sneakers ",
+ "Ad: Restock: Nike Air Force 1 Low x Premium Goods Women's Shoes Black/Sand/Sail/Multi-Color United_States ",
+ "the Nike SB Dunk Barbie is no longer available ",
+ "Bodega Restock: Nike Women'S Air Force 1 Premium United_States: #Sneakers ",
+ "Nike EU Restock: Nike Dunk High Older Kids' Shoes Germany: France: Italy: Netherlands: United_Kingdom: #Sneakers ",
+ "Sundresses are the female equivalent of a Nike tech",
+ "COMING SOON: Nike Dunk Low \"Reverse Panda\" panda ",
+ "Bodega Restock: Nike Women'S Blazer Low '77 Jumbo United_States: #Sneakers ",
+ "Ssense US Restock: Nike White & Beige Dunk Low Se United_States: #Sneakers ",
+ "RESTOCK Nike Dunk Low Next Nature on Nike ",
+ "AD: Dropping tomorrow 7am PT/10am ET via Shiekh App Nike Dunk Low Denim 'Industrial Blue' -> WMNS Nike Dunk High SE 'Clouds' -> ",
+ "Windy conditions - looking at Keegz Rai Cam Young Hovland for FRL , maybe J Day and dem fresh Nikes",
+ "Restocked via Footlocker Familia x Nike Air Force 1 Low 'Redstone' => ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "4_dunk_restock_low",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "4_dunk_restock_low"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 2.4446747,
+ 2.6371007,
+ 2.1329303,
+ 2.8853843,
+ 2.89428,
+ 2.1728508,
+ 2.2795277,
+ 2.8838644,
+ 2.8279636,
+ 2.902801,
+ 2.1759524,
+ 2.8864226,
+ 2.6593661,
+ 2.4917238,
+ 2.4275818,
+ 2.3128364,
+ 2.5159514,
+ 2.665053,
+ 2.4838676,
+ 2.938409,
+ 2.5015998,
+ 2.7520294,
+ 2.9953501,
+ 2.054757,
+ 2.854229,
+ 2.8735678,
+ 2.8601022,
+ 2.8173127,
+ 2.5906987,
+ 2.9175868,
+ 1.8701584,
+ 3.0019822,
+ 3.0034592,
+ 2.456664,
+ 2.528759,
+ 2.8247952,
+ 2.874307,
+ 1.7605797,
+ 2.7074845,
+ 2.075046,
+ 2.9560082,
+ 0.8080832,
+ 2.8654003,
+ 2.1882448,
+ 2.497603,
+ 2.8222353,
+ 3.0107176,
+ 2.9646492,
+ 1.8968824,
+ 2.5703843
+ ],
+ "y": [
+ 2.0495024,
+ 2.094778,
+ 2.248976,
+ 1.7145418,
+ 1.6934278,
+ 2.131011,
+ 2.4096165,
+ 1.7280698,
+ 2.1249506,
+ 1.673683,
+ 2.1265583,
+ 1.9802107,
+ 2.1532228,
+ 2.0118623,
+ 1.9732077,
+ 2.4344904,
+ 2.3968184,
+ 2.0999177,
+ 2.0000727,
+ 2.0399811,
+ 2.1228688,
+ 1.9466578,
+ 2.0384016,
+ 1.668483,
+ 1.7320876,
+ 1.7005452,
+ 2.078358,
+ 1.7720708,
+ 1.6484443,
+ 2.0962946,
+ 2.2099113,
+ 2.0477717,
+ 2.021825,
+ 2.2116039,
+ 2.1759114,
+ 2.2091641,
+ 1.7582858,
+ 2.0863428,
+ 2.12659,
+ 2.1244218,
+ 1.6406789,
+ 2.4560797,
+ 2.1566145,
+ 2.1290069,
+ 1.8597813,
+ 2.1730218,
+ 1.9914271,
+ 1.5907744,
+ 1.845614,
+ 2.014366
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Why does Nike lie about how they give people EA?? Lmao",
+ "Who can speak on the comfort of the Nike Vomero 5 vs. New Balance 2002, 1906, or 9060 it seems to share similarities?? @Heskicks @rjolli007",
+ "@La3Life Not a single person should have 20 Ls period for a Nike product it's not designer it's Nike, they system is flawed IMO give people what they want, the want wont die down if people could get bred 1s like panda dunks resell value goes down that's it",
+ "@BagHoldingNFTs @Nike Shareholders vs holders.. who will win?",
+ "Since 1980 IPO, Nike has grown its EPS >12% almost every year. Do you want a business whose intrinsic value increases by 1% each month? And you can feel its Moat every time you think about sneakers flexed_biceps",
+ "@DaveOCKOP I'm convinced Nike is legit giving LFC weak kits so they don't have to pay them a lot of money.",
+ "@ghosttberg @rtphill02 We honestly don't control anything. Nike could easily mass produce a Travis Scott shoe but they choose to release them in limited quantities to keep the hype up, and hype always plays a part when it comes to the value",
+ "@MartinOKnight @LindseyPDXOR @JSchlund @benshapiro Both are consumers/employees voicing their opposition to something in hopes that the thing loses influence. The right boycotted Nike to get them to drop Kaepernick. How is that different from the left boycotting Netflix to get them to drop chapel?",
+ "Japan Accuses Ad Giant Dentsu of Rigging Bids for Tokyo Olympics - The New York Times #LosAngeles #love #nike #baseball",
+ "This means reaching thousands of new potential customers for free when it was exclusively possible for huge brands like Nike back in the day... You could be missing hundreds/thousands of $$$ daily by running ads and not regularly posting organic content for your ecom brand.",
+ "@FRIOVERSE Big difference between Nike and yuga within web3...plus 10ktf is at the wheel and have the keys to the kingdom",
+ "@douglas_knisely @FoxNews So... There are no apple factories in China. Neighter Nike's of Adidas... And the product manufactured in there never leave the country? Or am I getting that wrong? thinking_face There was a leak, ok? Let's see who owns the thing. Could've been accidental... Could be a sabotage.",
+ "@Bbbmckeon @bariweiss Bc of $$$ and the fear from their own that someone might accuse them of being racist. Also, when brands like Nike, NBA, Balenciaga, and Disney do business in China, activists they partner with are not paid to speak badly about them. Look what the NBA did to Enes Kanter.",
+ "Bungie literally destroyed everyone's builds for the sake of a new dlc. I don't even have the energy to go back and rebuild everything on all 3 characters while also having to account for the changes of a few mods that were vital to most builds, yea I think I'm done with Destiny's",
+ "@kopwhisperer @Tanglefoot490 @DaveOCKOP Difference between hating a kit and preferring a kit over another kit. Those Nike kits aren't bad but just not the same quality as the new balance kit.",
+ "@BagHoldingNFTs @Nike Why would they regret? They made a lot of money and can just create something new. CloneX or any other PFP is quite low effort to create. The branding/awareness/hype is hard but they are already known.",
+ "@jeringables @patrickpucci2 They're actually coming down in price. Market is getting saturated. Nike is also dropping several retros a year these days at certified retailers and on the Nike and Snkers app. Just gotta stay diligent.",
+ "@hassanrahim from what I've been told yeah. that's why nikes been so anal about those fakes in particular in recent times and now wants to shut down the source.",
+ "@DJBelcher1982 @zimsquil @benshapiro Well, we can't buy brands that are known to treat people badly. Like Nike, they used to chain Chinese children to tables to make our shoes. I don't buy Nike. It's slave clothes for life. They are Nazis. Look up where the lab comes from. Your dollar is your vote. ..",
+ "Very few are doing it better in the sneaker game than Salomon. Nike's had its time, but all signs point to the future of sneakers being in the hands of smaller innovators like Salomon, Merrell, ASICS, On etc.",
+ "@justingordon212 Nike doing it increasingly well. Apple is the OG. Creators that can de-platform stand out. Any new companies controlling their own distribution?",
+ "@BagHoldingNFTs @Nike Genuine Q. Why would they like to re-do this? It costs 240$ for the nft of the digital sneakers (similar price to real kicks with an actually use case) It's not doing bad at all, only the collector values it higher for no practical reason.",
+ "@NotTheDrPhil @BagHoldingNFTs @Nike Nike is more focused in profit. Although they release products that some will say are very unique, Nike has definitely changed the trajectory of the project.",
+ "Consensus is Nike wouldn't risk a kit like that because of the likelihood of backlash from sales Liverpool deal is too important to risk that says Nike's head of marketing Matthew Hanlon",
+ "When people think about unique brands, they often think about large retail corporations like Nike, Apple, and other multinational corporations. via @slrlounge #branding #marketing",
+ "@DrGuru_ Curry gets hate because Nike runs the NBA … If he had signed to Nike instead of Under Armor the narratives around Steph would be totally different. ",
+ "@BagHoldingNFTs @Nike I ponder on what's going behind the scenes often. I got my initial investment back on clonex but I still hold 3. Was the sale to NIKE the wrong choice? Is NIKE the problem or has the team just become complacent with all the money. The next bull run we will see. Sink or swim.",
+ "@mulherv1ado @hateroIogy Neymar dropped NIKE (not NIKE dropped him but HE dropped them) cuz they made a statement about accusation and refused to tell him what they were on about never asked him to \"collaborate\" he was the one demanding for explanations. skull stop using such matter for fanwars ffs",
+ "@Nike why the extra obstacle to get shoes?",
+ "@therealfrasio Did a contract with Nike guarantee him anything on the PGA Tour? And you're right, the difference in competitiveness and desire for legacy is clearly oceans apart between Tiger and the next guy. He wasn't compelling to me because of his Nike contract.",
+ "@NPR Why not give college students and graduates a break? Oil & Gas companies receive billions of $ in tax breaks. Many of the largest corporations (Amazon, Nike, FedEx, etc.) use the tax code to avoid paying any federal taxes.",
+ "@SneakerPhetish Been thinking about this \"controversy\" a lot and I find it sad ppl are trying to divide the community based on race when Nike, a huge corporation, has been selling Js to everyone since '85. Hate the clout chasing bot users regardless of race. They're the one making life difficult",
+ "@amtvmedia The “balloon thing” was just them showing everyone that they do what they want, here. Nike, the NBA and the movie industry have all capitulated and the President is understood as he's taken billions from them in bribes",
+ "@gloryglory73 @Mexico1978R @Nike Yes it is a shame as I have always purchased nike (30yrs). The anti white bias in addition to very poor selection at the moment is making me want to take my £200 elsewhere.",
+ "@NotTheDrPhil @BagHoldingNFTs @Nike Ofc, thats the reason a business is created but I feel like the way Nike sees things is a little different. I can’t see what’s happening BTS but Nike is releasing products w/ RTFKT that are not as successful because it’s either too early for them or they aren’t really usable yet",
+ "@metsiesTM Gatorade markets to baseball and so does Nike, you're right it should be tapped into more but it also has to be a market minority children in Latin America can't afford the high end cleats players sign into and minority market here like other sports.",
+ "Nike now farming out their designs to knock-off AI programs?",
+ "If y’all didn’t understand, Lamar has been both an Adidas and Nike athlete at some point given that he has worn those brands throughout his career. Any shoe deal that never was had to do with an exclusive line/flagship shoe (Much like Cam secured for UA Highlight.)",
+ "Garment Workers Take on Wage Theft and Wall Street A new campaign is targeting fashion brands like Nike that are spending vast sums on stock buybacks instead of compensating workers for lost pandemic wages. ",
+ "@staygroundead Nike, the dem-Nazi store, robbed by their party members.",
+ "Takeaway #6: NFTs are better collectibles as @LucaNetz said \"we've completely destroyed the $426bn collectible market.\" With NFTs you have all the information you need on supply, pricing, market dynamics. When you buy Nike Jordans you don't know how many are there in the market etc. ",
+ "@ProudElephantUS That's easy - China of course. Democrats are herd animals and gutless. China OWNS them. China OWNS Nike. China OWNS Joe Biden.",
+ "@lukeabc @dustmonkey_ @rektmando brands buying out web3 specialist lab/studios isn't a problem as long as they listen to them (staff) outside of the subject of 'extracting money'- Nike, from the outside, have actually been good at this, so far.",
+ "@BagHoldingNFTs @NFTsins @Nike So Yuga releasing ordinals is not a fragmented cash grab?",
+ "@BagHoldingNFTs @Nike Who wants the re-do more, founders or holders??",
+ "@TheFashionLaw Could it also be the manufacturer, modifying tooling of existing customers (i.e. Nike) for others (i.e. BAPE, etc)?",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "5_the_of_to",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "5_the_of_to"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 3.367201,
+ 3.348114,
+ 3.3531005,
+ 3.663092,
+ 3.4373455,
+ 3.3737707,
+ 3.3932714,
+ 3.5185957,
+ 3.3109214,
+ 3.4976647,
+ 3.5525951,
+ 3.4985232,
+ 3.4623897,
+ 3.4489517,
+ 3.37178,
+ 3.4393876,
+ 3.374983,
+ 3.3766189,
+ 3.5320914,
+ 3.1058574,
+ 3.4823966,
+ 3.473281,
+ 3.4382775,
+ 3.3783371,
+ 3.017728,
+ 3.1451483,
+ 3.4651458,
+ 3.6678782,
+ 2.9277394,
+ 3.1997004,
+ 3.8926,
+ 3.3890045,
+ 3.481676,
+ 3.2624412,
+ 3.4645102,
+ 3.1487482,
+ 3.407408,
+ 3.1864069,
+ 3.9145262,
+ 3.7885804,
+ 3.4287765,
+ 3.626601,
+ 3.5549273,
+ 3.5863452,
+ 3.548927,
+ 3.4725652,
+ 3.4299114
+ ],
+ "y": [
+ 4.863212,
+ 4.701334,
+ 4.807372,
+ 5.0419106,
+ 4.7870307,
+ 4.429787,
+ 4.4766536,
+ 5.101029,
+ 5.348704,
+ 4.746354,
+ 5.034263,
+ 5.1904144,
+ 5.233434,
+ 4.5298347,
+ 4.358466,
+ 4.6790733,
+ 4.634183,
+ 5.3019753,
+ 5.265023,
+ 4.8615503,
+ 4.8523264,
+ 4.5516267,
+ 4.859301,
+ 4.4104276,
+ 4.998084,
+ 5.5023546,
+ 4.699732,
+ 5.351009,
+ 4.8347435,
+ 5.147082,
+ 5.29342,
+ 5.3200493,
+ 4.8618774,
+ 5.2242208,
+ 4.8854947,
+ 5.0435486,
+ 4.804549,
+ 5.3288746,
+ 5.289895,
+ 5.2996626,
+ 4.617494,
+ 5.236566,
+ 4.9712205,
+ 5.0054455,
+ 4.961885,
+ 4.917978,
+ 4.949141
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Nike dad hat I gotta check on my mind",
+ "And that is how Nike gets it done! 1st_place_medaltrophyblue_heartsweat_droplets",
+ "nike lol you know how much bread i'd make",
+ "@layiwasabi Nike - just do it Wike - scatter everywhere ah dey with u",
+ "They need to bring back them throwback Nike ACG boots tho…",
+ "Do I need a new Nike?",
+ "The backwards Nike check getting old now.",
+ "Ran 2.61 miles with Nike Run Club. 3rd straight 100 mile month! Do I try for 4?thinking_face #NRC #JustDoIt #CenturyClub #100MilesAndRunning ",
+ "might have to double up.. pinnacle of Nike basketball",
+ "Nothing like the smell and look of new kicks #nike #newkicks #newtrainers ",
+ "@BashirAhmaad Nike - Just do it Wike - Just overdo it rolling_on_the_floor_laughingrolling_on_the_floor_laughing",
+ "Aye brah I'm getting those Nike SB 4s even if I gotta get it in blood, I'm getting it",
+ "@wendeeluvz NIKE - Nine Inch Kinky Extremity Just Do It",
+ "I love Nike. Those sweatsuits always keep me warm",
+ "Nike had a layoff today. Wow",
+ "Nike dropping those 3s and now JFG might be dropping some heat?!? Slap",
+ "I ran 1.05 miles with Nike Run Club #justdoit #goodtraining #boltonroadrace2023 Stage 1. Elliptical and bike person_biking_light_skin_tone next ",
+ "Nike, you gotta give me EA on these for my B-Day via Nike SNKRS: ",
+ "What yall think bout nike techs? ",
+ "they tryna run my favorite nike to the ground already =(",
+ "@Omojuwa Nike - Just do it Wike - Just overdo it ",
+ "Nike needs to start retro some 10seyes",
+ "Ima have to pass on them cement 3s the used look ain’t it dawg i feel if I cop I’m letting Nike get over on me",
+ "yet I have only seen him in a Nike tech",
+ "i want a brown nike tech",
+ "All I need is Nike airs a mean Porsche bucket an some dough on my side ",
+ "Get Over It by OK Go on OK Go / Nike+ Treadmill Workout Mix (Capitol Records) #NowPlaying",
+ "Nike - Just Do it Wike - Just Over Do it",
+ "Vincent Mutai ran 27.35 over 10km at the Castellon 10km this past weekend. A great start on his debut race abroad @nike",
+ "@SneakerVisionz How do you do a custom with no Nike Air on the back?",
+ "Nike - Just do it Wike - Just overdo it",
+ "Im so mad I missed Nike call",
+ "From street icons to workout runners, grab the latest styles from Nike, adidas and more huge brands with the King of Trainers range @JDOfficial! fire ",
+ "he told me nike just do it ",
+ "Nike needs to change their slogan to \"I run it\" This day in age ..thats high energy OK_hand your welcome folded_hands just give me credit @Nike @nikefootball @nikestore @nikebasketball",
+ "Nike - Just do it Wke - Just over do it",
+ "the world is spinning too fast, i'm buying lead nike shoes",
+ "Nike, it's not easy to do it o",
+ "Nike just do it Wike just over do it ",
+ "this is not the nigga you like with the nike tech come on ice",
+ "Nike is playing with me cause how some shoes that just came out were shipped before some that came out 2 weeks ago face_with_rolling_eyes",
+ "If i mix match two nike things with two adidas things im matching right?",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "6_do_it_just",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "6_do_it_just"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 1.7324758,
+ 1.7951773,
+ 1.567154,
+ 1.7917932,
+ 2.2158198,
+ 1.6956196,
+ 2.1032035,
+ 1.6386884,
+ 1.8855255,
+ 2.00117,
+ 1.6716874,
+ 1.6651325,
+ 1.6447251,
+ 1.5472172,
+ 2.4618983,
+ 2.189186,
+ 1.5732465,
+ 1.629118,
+ 2.1547332,
+ 2.170922,
+ 1.8500206,
+ 2.2628825,
+ 1.950695,
+ 2.0062735,
+ 1.9337333,
+ 1.5715493,
+ 1.6516662,
+ 1.666937,
+ 1.570554,
+ 1.6099524,
+ 1.6692792,
+ 2.0677538,
+ 1.5503945,
+ 1.7049794,
+ 2.3059685,
+ 1.6711674,
+ 1.9540527,
+ 1.5852301,
+ 1.7880918,
+ 2.0696588,
+ 1.9453818,
+ 1.7689153,
+ 1.8402293
+ ],
+ "y": [
+ 5.063163,
+ 5.056726,
+ 4.873357,
+ 5.0211105,
+ 4.9205904,
+ 4.9369497,
+ 5.0196986,
+ 5.436832,
+ 4.7478104,
+ 5.314435,
+ 4.915894,
+ 4.7039156,
+ 4.8931446,
+ 4.822441,
+ 5.0256143,
+ 4.5677443,
+ 5.433816,
+ 4.711315,
+ 4.6113434,
+ 4.915803,
+ 5.0791144,
+ 4.999274,
+ 4.8099937,
+ 4.643037,
+ 4.6959767,
+ 4.8082037,
+ 4.9879866,
+ 4.922595,
+ 5.4048305,
+ 5.1038427,
+ 4.9080396,
+ 4.9874477,
+ 4.831463,
+ 4.919935,
+ 5.1212277,
+ 4.909555,
+ 5.1548014,
+ 4.8593135,
+ 5.0245748,
+ 4.683832,
+ 5.4078403,
+ 5.03653,
+ 4.959312
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "NIKE AIR MAX 1 V SP \"PATCH\" MENS RUNNING SHOES - MENS SIZE 5 WOMEN'S SIZE 6.5 eBay ",
+ "Size 10.5 - Nike Kyrie 4 90s 2018 Excellent Condition!! eBay ",
+ "@lZUTSUMl size 13 nikes, MENS size 13 nikes",
+ "Nike Phantom GT2 Elite FG Generation Pack Copper DR5954-810 Men's Size 10 Cleats eBay ",
+ "Check out Women's Nike Air Huarache Black UK Size 3 EUR 36 DH4439 001 #eBay via @eBay_UK",
+ "NEW Nike Air Jordan 1 Low Barely Grape | Women Size 6.5 eBay ",
+ "Check out what I'm selling: NIKE AIR MAX 90 USA Women's sz 7 ( EU size 38 ): Get up to $30 off* when you use my code YSPYAH to sign up for Mercari. *Terms apply #mercari ",
+ "Check out Nike Revolution 6 Nn Mens Running Trainers Dc3728 Sneakers Shoes 003 Size 10 #eBay via @eBay_UK",
+ "NBA Nike Michael Jordan Dry jersey size 44 NWT #eBay via @eBay",
+ "@kdfootballshirt @BomboneraTears @PibedeBarrioArg @ARGshirts You have many options, since official stores from like Adidas, Kappa or Nike, official stores from football clubs, and many sport stores like Nico Deportes, DXT-Mania and many sport stores in all the city, and remember, foreign exchange has a parity for 1 U$$=377$ arg approximately",
+ "Check out Nike W Air force 1 Fontanka Uk 2.5 #eBay via @eBay_UK",
+ "SIZE 6 WOMEN'S NIKE AIR FORCE 1'07 MID WHITE / BLACK DZ5211 100 eBay ",
+ "Sizes 5-12 on #Nike US. Air Jordan 1 Zoom Comfort 2. straight_ruler Women's 10 = Men's 8.5 link ad ",
+ "Hey girls! NIKE FREE WOMAN Pink! Size 37-40. Price only 310,000 hr. Get now! :)~ ",
+ "Check out Nike Air Jordan 3 Retro UK 9 Pine Green CT8532-030 Trainers Basketball Black #eBay via @eBay_UK",
+ "Check out Size UK 10.5 - Nike Air Max White #eBay via @eBay_UK",
+ "2013 Nike Air Max 90 2007 Retro SAMPLE Gray Teal Purple 3.5 3.5Y (Womens 5) vtg eBay ",
+ "Nike Jordan 1 Retro High Golf Shoes Patent Midnight Navy DQ0660-100 Men's Size 10 eBay ",
+ "Size 11 - Nike Air Force 1 Low Supreme Box Logo White eBay ",
+ "@RamsNFL @CooperKupp Where can I find a white Nike Youth Small Kupp jersey for my son? He's a huge fan and I can't find it anywhere. Help! folded_hands_light_skin_tone",
+ "Wtb lazada nike run swift 2 size 39 ",
+ "Nike Damen Heritage 86 Core Hat #Amazon ",
+ "Check out what I'm selling: Nike Huarache Plum Suede Sneakers Mens size 11 1/2: Get up to $30 off* when you use my code YSPYAH to sign up for Mercari. *Terms apply #mercari ",
+ "#Nike #AirForce 1 '07 Shoes White Medium Royal Blue DH7561-104 Men's on @eBay ",
+ "Hey girls! NIKE FREE WOMAN Orange! Size 37-40. Price only 310,000 hr. Get now! :)~ ",
+ "306193 261 Vintage 2005 Nike Air Trainer 1 SB HUF Gold Digger w/ Box Size 10.5 eBay ",
+ "Hey girls! NIKE FREE WOMAN Blue! Size 37-40. Price only 310,000 hr. Get now! :)~ ",
+ "This ref got on this small as Nike jacket like it literally looks like a kids jacket",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "7_ebay_size_mens",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "7_ebay_size_mens"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ -0.09417049,
+ -0.0871659,
+ -0.21291488,
+ -0.2091492,
+ 0.0049563055,
+ 0.016394252,
+ -0.072562374,
+ -0.17276998,
+ -0.34111282,
+ 0.05161045,
+ 0.20040005,
+ -0.01857608,
+ -0.22669305,
+ -0.11326067,
+ 0.15245938,
+ -0.028907597,
+ 0.4880346,
+ -0.17134245,
+ 0.0883089,
+ -0.44164625,
+ -0.07899614,
+ 0.35973698,
+ -0.37138486,
+ -0.13410619,
+ -0.12736304,
+ 0.36433697,
+ -0.09580245,
+ 0.08672064,
+ -0.042320214
+ ],
+ "y": [
+ 2.407531,
+ 2.3377771,
+ 2.4410224,
+ 2.489704,
+ 2.301034,
+ 2.275032,
+ 2.129629,
+ 2.442104,
+ 2.3923817,
+ 2.4068925,
+ 2.476903,
+ 2.3102608,
+ 2.4173949,
+ 2.008703,
+ 2.4150305,
+ 2.3094265,
+ 2.2484858,
+ 2.4744234,
+ 2.4424706,
+ 2.4862359,
+ 2.1966689,
+ 2.6283667,
+ 2.284469,
+ 2.4609876,
+ 2.0400274,
+ 2.429906,
+ 2.0590177,
+ 2.5931933,
+ 2.3537529
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "@UmCoolLikeDat Shoulda known Nike would be the first place to check handshake_light_skin_tone_dark_skin_tone",
+ "My friend woke up a monster by taking me thrifting loudly_crying_face I showed restraint & still wound up with 2 Nike Caps, a University of Michigan one & two purses loudly_crying_face",
+ "Lmfaoo No way nike making people lowkey happy they lost out on a pair 5 years ago so they can possibly qualify to still most likely not win this time around face_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy ",
+ "Just seen a niggah wit da nike tech gallery pants combo saluting_face",
+ "Boy had to throw 70 times face_with_tears_of_joy yeah they didn't go come close to beating us in Athens",
+ "Nike killing my wallet cat_with_tears_of_joycat_with_tears_of_joyface_exhalingface_exhaling",
+ "@Mar38124076 @thunderrun333 @jcwood1993 @JessRecruitsSC @GamecockFB Your response was we aren't used to getting five stars man_shrugging_medium-dark_skin_toneloudly_crying_faceloudly_crying_faceloudly_crying_face but you got five stars and all this Nike money “cute” uniforms and can't sniff Georgia or Alabama's ass nor any of your opponents man_facepalming_medium-dark_skin_tone",
+ "That's a lie! Bro don't even wear Nike techs man_facepalming_medium-dark_skin_tone",
+ "I thought it was a fake kitloudly_crying_faceloudly_crying_faceloudly_crying_face. What are Nike tuxedos? ",
+ "@avekickz Yes indeed my dude!! Lost & Found was just a warm up frfr!!! Ppl don’t think so…face_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy! You really think Nike learned from their last mistake?.. That'd be entirely too normal, & proper!!see-no-evil_monkeygreen_heart",
+ "@Strofix__ nike techs are so drippyyyyy smiling_face_with_heart-eyessmiling_face_with_heart-eyessmiling_face_with_heart-eyes ",
+ "So even on Nike by you I can't design the shoe exactly like the pandas weary_face",
+ "@DaveOCKOP Why does it seem like since we've had Nike kits they make no effort at all but another team in Nike looks nicely made face_with_symbols_on_mouth",
+ "@90sfootball Those Nike footballs OK_hand_light_skin_tone",
+ "@itsjbingle weary_faceweary_faceweary_face. I just don't think I'm supposed to have them. The Nike by you allows me to customize everything except the black parka at the top of the tongue.",
+ "It's genuinely mental how clear my sportswear stuff is of Nike, so many people are missing outcrying_face",
+ "@CharlotteSneak1 @SneakerVisionz Can’t forget the Nike SB tabsquinting_face_with_tongueother than that it’s a regular 4. Maybe the zoom unit and slight alterations of materials are different man_shrugging_medium-dark_skin_tone. Probably wishful thinking!",
+ "Nike ear_light_skin_tone",
+ "whole gang Nike skied up try someslightly_smiling_face",
+ "3. crush ft. erika de casier 4. woe (i see it from your side) (björk remix) 5. shlut ft. sevdaliza 6. nike ft. deto black 10. wildfire (eartheater remix) 11. unconditional - shygirl x face ",
+ "It makes me so mad when Nike makes something, its out for a while, then they get rid of it and make nothing similar to itenraged_face",
+ "Guys on tiktok be like “GRWM” and it be the most boring outfit. loudly_crying_face Like...how many more black t-shirts and beige chinos with some Nike's do we have to see before it gets exciting? upside-down_face",
+ "@RonBoe2x Oh… smirking_face Lmaooo jk mine are the Walmart version not Nike face_with_tears_of_joy ",
+ "@Healnathome @Nike Yes mom clapping_hands_medium_skin_toneclapping_hands_medium_skin_toneclapping_hands_medium_skin_tone",
+ "Nike Air Hookah Powder Canyon thinking_faceface_with_tears_of_joy ",
+ "Nike————-> Let's Do It Woke————> Let's Over Do It woman_facepalming_medium-dark_skin_tonewoman_facepalming_medium-dark_skin_tonewoman_facepalming_medium-dark_skin_tonewoman_facepalming_medium-dark_skin_tone",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "8_it_nike_ft",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "8_it_nike_ft"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 0.98284495,
+ 1.3448912,
+ 1.3412335,
+ 1.2848614,
+ 1.3471494,
+ 1.3371372,
+ 1.2231534,
+ 1.1246793,
+ 1.2933338,
+ 1.4195145,
+ 1.3947194,
+ 1.1789037,
+ 1.2737602,
+ 1.0132395,
+ 1.2017813,
+ 1.2627676,
+ 1.1108408,
+ 1.0291562,
+ 1.4400079,
+ 1.4994079,
+ 1.2883708,
+ 1.2212598,
+ 1.4189768,
+ 0.9912687,
+ 1.3514307,
+ 1.0764129,
+ 1.2481194
+ ],
+ "y": [
+ 7.216779,
+ 6.8398943,
+ 6.713933,
+ 7.1277537,
+ 6.807829,
+ 6.778342,
+ 6.8673463,
+ 7.0159483,
+ 7.069799,
+ 6.6053524,
+ 7.247425,
+ 6.8508835,
+ 6.7977934,
+ 7.1534524,
+ 7.070946,
+ 6.839142,
+ 6.9696264,
+ 7.1402383,
+ 7.323692,
+ 6.9172525,
+ 6.8218775,
+ 7.1388297,
+ 7.2300687,
+ 7.2422643,
+ 7.148891,
+ 7.1323013,
+ 7.002602
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Ad: Nike White AMBUSH Edition Air Force 1 Low SP Sneakers ",
+ "Ad: Nike Men's Air Zoom Structure 24 Running Shoes - Anthracite/Vivid Purple-black ",
+ "Ad: Men's Nike Off-White Undercover Edition Moc Flow SP Sneakers ",
+ "Tiffany Co. Nike Air Force 1 '1837' raffle via Sneaker Politics. Raffle ends on 03/06 @ 4PM EST/1PM PST Enter up! ",
+ "Nike x Ambush Air Force 1 Low SP 'Phantom' - Unheardof Brand @snkr_twitr ",
+ "Andy Reid will be the soul reason I buy some Nike Air Force Ones.",
+ "Ad: Men's Nike White AMBUSH Edition Air Force 1 Low SP Sneakers ",
+ "Ad: Men's Nike Black Slam Jam Edition Air Force 1 Sneakers ",
+ "Colette x Busy P x Nike Air Force 1 Low 400 pairs worldwide camera_with_flash IG: sneakerden ",
+ "AD: Slam Jam x Nike Air Force 1 Low 'Black' on SSENSE Shop -> ",
+ "Ad: Men's Nike White & Blue Air Force 1 '07 Low Sneakers ",
+ "Nike Air Force 1 Low x Tiffany & Co. “1837” gem_stone This collaboration really adds a special \"luxury\" touch to the basic Air Force 1 Low silhouette. Stock will for sure be very limited. The release for this sneaker is scheduled for March 3 & March 7 Like for good luck! dollar_banknote ",
+ "AD: Dropped via SSENSE Premium Goods x WMNS Nike Air Force 1 'The Sophia' Shop -> ",
+ "AMBUSH x Nike Air Force 1 Low “Black” dropping today for $190.00 => ",
+ "NIKE Premium Goods Edition Air Force 1 'The Sophia' Sneakers Sold out elsewhere --> ",
+ "#SneakerScouts The Nike Air Force 1 'Black/White' is now available via @FinishLine! |$110| #give @Nike >>> ",
+ "Ad: Nike Black AMBUSH Edition Air Force 1 Sneakers ",
+ "Nike Air Force 1 Low Tiffany & Co. 1837 #shorts via @YouTube ",
+ "Ad: Nike Black & Beige Premium Goods Edition Air Force 1 'The Sophia' Sneakers ",
+ "Nike x Premium Goods Air Force 1 ",
+ "Ad: Nike Black Slam Jam Edition Air Force 1 Sneakers ",
+ "#SneakerScouts The Nike Air Force 1 Low 'We Are Familia' is now available via @footlocker! |$110| #give @Nike >>> ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "9_force_air_edition",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "9_force_air_edition"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 1.3543584,
+ 1.5926467,
+ 1.737914,
+ 1.1551453,
+ 1.3597537,
+ 1.222311,
+ 1.4275258,
+ 1.4103779,
+ 1.1623652,
+ 1.6025226,
+ 1.4082414,
+ 1.2499118,
+ 1.4155463,
+ 1.2464455,
+ 1.3312633,
+ 1.061747,
+ 1.3622595,
+ 1.1271218,
+ 1.3900769,
+ 1.3056402,
+ 1.4343343,
+ 1.0760952,
+ 1.337891
+ ],
+ "y": [
+ 1.8531907,
+ 2.0921519,
+ 1.5852836,
+ 2.196571,
+ 1.7514033,
+ 1.7469237,
+ 1.8680367,
+ 1.8031614,
+ 2.1101384,
+ 1.7936251,
+ 1.8891807,
+ 2.0215628,
+ 1.6685315,
+ 1.6656878,
+ 1.7919981,
+ 1.9540834,
+ 1.8902491,
+ 2.6416147,
+ 1.8640167,
+ 1.7277932,
+ 1.8207399,
+ 1.9302312,
+ 1.8939172
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "small_blue_diamond Nike Pegasus Turbo Next Nature small_blue_diamond Mineral Teal/Black/Faded Spruce/Light Silver Price: $104.97 SKU: DM3413-300 February 28, 05:15 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Air Max SC small_blue_diamond Fossil Stone/Rose Whisper/White/Pink Oxford Price: $85 SKU: CW4554-201 February 28, 05:06 PM EST Link to purchase: ",
+ "50% OFF check_mark The white/wolf grey-black Nike Kyrie Low 5 is on sale for $59.97 + FREE shipping. #promotion BUY HERE -> ",
+ "small_blue_diamond Nike Victory One small_blue_diamond Black/Metallic Silver Price: $35 SKU: CN9677-006 February 28, 05:52 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Pegasus 39 small_blue_diamond Iris Whisper/Summit White/Light Madder Root/Madder Root Price: $88.97 SKU: DH4072-501 February 28, 05:52 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Pegasus 39 Shield small_blue_diamond Black/Off Noir/Dark Smoke Grey Price: $104.97 SKU: DO7625-001 February 28, 05:36 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Pegasus Trail 4 GORE-TEX small_blue_diamond Alligator/Mint Foam/Canyon Rust/Orange Trance Price: $95.97 SKU: DJ7926-300 February 28, 05:16 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Waffle Debut small_blue_diamond Sanddrift/Phantom/White/Black Price: $63.97 SKU: DH9523-102 February 28, 05:36 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Air Max 90 small_blue_diamond Pure Platinum/Gorge Green/University Gold/Black Price: $95.97 SKU: DM0029-004 February 28, 06:08 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Pegasus Trail 4 GORE-TEX small_blue_diamond Alligator/Mint Foam/Canyon Rust/Orange Trance Price: $95.97 SKU: DJ7926-300 February 28, 05:13 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Pegasus Turbo Next Nature small_blue_diamond Mineral Teal/Black/Faded Spruce/Light Silver Price: $104.97 SKU: DM3413-300 February 28, 05:13 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Air Force 1 small_blue_diamond Atmosphere/Pink Oxford/Phantom Price: $80.97 SKU: DJ9946-600 February 28, 05:52 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Winflo 9 small_blue_diamond Obsidian/Black/White/Dark Marina Blue Price: $59.97 SKU: DD6203-400 February 28, 05:14 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Air Force 1 '07 LV8 small_blue_diamond Coconut Milk/Barely Volt/White/Neptune Green Price: $97.97 SKU: DX3365-100 February 28, 06:08 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Winflo 9 small_blue_diamond Black/Dark Smoke Grey Price: $69.97 SKU: DD6203-002 February 28, 05:16 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Winflo 9 small_blue_diamond Black/Old Royal/Racer Blue/White Price: $69.97 SKU: DD6203-004 February 28, 05:16 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Experience Run 11 Next Nature small_blue_diamond Black/White/Rush Pink Price: $48.97 SKU: DD9283-003 February 28, 05:52 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Burrow small_blue_diamond Sail/Black/Metallic Gold/University Red Price: $55.97 SKU: DZ4854-100 February 28, 06:07 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Court Vision Low small_blue_diamond Black Price: $50.97 SKU: CD5463-002 February 28, 05:52 PM EST Link to purchase: ",
+ "small_blue_diamond Nike Winflo 9 small_blue_diamond Photon Dust/White/Platinum Tint/Black Price: $69.97 SKU: DD6203-009 February 28, 05:16 PM EST Link to purchase: ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "10_smallbluediamond_sku_purchase",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "10_smallbluediamond_sku_purchase"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 0.13004883,
+ 0.2268477,
+ 0.26067334,
+ 0.22397292,
+ 0.17463936,
+ 0.22931124,
+ 0.16095017,
+ 0.2500144,
+ 0.26499373,
+ 0.18460259,
+ 0.16127789,
+ 0.25347054,
+ 0.2209073,
+ 0.29779264,
+ 0.22560087,
+ 0.17710988,
+ 0.23248985,
+ 0.20085128,
+ 0.23704241,
+ 0.20182852,
+ 0.21572128
+ ],
+ "y": [
+ 0.13248004,
+ 0.23619077,
+ 0.48096094,
+ 0.23977,
+ 0.1752021,
+ 0.24398294,
+ 0.16823016,
+ 0.3039662,
+ 0.26110536,
+ 0.2011448,
+ 0.16547863,
+ 0.2643653,
+ 0.24006225,
+ 0.2959008,
+ 0.24078552,
+ 0.19149129,
+ 0.2903217,
+ 0.20137984,
+ 0.27997005,
+ 0.21638386,
+ 0.24145862
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ " _Nicole Same Elga!! smiling_face_with_tear who would of thought so many dope artists can unite through a challenge?!.. yea everyone’s photos is art to me winking_face",
+ " _Nicole _twitr _kw Awww Mo! face_holding_back_tears You old softie you. smiling_face_with_heartsface_blowing_a_kiss",
+ " _Nicole Share it!! I hope it works out so I can put some more art on the timeline! Gotta thank for inspiring to keep on. I was finna go into hiding this month grinning_face_with_sweat",
+ " _Nicole For lil ol’ me?! Oh my I appreciate that!!brown_heartbrown_heartbrown_heart ",
+ " _Nicole Sick* damn auto correctman_facepalming_medium-dark_skin_tone",
+ " _Nicole _twitr He definitely has the coolest dad clapping_hands_medium_skin_tone",
+ "Exactly what I saidpensive_facepensive_face",
+ " _Nicole I hadn't posted anything this year until Feb 1 knowing I wanted to get it started with this",
+ " _Nicole _twitr _kw Yes Tosh, even you..",
+ "@iamcardib Exactly me always screaming don't touch my food with them hands that are dirtygrinning_facesmiling_face_with_smiling_eyesgrinning_face_with_smiling_eyesface_with_peeking_eye",
+ " _Nicole Very Nicedouble_exclamation_mark",
+ " _Nicole Perfect way to end the month. Glad I know you exist now because of it",
+ "Happy new month ya'all victory_handkiss_mark",
+ " _Nicole _twitr _kw Why are you trying to make me cry at work face_holding_back_tearsface_holding_back_tearsface_holding_back_tears",
+ " _Nicole Your photos and your words move me! I want to experience whatever art you have to offer. red_heart",
+ " _Nicole _twitr All this cuteness melting_face",
+ " _Nicole _twitr _kw I was nice to you?? squinting_face_with_tonguesquinting_face_with_tonguesquinting_face_with_tonguesmiling_face_with_heartssmiling_face_with_hearts jk jk u know its all love memo",
+ "i decided to get lilies this month through my lil flower subscription thingy and of course Miss Loves Plants doesn't have a flower vase of all things….so french press it iscowboy_hat_face honestly it's pretty fitting lol W89ZrmkbcM",
+ " _Nicole You are a gift as well!! I love this challenge! I won't post everyday but you'll catch me from time to time grinning_face_with_sweat",
+ " _Nicole _twitr Thank you so much! I appreciate the kind words and I'm always looking for an excuse to incorporate Leo into my pics winking_face",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "11_nicole_twitr_you",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "11_nicole_twitr_you"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 0.86727315,
+ 0.8722493,
+ 0.7744312,
+ 0.83609635,
+ 0.9286482,
+ 0.8633244,
+ 0.973352,
+ 0.74517727,
+ 0.8352595,
+ 1.2733198,
+ 0.9039285,
+ 0.7543943,
+ 0.8115152,
+ 0.9668182,
+ 0.8676641,
+ 0.8319918,
+ 0.88335025,
+ 0.772099,
+ 0.7763366,
+ 0.80095977,
+ 0.8669095
+ ],
+ "y": [
+ 8.464088,
+ 8.449776,
+ 8.556173,
+ 8.48882,
+ 8.388485,
+ 8.430502,
+ 8.35508,
+ 8.58546,
+ 8.481112,
+ 8.118825,
+ 8.417298,
+ 8.576094,
+ 8.514771,
+ 8.344275,
+ 8.490779,
+ 8.479979,
+ 8.441707,
+ 8.539702,
+ 8.554425,
+ 8.523682,
+ 8.460052
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Nike Club Men's Training Joggers (Black, X-Large) LINK: Price: $52.23 Discount: $12.77 (20%) #Nike ",
+ "19% ($30) below retail Nike Air Max 97 Triple White Wolf Grey Size: 10 — Retail: $160 BUY NOW right_arrow $130 ",
+ "Nike Waffle One SE Men's Shoes $84.97 ",
+ "Nike Air Max Goaterra 2.0 Big Kids' Shoes $85.97 ",
+ "Nike Air Max 90 G Golf Shoe $110.97 ",
+ "Nike Air Force 1 Mid QS Men's Shoes $131.97 ",
+ "The summit white/black-white Nike Waffle One is just over 30% OFF retail at $70 + shipping. #promotion BUY HERE -> ",
+ "P950.00 with free Nike socks and free delivery ",
+ "I'm selling high_voltage[SIZE 40-45] PREMIUM 1:1 NIKE AI... for RM170.00. Get it on Shopee now! #ShopeeMY ",
+ "Select sizes under 11 for the 'Black' Comme des Garçons x Nike Air Max 97 are now on sale for $161 + shipping. Retail is also $350. #promotion BUY HERE -> ",
+ "P1250.00 with free Nike socks and free delivery ",
+ "AD: Nike Air Crew Fleece - $44.99 Use Code: PARFEB15 For Extra 15% Off (code only works if you buy 2 or more) Shop: ",
+ "Ad: high_voltage NOW: £113.00 high_voltage Shop the Nike Dunk High Retro PRM \"Summit White\" at a fraction of the RRP when using the new discount code: \"FF15\". Down from £134.00 to just £113.00! HERE > Sizes UK-7.5/9.5/10.5/11 ",
+ "30% ($55) below retail Nike Air Max Terrascape Plus Black Anthracite Size: 7.5 — Retail: $185 BUY NOW right_arrow $130 ",
+ "Nike Air VaporMax Plus Was Priced $210 Now $160 JD Sports #ad #Nike 4 interest-free installments also available. ",
+ "12 Pack Shoe Storage Boxes 35% off! $35.99 (original price $54.99) #deal #deals #shoe #shoes #sneakers #jordan #sneakerhead #shoesaddict #storage #dealoftheday #amazon #amazondeals #airforce1 #nike #adidas #amazonsale",
+ "Size options under 12 are $75 OFF retail for the wheat/white Nike Air Griffey Max 1 retro at $93.49 + FREE shipping. BUY HERE -> (promotion - use code PARFEB15 at checkout) ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "12_retail_max_free",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "12_retail_max_free"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 0.574791,
+ 0.5202965,
+ 0.51728344,
+ 0.5777389,
+ 0.56904244,
+ 0.69685936,
+ 0.45515275,
+ 0.6543082,
+ 0.36133435,
+ 0.4449464,
+ 0.673634,
+ 0.55473894,
+ 0.52080107,
+ 0.4852333,
+ 0.63687956,
+ 0.71014225,
+ 0.4866696,
+ 0.55528545
+ ],
+ "y": [
+ 1.2424699,
+ 1.1269257,
+ 1.0636516,
+ 1.3023007,
+ 1.2837011,
+ 1.4289562,
+ 0.9655833,
+ 1.3205129,
+ 1.784665,
+ 1.2494694,
+ 1.3838146,
+ 1.2327042,
+ 1.4221246,
+ 1.0955434,
+ 1.358044,
+ 1.4066719,
+ 1.2409575,
+ 1.2887115
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "#NIKE #AIRFORCE 1 '07 LOW BOLD AIR CJ1393-001 BLACK WHITE ",
+ "#Nike #SBDunk Low #Chlorophyll BQ6817-011 ",
+ "A closer look at the 'Pine Green' Nike SB x Air Jordan 4: ",
+ "Nike Air Ship Pine Green on Afew (no US shipping) ",
+ "@Mobyhaque1 I see a tall tower with one window in the jersey. Not a fan of this Nike kit.",
+ "@SneakerNews A sturdy 7 because I like the green used.. @Nike use more “Pine Green” but don't OD lol Thx",
+ "Closer look at the upcoming Nike SB x Air Jordan 4 SP Sail/Pine Green. Look for these to release in March alongside another color way later in the year. Is this a cop or drop? camera_with_flash: iamricosuav check_mark_buttonFOLLOW @secretsaucegrp for more news #nikesb #airjordan4 #aj4 #jordan #nike ",
+ "EARLY HEAT fire Air Jordan 3 Retro White Cement Reimagined from Nike SNKRS ... via @YouTube",
+ "EMEA ONLY : Nike Air Ship PE SP 'Pine Green' now live on Afew => ",
+ "OG over everything... @Nike please give us more OG colorways, please!? Don't sleep on the Cool Grey's, folks!! #Jordan6 #Nike ",
+ "#Nike Air #Jordan 4 Retro Military Black White ",
+ "Reconfiguring cube wall so decided on family shots b4 they all go back in. My #Jordan1 lows, absolute all time fave silhouette. Perfect in every way IMO. #nike #sneakers #sneakerheads #jordan ",
+ "@TheSiteSupply Nike SB x Air Jordan 4 Pine Green",
+ "Air Jordan Playoff 13's Watch the full review on my youtube channel Fiqnsneaks #fiqnsneaks #Sneakers #sneakerhead #playoffs #YouTuber #nike #yoursneakersaredope #shoe #shoesaddict #unboxing #explore #influencer #nicekicks #kotd #fashion ",
+ "Closer Look at the Nike SB x Air Jordan 4 SP “Pine Green” evergreen_tree ",
+ "#willeli Nike React William x Comiket 97 Eli ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "13_green_pine_jordan",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "13_green_pine_jordan"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 1.4627888,
+ 1.5097383,
+ 1.7152556,
+ 1.6730912,
+ 1.7090639,
+ 1.5347652,
+ 1.7211217,
+ 1.9617542,
+ 1.6569196,
+ 1.6283256,
+ 1.6385821,
+ 1.7366521,
+ 1.625652,
+ 1.7718065,
+ 1.6420732,
+ 1.5682049,
+ 1.6597372
+ ],
+ "y": [
+ 2.9509165,
+ 3.0894687,
+ 3.5204694,
+ 3.4953027,
+ 3.628723,
+ 3.6096509,
+ 3.4826012,
+ 3.5857384,
+ 3.4743078,
+ 3.2124496,
+ 3.0799215,
+ 3.4780939,
+ 3.4757469,
+ 3.4711604,
+ 3.5466127,
+ 3.1696765,
+ 3.3919275
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Wild acquire veteran forward Marcus Johansson from Capitals - ESPN #Dallas #basketball #sportsphotography #nike",
+ "Team of the Matchday: Who shone brightest on MLS is Back weekend? | - #LosAngeles #nike #soccer #photography",
+ "SEC Baseball Power Rankings: LSU, Florida impressing early - Saturday Down South #LosAngeles #nike #love #motivation",
+ "San Diego Padres Manny Machado Nike White 2022 City Connect Replica Player Jersey #timetoshine #padres #PadresTwitter $111.99 with code: SHORTSTOP Code expires in 6 hours! ",
+ "Dodgers' Gavin Lux to miss 2023 season with torn right ACL - ESPN #LosAngeles #gym #nike #sportsphotography",
+ "@Dewayne42005783 @playboi1526 @MikeRoach247 @payton_pierce26 But did they sign there. Did Peyton Bowen sign there? Did Donte Moore? Texas is way richer than Oregon. Oregon is also a one donor type university. Oregon was irrelevant before Phil Knight. They will be irrelevant once he dies. That is Nike's only tie to the university.",
+ "@marchellagetsit @wcarroll3 @hummel1923 Did they? I always felt like it was a couple of games into the season before we saw anything from Nike, since MLS was always their priority.",
+ "Seiya Suzuki Diagnosed With \"Moderate\" Oblique Strain - MLB Trade Rumors #LosAngeles #photooftheday #soccer #nike",
+ "Browns plan to trade or release safety John Johnson III - ESPN Australia #LosAngeles #basketball #workout #nike",
+ "Fantasy Baseball 2023: Hitting sleepers at each position - Yahoo Sports #Dallas #basketball #nike #love",
+ "Structure of Manny Machado's new contract leaves Padres room to add more big names - The San Diego Union-Tribune #Dallas #basketball #nike #workout",
+ "@tenthregion tournament kicks off tomorrow. Pull up and support @MalachiAshford3 and the @ParisKYHS Greyhoundsraised_fist_medium-dark_skin_tonebasketballflexed_biceps_medium-dark_skin_tonebasketball #nike #adidas #basketball #bbn #g1ve #hooplife ",
+ "@QBNR8R @Fanatics @Dodgers @Nike Just did actually! No luck. It seems they also just have the replicas. I'm thinking bc of the new sponsor ad situation, they probably yanked the old inventory (removal of the LA insignia on the left sleeve of the previous design beginning this year). Might just have to get this one ",
+ "Daniel Snyder allegedly charged Commanders $4.5 million to put team logo on his private jet, per report - CBS Sports #LosAngeles #nike #fun #nfl",
+ "Makar out this weekend, and Erik Johnson could miss the regular season - Mile High Hockey #LosAngeles #nike #fun #photography",
+ "Has Bryce Young's draft stock fallen, smart for Chicago Bears to trade down? | NFL | THE HERD - The Herd with Colin Cowherd #Dallas #nike #baseball #athlete",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "14_losangeles_basketball_did",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "14_losangeles_basketball_did"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 4.066142,
+ 4.057609,
+ 3.7806294,
+ 3.9300854,
+ 4.0589757,
+ 3.6662676,
+ 3.4593554,
+ 4.0383654,
+ 4.05528,
+ 4.0118346,
+ 3.9365296,
+ 3.6247206,
+ 3.5315657,
+ 3.4918115,
+ 4.071331,
+ 4.0573463,
+ 3.8648655
+ ],
+ "y": [
+ 6.82801,
+ 6.7754517,
+ 7.055236,
+ 6.726294,
+ 6.809281,
+ 7.176598,
+ 6.679684,
+ 6.784472,
+ 6.68596,
+ 6.7871003,
+ 6.7487183,
+ 6.466833,
+ 6.8377814,
+ 6.8162274,
+ 6.794116,
+ 6.841049,
+ 6.800801
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "Ad: Nike Air Dunk Jumbo Sail/Light Silver-Mint Foam-Pink Foam ",
+ "Ad: Nike Air Trainer 1 Black Gray Men's FD0808-001 ",
+ "Ad: Nike Air Max Penny 1 Tiger Stripes Black White Men's FD0783-010 ",
+ "“Light Bone” Gives The Nike Air Max 97 A Clean Makeover ",
+ "Ad: Nike Air Max 90 Futura Women's DM9922-105 ",
+ "Ad: Nike Air Max 95 Black/Safety Orange-Iron Grey-White ",
+ "Nike Air Huarache Craft Lait de coco DQ8031-102 ",
+ "Ad: Nike Air Force 1 Low Starry Night Women's FD0793-100 ",
+ "Ad: Nike Air Max 90 White/Starfish-Black-LT Smoke Gray ",
+ "Another Nike Air Foamposite One is on the way ",
+ "Ad: Nike (PS) Force 1 LV8 White/Black-Vivid Purple-Light Mint ",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "15_ad_max_air",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "15_ad_max_air"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 1.0587881,
+ 0.8468085,
+ 0.9901081,
+ 0.9568824,
+ 0.87239945,
+ 1.1265997,
+ 0.80419606,
+ 1.1373873,
+ 1.2880094,
+ 1.0041449,
+ 1.3259286,
+ 1.0373865
+ ],
+ "y": [
+ 2.5902371,
+ 2.4628587,
+ 2.4379067,
+ 2.3017929,
+ 2.461925,
+ 2.3657632,
+ 2.5681586,
+ 2.3832316,
+ 2.3526242,
+ 2.5629268,
+ 2.3122969,
+ 2.4363382
+ ]
+ }
+ ],
+ "layout": {
+ "annotations": [
+ {
+ "showarrow": false,
+ "text": "D1",
+ "x": -6.678673124313354,
+ "y": 4.351766541600227,
+ "yshift": 10
+ },
+ {
+ "showarrow": false,
+ "text": "D2",
+ "x": 3.9872013568878177,
+ "xshift": 10,
+ "y": 9.873278665542603
+ }
+ ],
+ "height": 750,
+ "shapes": [
+ {
+ "line": {
+ "color": "#CFD8DC",
+ "width": 2
+ },
+ "type": "line",
+ "x0": 3.9872013568878177,
+ "x1": 3.9872013568878177,
+ "y0": -1.1697455823421479,
+ "y1": 9.873278665542603
+ },
+ {
+ "line": {
+ "color": "#9E9E9E",
+ "width": 2
+ },
+ "type": "line",
+ "x0": -6.678673124313354,
+ "x1": 14.65307583808899,
+ "y0": 4.351766541600227,
+ "y1": 4.351766541600227
+ }
+ ],
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "rgb(36,36,36)"
+ },
+ "error_y": {
+ "color": "rgb(36,36,36)"
+ },
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "rgb(36,36,36)",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "rgb(36,36,36)"
+ },
+ "baxis": {
+ "endlinecolor": "rgb(36,36,36)",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "rgb(36,36,36)"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.6
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "rgb(237,237,237)"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "rgb(217,217,217)"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "rgb(103,0,31)"
+ ],
+ [
+ 0.1,
+ "rgb(178,24,43)"
+ ],
+ [
+ 0.2,
+ "rgb(214,96,77)"
+ ],
+ [
+ 0.3,
+ "rgb(244,165,130)"
+ ],
+ [
+ 0.4,
+ "rgb(253,219,199)"
+ ],
+ [
+ 0.5,
+ "rgb(247,247,247)"
+ ],
+ [
+ 0.6,
+ "rgb(209,229,240)"
+ ],
+ [
+ 0.7,
+ "rgb(146,197,222)"
+ ],
+ [
+ 0.8,
+ "rgb(67,147,195)"
+ ],
+ [
+ 0.9,
+ "rgb(33,102,172)"
+ ],
+ [
+ 1,
+ "rgb(5,48,97)"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ]
+ },
+ "colorway": [
+ "#1F77B4",
+ "#FF7F0E",
+ "#2CA02C",
+ "#D62728",
+ "#9467BD",
+ "#8C564B",
+ "#E377C2",
+ "#7F7F7F",
+ "#BCBD22",
+ "#17BECF"
+ ],
+ "font": {
+ "color": "rgb(36,36,36)"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "white",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "white",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "bgcolor": "white",
+ "radialaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "yaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "zaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ }
+ },
+ "shapedefaults": {
+ "fillcolor": "black",
+ "line": {
+ "width": 0
+ },
+ "opacity": 0.3
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "baxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "bgcolor": "white",
+ "caxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "title": {
+ "standoff": 15
+ },
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "title": {
+ "standoff": 15
+ },
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ }
+ }
+ },
+ "title": {
+ "font": {
+ "color": "Black",
+ "size": 22
+ },
+ "text": "Documents and Topics",
+ "x": 0.5,
+ "xanchor": "center",
+ "yanchor": "top"
+ },
+ "width": 1200,
+ "xaxis": {
+ "visible": false
+ },
+ "yaxis": {
+ "visible": false
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "\n",
+ "# Reduce dimensionality of embeddings, this step is optional but much faster to perform iteratively:\n",
+ "reduced_embeddings = UMAP(n_neighbors=10, n_components=2, min_dist=0.0, metric='cosine').fit_transform(embeddings)\n",
+ "topic_model.visualize_documents(docs, reduced_embeddings=reduced_embeddings)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "813f2db9",
+ "metadata": {},
+ "source": [
+ "# GUIDED"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "9e3bce74",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "117974ebf0544fceb87e339c5a3c942b",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "Batches: 0%| | 0/28 [00:00, ?it/s]"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "from sentence_transformers import SentenceTransformer\n",
+ "from bertopic import BERTopic\n",
+ "from umap import UMAP\n",
+ "import pandas as pd\n",
+ "\n",
+ "# df = pd.read_csv('NikeTwitter.csv')\n",
+ "df = pd.read_excel('test.xlsx')\n",
+ "docs = df['translated_text'].tolist()\n",
+ "\n",
+ "# Prepare embeddings\n",
+ "# docs = fetch_20newsgroups(subset='all', remove=('headers', 'footers', 'quotes'))['data']\n",
+ "sentence_model = SentenceTransformer(\"all-MiniLM-L6-v2\")\n",
+ "embeddings = sentence_model.encode(docs, show_progress_bar=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "0a5c90e7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from sklearn.feature_extraction.text import CountVectorizer\n",
+ "\n",
+ "vectorizer_model = CountVectorizer(stop_words=\"english\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "5ab43636",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model_embedding = SentenceTransformer('all-MiniLM-L6-v2')\n",
+ "corpus_embeddings = model_embedding.encode(docs)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "id": "19817aa1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# seed_topic_list = [[\"carbonation\", \"fizziness\", \"bubbles\", \"effervescence\"],\n",
+ "# [\"flavor\", \"taste\", \"refreshing\", \"sugary\"],\n",
+ "# [\"caffeine\", \"energy\", \"stimulant\", \"awakening\"],\n",
+ "# [\"sweetness\", \"syrup\", \"sugar content\", \"artificial sweeteners\"],\n",
+ "# [\"carbonated beverages\", \"thirst-quenching\", \"hydration\", \"quench\"],\n",
+ "# [\"carbonated drink brands\", \"carbonated water\", \"soda machine\", \"fountain drink\"],\n",
+ "# [\"cans\", \"bottles\", \"packaging\", \"serving size\"],\n",
+ "# [\"carbonated soft drink industry\", \"consumption trends\", \"market share\", \"brand loyalty\"]]\n",
+ "\n",
+ "# docs = df['translated_text'].tolist()\n",
+ "\n",
+ "# # Prepare embeddings\n",
+ "# # docs = fetch_20newsgroups(subset='all', remove=('headers', 'footers', 'quotes'))['data']\n",
+ "# sentence_model = SentenceTransformer(\"all-MiniLM-L6-v2\")\n",
+ "# embeddings = sentence_model.encode(docs)\n",
+ "\n",
+ "# model = BERTopic(\n",
+ "# n_gram_range=(1, 3),\n",
+ "# # vectorizer_model=vectorizer_model,\n",
+ "# # seed_topic_list=seed_topic_list,\n",
+ "# nr_topics=10,\n",
+ "# top_n_words=5,\n",
+ "# min_topic_size=8,\n",
+ "# calculate_probabilities=True).fit(docs, corpus_embeddings)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "id": "2916a1ee",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from hdbscan import HDBSCAN\n",
+ "from umap import UMAP\n",
+ "# Create instances of GPU-accelerated UMAP and HDBSCAN\n",
+ "umap_model = UMAP(n_components=8, n_neighbors=20, min_dist=0.1)\n",
+ "hdbscan_model = HDBSCAN(min_samples=10, gen_min_span_tree=True)\n",
+ "\n",
+ "docs = df['translated_text'].tolist()\n",
+ "\n",
+ "# Pass the above models to be used in BERTopic\n",
+ "topic_model = BERTopic(umap_model=umap_model, hdbscan_model=hdbscan_model)\n",
+ "topics, probs = topic_model.fit_transform(docs)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "id": "7956867b",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "config": {
+ "plotlyServerURL": "https://plot.ly"
+ },
+ "data": [
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ null
+ ],
+ "marker": {
+ "color": "#CFD8DC",
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "other",
+ "showlegend": false,
+ "type": "scattergl",
+ "x": [
+ null
+ ],
+ "y": [
+ null
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "@cynnabumm i've only tried dr. pepper in 2010, when i went to london and i hated it face_with_tears_of_joy i might try it in september when i'm back in the uk",
+ "@jgrys3 @sidneypegula @nategearysports @per4orm i'm not as lucky, dr pepper in my nose is not fun",
+ "they gave me fake dr pepper",
+ "@nothatsyou it's like a creamy dr pepper. it's amazing",
+ "still have mot tried strawberry dr pepper or monster frowning_face",
+ "@tednivison me at the gym trying to count like..\n\n8, 9, 10, wings from flanagans tonight, a literal gallon of dr pepper, destiny 2 light fall, did i turn off the dryer, what is love baby dont hurt meee",
+ "@spiralgoo that's so smart i've been replacing it with dr. pepper, i literally got a concussion on saturday and now i actually have to stick to trying to stop and even though i barely have a choice its been hard for like 3 days loudly_crying_face",
+ "@daily_jk97 dr pepper\ni vote #leftandright for #bestmusicvideo at the #iheartawards!",
+ "dr pepper",
+ "finally found the strawberries and cream dr pepper",
+ "can someone, please bring me some sushi, korokke and my dr. pepper.\n\nme muero de hambre!!!",
+ "@zachdahellhound *drinks the spilled drink* mmm tastes like dr pepper. . .",
+ "the strawberries and cream dr pepper is actually so good wtf",
+ "fyi there is no ice in #iceland if you want ice you have to make it yourself or go to a dang kfc. and you can just forget about finding a dr pepper.",
+ "niggah said \"head to head\" wtf is that? like a dr pepper challenge? face_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy https://t.co/kanft1x3ed",
+ "a good ole can of dr pepper can really change your day",
+ "@sicrick666 does canada have the new strawberry and creme dr pepper?",
+ "@drelidavid @elonmusk what kind of dr. r u - the same as pepper?",
+ "@trevdon dr. pepper",
+ "either\ndr pepper\nguard\nmountain dew https://t.co/dmejxgzmlp",
+ "only weird craving i've had out of the norm is.. dr. pepper face_with_tears_of_joy i never use to drink that",
+ "@laurajanegrace how about dr pepper?",
+ "i finally found the strawberries and cream dr pepper! smiling_face_with_heart-eyes",
+ "@actbrigitte i trust dr. pepper more than elon musk! https://t.co/02h0t6lnoc",
+ "if you can't have dairy but want to have the taste of strawberry milk, leave the new dr pepper strawberries and cream out to get a little flat & taste just like strawberry nesquick face_with_crossed-out_eyes",
+ "pizza rolls with ranch and strawberries and cream dr. pepper",
+ "@meekorouse have a bacon cheeseburger, fries, and a dr pepper shake. burger was fine, fries were crispy, and the shake was great. https://t.co/zbmdsavdf8",
+ "do you want a coke?\n\nyeah!\n\nget dr pepper https://t.co/inzztnd2qe",
+ "@ketaminator3000 wir und die cherry dr. pepper?winking_facewinking_facewinking_facewinking_facewinking_facewinking_facewinking_facesneezing_facefearful_facefearful_facefearful_facegrinning_face_with_sweatgrinning_face_with_sweatpouring_liquidcup_with_strawcherriescherriescherriescherries",
+ "@danielrolltide i remember the real dr pepper too & i'd love to have a real dr pepper double_exclamation_mark",
+ "@rayjack97010720 2 piece fries large dr pepper",
+ "i ordered a diet pepsi mid-fast but they gave me dr pepper instead and i didnt know until after i took a sip loudly_crying_face",
+ "@drfrankdj diet dr pepper thorelieved_face",
+ "i start researching steam deck and drinking dr. pepper\nlove u all @ondeck and @drpepper\n\ni will check how the erra: exordium demo works\nhttps://t.co/6uphc48zwf\n\nto be continued...\n\n#steamdeck #drpepper #gamedev #indiedev #gamedevelopment https://t.co/ixkypkydhw",
+ "dr pepper full printing combo hawaiian shirts and beach shorts - dark red\n\n#hawaiianset #hawaiianshirt #hawaii #holidays #sports #gifts #summercollection #senprintmart\nsenprintmart store\nhttps://t.co/tfjhmvna3f",
+ "@cottontailva @zentreya i mean, it tastes good? i love whataburger's dr. pepper shakes.",
+ "my 2023 has been atrocious so far and all i want is a dr. pepper and i haven't had a soda in 60 days and i'm getting really aggravated that i picked this shitty year as my time to try to stop drinking soda loudly_crying_faceloudly_crying_face loudly_crying_face",
+ "@vegasgolds1 @foosrrr @rhmad67 @kylenabecker gary, i would run in the opposite direction if judy mikovits is mentioned in any format.\ndr. mikovits has no credibility in the scientific community.\nshe fudged data and retracted a pepper in science back around 2011 or so. was charged with theft of lab notes, not convicted?",
+ "dr pepper is delicious, isn't it?",
+ "@honeybeevtuber @moonbunnieedits it's correct. can confirm, i drink dr. pepper every day.",
+ "at some point, is it even dr pepper anymore? https://t.co/6iz1n822ip",
+ "@emofears thats um not healthy but the dr pepper is a w",
+ "@dook_spook dr pepper is real good and the can design is so cool i just feel like it's my gender",
+ "@searchforgrace @drpepper @pepsi my cocktail of choice for the past two years has been dr. pepper & bulleit bourbon. i've pressed pause this year but i do love it. in texas it's actually a drink called dr. bulleit.",
+ "i know no one cares but, back then i didn't care for dr pepper, actually hates it, now i'm addicted to it like everyone else is.",
+ "@dustymartinezz hey google, remind me to pick up cans of dr. pepper on my way home from work today.",
+ "@starhabitn you can have whatever you like\n\n.....but im gettin dr pepper",
+ "@lookingrightati maybe. i don't drink coffee. i get my caffeine from dr pepper",
+ "burger was not ass i would give it an 8/10. only angry they didn't have dr. pepper and spicy ketchup. sleepy_face",
+ "@marlborhoe666 i'm a post grocery store sushi & zero sugar dr pepper (strawberries & cream) or juice gal weary_facesparkling_heart i can’t do the taste of kumbucha but im down to try again lol",
+ "get thirsty so i grab my dr.pepper",
+ "@rollz_tootsie @jackiebee_16 dr pepper > almost any other soft drink\n\n(certain ginger beers are an exception)",
+ "@getlefty @mtggirl_ we get to try strawberries and cream dr pepper today which is hopefully better.",
+ "@rbruce63 @valavb @martik_cr @3amario @kintzugicr @hal_9th @emamirpe @tomasdecamino @kalipolis @sandraalvc @jccastrog @roalvarezolaso the beatles - sgt pepper's\n@rockmix @giacn11 @moriuper @jeffxmora @enocksalazar @dr_ivrecagu\nme tagging @rbruce63 https://t.co/6d9bcnho3q",
+ "@lakeeffectbro i feel like the oldest dogs in our neighborhood growing up ate mad table scraps and regularly drank dr. pepper.",
+ "would love a dr pepper rn",
+ "i haven't had a strawberries and cream dr. pepper in 36 hours. https://t.co/qfx6ulk641",
+ "@reggiewebber dr. pepper is just pinched_fingers",
+ "@sikmonaut i love me some dr pepper whoo yeah baby",
+ "@jahleei1 nigga i'm in it for the dr pepper",
+ "for my community service ngl i wouldnt mind just picking up trash like give me a dr pepper my headphones and mcdonalds and that whole neighborhood would be clean",
+ "@knucklexdragger dr pepper definitely quenches my thirst & makes me happy",
+ "@estarionn chug dr pepper sip root beer",
+ "craving strawberries and cream dr pepper,,,,",
+ "@farmerfrenchie of course you had a dr pepper for comparison face_with_tears_of_joy",
+ "dr pepper can color so cool hundred_points",
+ "fun fact pepsi is my third most favorite pop am i two other ones my second most favorite is aw and my first favorite pop is dr pepper i am not joking also my second favorite animal is a bunny rabbit i am not joking",
+ "dr pepper strawberries and cream zero sugar is soda review no. 1050; let's enjoy it together! https://t.co/rxj3sc2vjy #drpepper #zerosugar #strawberry #cream #review #soda #thesodajerk #pop",
+ "user posted: strawberries & cream dr. pepper https://t.co/peun8yihuw (user opinion)",
+ "people really enjoy drinking dr. pepper?",
+ "@kaitlinbutts i've been trying to make out what these sodas are named and i simply can't figure some of them out. what do the dr pepper and coke ones say? (or all of them so i have them right) https://t.co/9pr8xsjxzh",
+ "@ericvbailey buy him a dr pepper (with real sugar).",
+ "@hoggomcswineass your post about the dr pepper made me buy it. then her creativity took hold",
+ "so @moonbunnieedits just referred to the opening of a dr pepper bottle as the \"mouth hole\" and although they may not ~technically~ be wrong, they are morally wrong.",
+ "@elonmusk @herodividend funny that given his constant tipple is dr. pepper...",
+ "@drpepper so i just got a dr. pepper cream soda and it smells exactly like vinegar",
+ "my mom just sent me a pic of a 12 pack of dr pepper & said it's for when luis comes over loudly_crying_face she's so cute",
+ "@upblissed me watching the rotc kid walk in to buy dip, construction worker with 2 marlboro reds, a scratch ticket, 3 monsters, and someone's dad buying a pack of new ports, black & mild jazz, dr.pepper, & $2 scratch off (he didn't win)",
+ "@hennybbby gooey cum drops to finish off a dr pepper is wicked",
+ "@paracitik yes just add 5 boxes of dr pepper under the desk and it's perfect for u",
+ "@cottontailva @zentreya smack talking both whataburger and dr. pepper?! them's fight'n words.",
+ "me to my coworkers: “be right back, have a quick doctors appointment!!!”\n\n*my mid-day adventure to get a fresh fountain dr. pepper*",
+ "tried to stop drinking soda… then dr pepper came out with strawberries and cream dr pepper…",
+ "gonna spend a year making one of these to drink dr pepper out of https://t.co/snzyt8jsf8",
+ "@mikelmower where's your dr pepper?",
+ "@flexeatss i just spit up my dr. pepper!",
+ "@wendys pull up to wendy's.\ncan i get a number 3 spicy, large with a grape fanta?\nwhat i get is a number 3 regular, medium with a dr pepper.\ndidn't even give my ass a receipt. guess i'll be back when you dipshits can speak english.",
+ "@wick3dwhor3 i love dr pepper",
+ "within 2 min of having dev's number we sent pics of us both having dr pepper. very fitting lmao",
+ "@raphousetv2 honeybun & coke or cheetos & dr. pepperface_with_steam_from_nose",
+ "@robfrompa2 @calvin_knapp except coffee, dr pepper \"icky foods\"",
+ "for everyone saying i brainwashed alexia it's true.\n\nshe likes dr pepper now.",
+ "the best thing about working from home is not having an adult lunch, a crisp sandwich and dr pepper hits the spot quite nicely.",
+ "hot dr pepper time",
+ "@lextaliones_ damn sorry, i just know everyone says the zero sugar one tastes way more like strawberry milk. so maybe if you leave that one out, it'll be extra milky. my husband gets all the new pepsi products to try and and dr pepper strawberries and creme is like the only thing i like atm face_with_tears_of_joy",
+ "@morgeheather83 i don't drink but i'd taste that. and damnit i've been craving a dr pepper now i'm going to have to get that both look amazing",
+ "@microwave1213 @bobbybelttx dr pepper < coke",
+ "with real sugar, while starry is made with high fructose corn syrup.\n\nyes, you can tell the difference!\n\ni only drink white sodas so i'll have to look to a competitor to find one. dr. pepper is my guilty pleasure i allow myself every now and then.\n\n#pepsi #youscrewedup https://t.co/r94c9kgzsd",
+ "this is the real dr pepper strawberry and cream #drpepper #drink #review #coffee #creamer #fyp #viral #morning #drdew https://t.co/ol18eop2eh",
+ "hot dr pepper https://t.co/0x7zijrhjm",
+ "@autumnfox___ so long purugly, long live dr pepper kitty.",
+ "@jmarsico_ have you ever tried dr pepper cream soda???? addicting",
+ "olivier lemire, pdg de keurig dr pepper canada | en dosette ou traditionnel, le café toujours en croissance https://t.co/c3qfuevjzz",
+ "i don't like that strawberries strawberry and cream dr pepper they can take that shit tf back to hell where it came from",
+ "where the hell is mr. dr. pepper?",
+ "@elledeeemmm not enough strawberry for me. the dr pepper kinda overpowered it. i'll try it again one day.",
+ "@elliekimie i say as a professional dr pepper drinker",
+ "i find it very rude for thinspo to be on my tl when i just ate a dave's double with a large fry dr pepper and sugar cookie.",
+ "dr pepper shakes, floats, and icees are some of the best things out there hundred_points the state soda of texas baby cup_with_strawmechanical_arm https://t.co/zogxfqut6h",
+ "@madshmuck sure but i ran out of dr pepper",
+ "i haven't found that strawberries and cream dr pepper yet",
+ "i busted my ass today so i'm buying a dr pepper as a treat",
+ "@reggiewebber dr pepper is the only soda i will drink",
+ "seriously good chili cookbook | dr pepper inspired chili https://t.co/fkd8xcmasf via @youtube",
+ "anyone else remember the making of the best damn thing documentary where avril pepper sprays, spits on, punches, and tases dr. luke while making him pound copious amounts of limoncello and jäger? https://t.co/cw8tlawx6u",
+ "with dr. pepper.",
+ "i'm craving dr pepper",
+ "new addiction of dr. pepper acquired. ngl though it's fucked up these actually taste like dr.pepper you can be grossed out of peeps that's fine xd i'm just trying these out though. https://t.co/chbg4sidr6",
+ "@adamkoralik @pepsi @cocacola @drpepper i've had the dr. pepper strawberries & cream. i give it thumbs_upthumbs_up",
+ "@raphousetv2 cheetos and ginger ale beer_mug they can take dr pepper down because ain't nobody checking for that lol",
+ "@kanzaklsouma dr pepper taste",
+ "ur fav fruity gay tries dr. pepper strawberries & cream https://t.co/0epie6ynbv",
+ "diet dr pepper >>>>",
+ "@cottontailva @zentreya its just a vanilla shake with dr pepper it cant be that bad. its the same if they made root beer floats a shake",
+ "here's just a taste (pun un/or-intended depending on your view of puns)\n\nhttps://t.co/kip8mmik0z\n\nhttps://t.co/duteaqin6t\n\nhttps://t.co/fzefxpoxww",
+ "@bulliscorny dr pepper https://t.co/iz6tjxlxwz",
+ "the new strawberries and cream dr pepper is ass",
+ "@exigentregal yo i'm more interested in the new dr pepper strawberries & cream tbh",
+ "got a diet coke instead of a diet dr pepper just to change it up a bit https://t.co/idbe4tjwbt",
+ "one of the few good things about getting old is that i get to complain about all the things that used to be better.\n\nwhen i was a kid in the 1960s, dr pepper had a unique taste, unlike any other soda, and would make your nose burn. they toned down the flavor for the mass market.",
+ "at first i didn't understand the hype for the strawberries & cream dr pepper but the more i drink it the more i get it. shit delicious",
+ "@timothyluchtt @_travasaurusrex bro gets one sip of dr. pepper and becomes a total turd",
+ "@nikkimariejpg cause dr pepper is my favourite",
+ "(wrong link, oops)\ngettin ready to blast off. playing control, eating some chimis, and sipping on the unofficial drink sponsor of the richie buzz broadcast: dr. pepper strawberries & creme zero sugar. come get in here!\n\nhttps://t.co/a7zoj9tiva",
+ "@sharelis39 9: no way home\n21: dr pepper\n32: pink venom",
+ "taking an adderall and furiously consuming every piece of canon lore from the dr. pepper cinematic universe",
+ "@.njdevils get a sponsorship from dr. pepper we can get timo we can get some dr. pepper",
+ "i haven't drunk pop for years but it's 4am and i'm like 99% sure that a dr pepper would hit",
+ "i've had a headache for the last 3 hours. i haven't had a dr. pepper today.\n\ni am 3000% sure these are connected. i'm going through withdrawals.",
+ "@_forevermelissa pickles? what's next dr pepper?",
+ "@trevdon dr pepper sounds good rn",
+ "@nuderebeccaind1 @trevdon dr pepper",
+ "smiling_face_with_smiling_eyesjack-o-lanternbatblack_heartfor lunch, right now i'm having a chicken patty, my serving size of a thing of four cheese mashed potatoes and a can of dr pepper strawberries & cream zero sugar.",
+ "@mcdonalds thanks for the response. actually surprised. this specific location has had dr pepper for years, until this past week.",
+ "https://t.co/0euqmhw0cv\n\ndr pepper zero sugar soda, 12 fl oz cans, 12 packs\n\npay only ₹4.98",
+ "@reggiewebber i was literally talking with my roommate last night ab your dr pepper problem…..",
+ "@melissa17648985 thank you!! got it and got the veggies and 2 giant bags of oranges people_hugging will post a photo later. just took a break from unloading and went and got myself some dr.pepper!",
+ "@4blurr @flondeezy cherry coke sprite lemonade 2 waters pepsi another regular coke and a dr pepper and bros like “ya want anything grinning_face_with_smiling_eyes”",
+ "dr pepper is an acquired taste",
+ "stream fridge is also stockedbeverage_box\n\nbefore you come for me they didn't have any diet dr pepper loudly_crying_face https://t.co/vitpyzeqd5",
+ "@trevdon dr pepper",
+ "@groceryhound yes and dr pepper killed the nurse in the library. you obviously haven't watched much of the trial. this is what it's boiled down to: https://t.co/hemagpcjxa",
+ "sorry i said that earlier. i just hadn't had my afternoon dr. pepper",
+ "@bergopolis i had one today. it's fine. strawberries and cream dr pepper is much better.",
+ "you're not seeing the vision you're not seeing it!! dr pepper is lowkey good.",
+ "sweating bullets in the grocery line hoping dr. pepper is in my insurance network",
+ "got momo and dr. pepper https://t.co/w0nbz5wh3q",
+ "not a big fan of soda as a whole but dr pepper goes crazy face_with_tears_of_joy",
+ "hail lucifer 666 i just now finnish my first bottel of dr pepper. snd i throw the bottle away iam getting ready to brush my teeth.",
+ "@mystrongwife felt this same way when i cut out sugar. they should make it so that pop tarts and dr pepper make you feel nice",
+ "god i love dr pepper",
+ "this is how i feel drinking dr pepper https://t.co/b4ffxog9ny",
+ "i b waking up to a shot of dr.pepper",
+ "also while i was shopping, i finally found the highly coveted strawberries & cream dr. pepper strawberrycan't wait to pop this bottle cap off and see if it lives up to the hype crossed_fingers_medium_skin_tone",
+ "this my last dr. pepper before i give up pops fr face_with_tears_of_joy i been up since 5:30am.. i needed it",
+ "dragon slayer. 7 pepper blends, fire roasted & grilled, fortified with pure vermont (just like dr. ellen) maple syrup.\nsweet, smoky, savory & spicy\nhttps://t.co/jsooauzqei https://t.co/wsejx51ujg",
+ "my experience at a midwest college\n-no dr pepper left for me at the vending machine",
+ "@scrigglyloser like vanilla dr pepper, strawberry dr pepper (my personal fav) there's more that i don't remember or care about",
+ "cream soda dr pepper is also delicious https://t.co/cnfzqkl9om",
+ "@melanymiku i love dr pepper",
+ "that receptionist with a diet dr pepper bottle on her desk",
+ "@iceewip as the president of the dr pepper fan club pls give me an update immediately",
+ "happy gilmore, pizza, dr pepper and answering emails.",
+ "@yourfrienddana hot dr pepper with a thinly sliced lemon in it is *chefs kiss*",
+ "have you tried a brand new dr. pepper zero sugar strawberries and cream drink?! https://t.co/mo7q8fj1mx",
+ "a way i can tell i'm getting old is that one can of soda feels like too much for me.\n\nbut damn does a good 3/4 of a can of dr. pepper hit the spot sometimes",
+ "@rhysgbiv dr pepper top 2 sodas",
+ "also, there's not enough dr. pepper for me in kuwait broken_heart",
+ "@frankmikedavis1 likely dr pepper",
+ "watching one piece rn bc i couldn't get a taxi home from the club. they even have blankets in here. just gonna chill until i successfully order a taxi. might fall asleep. should i buy dr pepper?",
+ "dr pepper",
+ "i'll also accept soda if dr pepper is included thumbs_up",
+ "this strawberry & cream dr pepper is overrated..",
+ "day in the life of a texan:\n\nride my horse to a diner for breakfast of biscuits and gravy with a side of grits.\n\nwaitress asks me if i would like some water. i say yes and she pours me a glass of dr. pepper.\n\ni say thank you ma'am and tip my cowboy hat. before shooting my way out… https://t.co/7wwca5xkxi",
+ "@planet_sprout a damn dr.pepper addict",
+ "@copperbeardtom dr pepper, perfect name for a villainous apothecary",
+ "@_travasaurusrex respect bruh. if you can't handle me at my dr topper, you don't deserve me at my dr pepper.",
+ "@trevdon dr pepper",
+ "dr pepper really has a chokehold on me",
+ "all this looks gross to me now but fritos and dr pepper https://t.co/v0lecjzmhb",
+ "fuck now i want a damn hot dog! spring training style. with spicy mustard ketchup relish onions on a tasty bun. french fries! and a dr pepper and red rope. popcorn. fml right now. i miss spring training games in phoenix, on the lawn, sun shining bright. good times bro. people_huggingred_heartvictory_hand",
+ "@thenewworldpod @youtube subscribed! ignore my stupid dr. pepper related content.",
+ "@poet_grub i agree it's absolutely dr pepper",
+ "@farzyness why isn't dr pepper an option?",
+ "went to the bakery down town & then to a lil shop to get some cherry dr.pepper cherries https://t.co/rtf3olgzbx",
+ "fuck i just know that i'm going to be talked about in a chubby emu video one of these days. \"a man drank one can of dr pepper everyday for a year, here's what happened...\"",
+ "@davidsedthisx dr pepper also gorgs! would love a ribena collab from them drooling_face",
+ "i have the worst heartburn & have no idea why…\n\ndefinitely not from the case of dr. pepper i drank this weekend",
+ "@eliistender10 face_with_tears_of_joy dr. pepper",
+ "@reggiewebber i'm sorry but dr pepper is gross",
+ "@peaceloveutes i really enjoy that too. let me sit in silence with my popcorn and dr pepper and enjoy my movie",
+ "@koalawille awww y’all are so cute! completely off topic but it's weird seeing dr pepper that looks like that face_with_tears_of_joy",
+ "drink redbull and then drink dr pepper\n\nit will taste like cherry jollyrangers...",
+ "@thebsktcase diet dr pepper forever",
+ "that dr pepper strawberries n cream hot_facehot_facehot_facehot_face",
+ "i just saw dr. pepper flavored peeps...jesus",
+ "@henclairist i need dr pepper rn",
+ "uh...kind of took you a minute to get to the point there, didn't it? i know dr pepper was well established in 1950, what kind of an ad is this? were we not doing logos yet? https://t.co/c2uedrului",
+ "@eviscopet irn bru might look like landfill leachate, but it is delicious. my top tier drinks are dr. pepper and irn bru in joint 1st followed by coke and then pepsi.",
+ "no the new dr pepper strawberries and cream is not good",
+ "@cobalt5900 @cnn thank you, the best non-sugar drink is dr pepper zero",
+ "@trashcatcomet yup! dr. pepper, for example, always makes me sleepy. every single time.",
+ "@waffles041701 now sometimes i like diet dr.pepper",
+ "@fthefreakkk i'll take a dr pepper but it's a date",
+ "@adamkoralik @pepsi @cocacola @drpepper dr pepper variants have always been bad and this one is no different. the coke remixes...the mashmellow one was good and the rest have gotten progressively worse. this new one is actually undrinkable.",
+ "@cottontailva @zentreya dr pepper mid ngl",
+ "@trevdon dr pepper! cup_with_straw",
+ "dr. pepper... yum",
+ "@cottontailva @zentreya i like whataburger but not dr pepper so i'm at an impasse",
+ "hail lucifer 666 iam getting 2 quters from my drserres and iam going to get 2 bottles s of dr pepper. i have 3 dollars and chsnge left of the 20 dollars i got yesterday. the pepsi machine is sold out. so i have to get soda from the coke machine.",
+ "i built a coat rack this morning, and i found strawberries & cream dr. pepper zero and honey graham m&ms this weekend! what a monday! https://t.co/glg9jkmt1w",
+ "@danceswithleos dr pepper but mr pibb now and then",
+ "ppl are either dr pepper drinkers or crusty split end dudes!!! no in between!",
+ "i drink a dr. pepper every single day with my lunch, but it somehow didn't seem like it should make the list for reasons i don't know",
+ "check out that new dr. pepper strawberries n cream fire #thankmelater",
+ "@kelly_k_9 bag of flamin hot cheetahs (jerry for cheetos) and a dublin dr pepper",
+ "@straightsass @jackson5payne how dare he not get dr. pepper!",
+ "same guy vehemently addicted to dr. pepper",
+ "dr pepper makes me full like i could actually drink like 3 cans and not eat anything the entire day",
+ "@jessiemae dr pepper is nectar of the gods and deserves more respect!woozy_face https://t.co/qnlt6scxyn",
+ "i fucking love dr pepperdouble_exclamation_mark",
+ "if i can't get my hands on more dr. pepper strawberries and cream zero sugar soda i will riot loudly_crying_faceloudly_crying_faceloudly_crying_faceloudly_crying_face they shoved this amazing soda in my face and then dipped loudly_crying_faceloudly_crying_faceloudly_crying_face @drpepper",
+ "dr pepper",
+ "@cottontailva @zentreya i mean i'm curious. there's vanilla dr. pepper and i enjoyed it",
+ "@pixelpawn23 dr pepper isn't in the running as it's too good for this debate",
+ "dr pepper a day keeps the bad vibes away",
+ "@tearytori that doesn't sound very good actually stick to the dr pepper",
+ "@ryan_xvx i'll give you a can of dr pepper strawberries and cream",
+ "had an upset stomach drank some dr.pepper n feeling better biting_lip",
+ "i found this at the store but not strawberries and cream dr pepper smh https://t.co/wcpvofcquf",
+ "i'm not big on sodas, however i tried the dr. pepper strawberry cream; that's a damn good one",
+ "@trevdon dr. pepper, then 7up, sunkist, snd mountain dew. scotch & coke. pepsi maybe if eating picnic foods. fake sugar is the devil!! use stevia, or honey, as they are natural!!! peace_symbol",
+ "@sew_me_up well if you get regular dr. pepper and mix some hershey strawberry syrup in, it's pretty much the same thing haha.",
+ "finally got a chance to try the new dr pepper strawberries & creme!!! it has a very sweet taste. the strawberries & cream taste takes over the dr. pepper taste. overall its ok but i still prefer the original.\n\n#drpepper #drpepperstrawberriesandcream #soda\n#bigleesworld https://t.co/aq9h4zu0fl",
+ "dr pepper x5 brother https://t.co/moxtfuua5i",
+ "dr. pepper is adding a brand-new soda to its permanent lineup https://t.co/p111m0jpzy via @foodandwine",
+ "@cottontailva @zentreya wait isn't that like a dr. pepper float??",
+ "i tried that strawberries & cream dr. pepper the other day and ughhhhh it was so insanely good, i don't really drink soda much anymore but god damn i could obliterate a 12 pack of those",
+ "@cottontailva @zentreya honestly, i stan dr pepper, so yeah",
+ "having a dr pepper, it's quite good",
+ "all i need is an aspirin and a cane sugar dr pepper to show up to work and stand all day after i took it like giving birth.\nhttps://t.co/xrev1w5wm1",
+ "@varruechexo omg i love the chocolate ones w a dr pepper on the side see-no-evil_monkeyface_with_hand_over_mouth",
+ "dr. pepper strawberries & cream soda time!!! https://t.co/n3pkhq4nvr",
+ "@moshpitterr wtf is dr pepper?",
+ "@o_mulu tinha teu remix de dom dom dom do mc pedrinho, dr pepper do diplo, no type do rae sremmurd�� foi um track sua que fico disponible no site do festival skol senses 2014, se não me engano.",
+ "@thatericalper @rebeccalee75 when i was a kid it was dr pepper but later in life i switched to cola",
+ "the strawberries and cream dr. pepper is so gross",
+ "y'all making me wanna try that strawberries and cream dr pepper real bad. ion need it thoweary_face",
+ "can a company share competitors info? what if they told coke what dr pepper was planning to advertise? is there some rule or guideline about proprietary info for “newsface_with_rolling_eyes” organizations? https://t.co/hyio5jreyz",
+ "@vehementredhead @peepsbrand @pepsi i bought the hot tamale and dr pepper peeps last week. dr pepper was not good, but the hot tamales were really, really good. not as good as the coconut dipped in chocolate ones but i would for sure buy them again.",
+ "@lextaliones_ the hard part is finding strawberries and cream dr pepper for me lol",
+ "@trevdon cokea cola, then dr pepper",
+ "her priorities are in check. dr.pepper is also superior https://t.co/jmqwdopzwb",
+ "just ran into @bucksdunkin at the waukesha meijer and he said he was complimenting my nitro pepsi collection!!! it used to be dr pepper but now its nitro pepsi https://t.co/5ejza93gb7",
+ "i want to try the strawberries and cream dr pepper... something in my soul says it's gone be fire",
+ "@real_chrisallen @wcgopnj @jamesrkerniii @drpepper @sussexcountygop was the dr pepper spiked?",
+ "@trevdon dr pepper",
+ "medical shit period is triggering for me. and just got cursed out for drinking a dr pepper at ten am.",
+ "dr. pepper, although in a pinch a sunkist would be my substitute. https://t.co/fgev9jlrde",
+ "@iamlorengray ... and my extra special twitter posts i made for you.\n look at the dr pepper ad i made for you here b4, click the link for your business acc instagram i made for you that you wanted.\ntake a good look at your own handy work.\n i believe it's today they delete it. @iamlorengray",
+ "@lextaliones_ the regular strawberry dr.pepper tastes better than the strawberry and cream dr.pepper",
+ "smiling_face_with_smiling_eyesjack-o-lanternbatblack_heartfor supper, right now i'm having my serving size of the casserole that my brother likes to make and a can of dr. pepper strawberries & cream zero sugar.",
+ "some people are going to get offended by what i'm about to say next but idc it has to be said. dr. pepper is the worst soda ever red_exclamation_mark",
+ "@_gr3y_x it's always the old guysloudly_crying_face i had one at the walmart self-checkout say \"hey little lady, your boyfriend getting you that new dr pepper?\" and it was my brotherloudly_crying_faceloudly_crying_face",
+ "i love water, it is and always has been my first and only choice of drink. but, if you put a dr pepper in front of me, you best bet i'm drinking that.",
+ "@foxsane1 dr pepper! https://t.co/ahhsa4pmex",
+ "dr pepper is superior to coke. i'm just saying.",
+ "@swilua @pepsi i will stick with my dr. pepper strawberries and cream.",
+ "@bar_time14 face_with_tears_of_joyface_with_tears_of_joy i've only had one dr pepper in my life. it tasted like fuzzy cough syrup and i never tried it again.",
+ "@trevdon dr pepper",
+ "an over eager cart pusher tried to help me and my mom out and get our cart at the same time. i ended up dropping my case of dr pepper and it started leaking. like i cannot be mad because the guy was very kind and english was not his first language.",
+ "@tinkmasterg85 i liked it, but not for like a regular drink lol. it's way better than the \"move\" coca-cola flavor. the dr. pepper strawberry is my favorite, out of all the weird flavors i have found so far lol",
+ "@laythembare @victoria59l was diagnosed with lyme 5 yrs ago now & my gp wrote me off as psycho so found a naturopathic dr who correctly diagnosed me & offered homeopathic approaches. recently discovered cayene pepper is the bomb to treat so much incld pain. amazing what a pinch of it will do. prayers 4 u",
+ "@yourfrienddana dr pepper better atone for their sins bc i excitedly bought 2 and had to deal w drinking them bc i will not waste $4",
+ "kind lady at @wendys saw my mobile order, saw \"medium dr pepper\" and just grabbed a pre-filled drink and was about to give it to me\n\nbefore she could, i said \"no ice pls\" and she poured half of the drink out, and then topped it off\n\nlittle did she know, she put it in pepsi :)",
+ "no le gusta el dr. pepper?\n\ntriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flagtriangular_flag",
+ "@cottontailva @zentreya dr pepper floats are so good",
+ "@alphalari dr pepper https://t.co/zlejwwdz5y",
+ "dr pepper has a special place in my heart",
+ "@honeyyhope my mom said it was too sweet im not even trying slightly_frowning_face dr pepper strawberries and cream solos",
+ "@albheds plssss i miss their dr pepper shake sm + would kill for spicy ketchup",
+ "@elledeeemmm i'll have to try it again because i love strawberries and dr. pepper.",
+ "@mattgillard @edjgeek has contino stocked up on the diet dr pepper?? cup_with_straw",
+ "being good and drinking water smiling_face_with_tear i want dr pepper",
+ "@_joseolivarez i get a dr. pepper, something meaty/cheesy to eat, and go to a park and eat in a sunny spot. i try to give thanks for my blessings, too. it reminds me how good i've got it.",
+ "i was having a bad lunch but dr pepper made it better",
+ "@omni_american @arthurwatkins yes that's exactly how it worked in arkansas too.\n\nbut we'd say dr. pepper. lol",
+ "baby you see this, this shit is good tired_facesmiling_face_with_heartsloudly_crying_faceloudly_crying_face & i even like dr. pepper. they did they big one with this rolling_on_the_floor_laughingrolling_on_the_floor_laughingloudly_crying_face https://t.co/v56kestx09",
+ "beyond my missions and horrid attempts at being philosophical i just want a cherry vanilla dr. pepper.",
+ "you got me i blew dr pepper out my nose nose face_with_tears_of_joy https://t.co/tydz3jfihi",
+ "@nyannyanners can you get a few cans of dr. pepper beans pls?",
+ "i had dr pepper zero: strawberries & cream can of soda today and the aftertaste was exactly strawberries and cream. unnatural. an affront to god and man.",
+ "are you ready to rock? https://t.co/de21dfxgf1",
+ "@jreseawolf sending them by the dozen. empty can. but dr. pepper nonetheless. https://t.co/chzjgpitrw",
+ "@rayve_777 dr pepper cream soda is better",
+ "@broyoyoyojimjam fr fr i could use a big gulp filled with dr. pepper",
+ "dr. pepper ultimate gaming house season 5 when?",
+ "@chomppadub i drink my dr pepper and watch some art and i'm happy as a clam",
+ "@trevdon dr.pepper!",
+ "@bayutahful_wy @peaceloveutes dr pepper!!!",
+ "@cottontailva @zentreya dr pepper mentioned https://t.co/e3esfuac5h",
+ "@jaracelyx they went crazy with the cherry dr. pepper zero",
+ "@lanadlreyluvr11 try to have a serious conversation but there's dr pepper at the table",
+ "@booyouhoar4l i was not impressed. tasted like they just melted a strawberry candy into dr pepper. smiling_face_with_tear",
+ "don't trust people who don't like dr pepper confused_faceconfused_face",
+ "craving a dr pepper and a little snacky snack",
+ "@adamkoralik @pepsi @cocacola @drpepper the dr. pepper tastes like campino candies https://t.co/r5zvwn9pw7",
+ "currently researching making my music taste like dr pepper like i want the same neurons to fire off",
+ "@pieflingeryt3 @tangoix21 pepsi or dr. pepper those are my favorites",
+ "@brb_skywalking @lucentbeam my so does that with dr. pepper. think we can teach the ai to do it with different drinks?",
+ "@reggriffin dr pepper of course",
+ "@sillylilcalz @puke_princess_ diet dr pepper.",
+ "@kanakoumori favorite pop? mountain dew.\nbut dr. pepper is probably #2\nthat or vernors.",
+ "@dabbinbeebs dr pepper",
+ "@bobbybelttx easy it's coca cola. i know some will hate me but that is out of the 4 options that i think can be easily replaced with pepsi, dr pepper, fanta, squirt etc.",
+ "dr pepper is delicious, isn't it?",
+ "@strawbowo @yasuseyalose imma have to try that water face_with_raised_eyebrowface_with_raised_eyebrowface_with_raised_eyebrow i usually get a strawberry vanilla dr pepper or peach vanilla sprite",
+ "@trevdon dr pepper definitely",
+ "nope playing good in college and having a dr. pepper commercial are the only boxes that need to be checked off come on bro https://t.co/pc5xu39pfg",
+ "i can't believe i was a dr pepper hater for so long",
+ "@capaoculta pizza, pizza boys, natural 1's in seduction, dr. pepper",
+ "zoloft and dr pepper zero, what a combo",
+ "@trevdon dr pepper",
+ "@morgan_c_ross @ronfilipkowski really, jackass? and dr. jill biden is your doctor. she's no more a doctor than dr. pepper(soda, pop for you yankees)",
+ "artist jackson dean coming to dr pepper park https://t.co/1lfp7joopn",
+ "@cottontailva @zentreya hell yeah dr.pepper is awesome too!",
+ "@cybert0ri ya dr pepper. youll prob only take like 2 sips before its nasty again anyways",
+ "it's so good that dr pepper does flavor versions. i love that a soda is made of 23 flavors and sometimes they give it a 24th for fun.",
+ "@sadbeas i just fuckin love dr pepper face_with_tears_of_joy it's always been my number 1",
+ "friends! check out pepper perks. you can collect points for purchasing dr pepper and for doing other cool stuff. then you can then use those points to unlock sweet rewards. it's a real win, win. plus i win, too.\n\nhttps://t.co/xiyqzspnhc\n\n#drpepper #referafriend #referandearn",
+ "@noshster dr pepper is like all the spilled soda on the factory floor that they decided to bottle up and sell its fucking nasty",
+ "i normally don't fw with dr pepper, but ever since they came out with the strawberries and cream flavor i fw it more",
+ "i need a dr pepper or a coke",
+ "i got a bottle of dr pepper taken off me last away game (forgot it was in my kids bag) rolling_on_the_floor_laughingrolling_on_the_floor_laughing might go to an old firm game and take a rocket launcher in with me... https://t.co/ vnzmvjeqfl",
+ "i'm sorry but my vows. did not include sharing my mcdonald's diet dr pepper…. whose gunna break the news to my husband?",
+ "@jackiebee_16 @rayzk47 i can't believe dr. pepper isn't going to win it by a landslide.",
+ "i'm gonna bike and go@buy the diet dr pepper i'm craving it so bad",
+ "dying to for a dr.pepper and to get my toes sucked.. at this hour?! hot_face",
+ "@joeybagovdonuts my wife would say mr. pibb instead of dr. pepper. for me, it's poor servers. i get you hate your life but at least be polite.",
+ "@husbandogoddess does dr pepper count as a fictional character",
+ "@sillylilcalz dr pepper zero raising_hands",
+ "@joleneballardd uh oh, options have evolved... canned blue powerade or dr pepper?",
+ "@adamkoralik @pepsi @cocacola @drpepper i can't find the dr. pepper.... that peeps soda... idk....it tastes like sugar mixed with extra sugar and my body keeps saying no with each drink",
+ "the fat ass dr.pepper w. extra ice sounds fiya",
+ "@germainethoo that dr pepper zero should sort you through rolling_on_the_floor_laughing",
+ "@gisellegomez57 girrrrrrl, not the dr. pepper, i could never. ima say a prayer for you loudly_crying_face",
+ "@daresaypj you look great as always. i'd love to buy you a dr. pepper and hear all about your day.",
+ "can't believe some ppl will go \"oh i'm thirsty let me pick up my dr pepper\" loudly_crying_faceloudly_crying_faceloudly_crying_face",
+ "@lunchaballin and a large half dr pepper half hot black coffee",
+ "@lvlovely @trevdon i asked the lord to remove my desires/cravings of soda and sweet tea. i tried for a few years. and then one year, during a fast, the desire/cravings just stopped. praise god! it did take a while for my brain to catch up, though. my brain kept telling me that i loved dr. pepper… https://t.co/hgzozgylou",
+ "@trevdon dr pepper",
+ "dr pepper is so delicious!!",
+ "@dimmu141 bounty ja dr pepper ovat källä sadistin valikana. putinilla baisachten bunker full of molempia.",
+ "gave up drinking dr. pepper and i can't do this anymore broken_heart https://t.co/zb9fjwr7jf",
+ "@danceswithleos dr pepper",
+ "perfect selfie locations, yet a .75 dr pepper which includes a discount to not have to pay a big bank a .10 interchange fee is fucking marvelous.\n\ni got to write about my experience. i love it https://t.co/my2csppf6r",
+ "@adamkoralik @pepsi @cocacola @drpepper im willing to try dr pepper, not willing to drink coca 'sewer' cola n my life again xd",
+ "@mcdonalds new muthafuckn samuel jackson meal muthafuka comes with a muthafuckn deluxe qp burger with muthafuckn honey mustard dipping sauce, large muthafuckn fries and a large muthafuckn dr pepper to wash it down. just another muthafuckn regular meal with a muthafuckn celebrity name on it. https://t.co/nbn6hnonoe",
+ "@brokenoptics i will say this the dr pepper peeps are really fucking good. if anything try those out just to have it. they smell like dr pepper and they definitely have the taste of it. best thing is they are cheap",
+ "@jasperbeecrow dr pepper is so good its like coke but on crack cocaine /pos",
+ "i'm a diet dr pepper girl but for some reason a fucking diet coke would hit so hard",
+ "@exodus15_11 he was an awesome guy & yes unusual. i remember the first time i met him, he stole my can of dr pepper, he did buy me 2 more. he went to the same university as my mom.",
+ "hail lucifer 666 iam now drinking my 2nd bottle of dr pepper.",
+ "@trevdon dr pepper",
+ "i'm proud to be part of the dr. pepper scholarship giveaway. it's a great program that gives me the chance to brighten the day for some lucky college students with free tuition.",
+ "@reggiewebber dr pepper is literally made from the devil idk how y'all like it!!!!",
+ "mf could've dropped the dr pepper nah he gone drop the sprite i'm sick face_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy",
+ "thankfully i (mostly) stopped drinking soda a few months ago but dr pepper is so goooood i cant resist",
+ "a late night dr pepper hits way harder than it should",
+ "dit spul also net dr. pepper. face_savoring_food https://t.co/usun6rzi2n",
+ "@sarasewsidols i miss diet dr pepper so much. i haven't had it since september. and it's advised i don't have it going forward. anxious_face_with_sweat so i feel your pain.",
+ "@cnn so is this dr pepper zero?",
+ "@nothatsyou i'd ask if you've tried the dr pepper/cream soda mix. but it's not a diet! it's life changing good lmfao rolling_on_the_floor_laughing",
+ "@dr_cillo nala, pepper y cora https://t.co/kuh7g22t3p",
+ "@vvolfsxblood where is everyone finding the dr pepper broken_heart",
+ "i need a fountain diet dr pepper today.",
+ "@4millionmejayz dr pepper > water",
+ "@usedtobeeasier stop lying, dr pepper & fanta are one of the worst drinks ever",
+ "@cottontailva @zentreya i mean dr. pepper is damn good.\n\nbut as a shake... i don't know, that seems painfully american",
+ "i don't even like soda but why does the dr pepper strawberries and creme slap so hard",
+ "@michelle12marie i see the can of dr pepper baked beans i had my partner leave a few weeks back for the mothy one, have been reclaimed.",
+ "@ribiz14 attend pardon !??smiling_face_with_tear comment ne pas aimer le dr pepperloudly_crying_facesmiling_face_with_tear",
+ "when she shotguns a dr pepper and burps uncontrollably after smiling_face_with_heartssmiling_cat_with_heart-eyesheart_on_fire",
+ "dr pepper for breakfast, lunch and dinner zany_facezany_face",
+ "the little red riding hood from a 1984 commercial for sugar free dr. pepper! https://t.co/va9rzx8edi",
+ "12-pack dr pepper for $4.98!\n\nhttps://t.co/xqanwus9vi https://t.co/zuzdfihjmm",
+ "12-pack dr pepper for $4.98!!\n\nhttps://t.co/xqanwus9vi https://t.co/91qorf07ie",
+ "@alextaptiklis dr pepper !",
+ "@sportsbunni this was super gross, taste like someone poured a strawberry milkshake in my dr pepper",
+ "@drelidavid @getnotus pathetic. dr pepper",
+ "someone finished all of my dr.pepper https://t.co/suf6do6qfc",
+ "@louannelgw oasis tropical oasis pcf coca ice tea dr pepper selecto fanta tous les fous miranda",
+ "@mostcrucified the good dr pepper hath laid hands on you for the last time...",
+ "i decided to get mcd*na*ds breakfast because i'm starving and have a headache.\n\nthey were out of dr. pepper so i had to get coke loudly_crying_faceloudly_crying_faceloudly_crying_faceloudly_crying_face",
+ "@howdypricedw they got that nonsense everywhere but i gotta go to the one out of the way gas station for even a chance at s&c dr pepper. life ain't fair on that one.",
+ "horse_faceflexed_bicepscow_facecollision” dr. pepper\"collision\n•bull dogging horsepower•\n“blessed to win 4th in the average at @official_tucsonrodeo and get second in the short round with a 5.4, huge thank you to @trevernelson for the mount on dr. pepper and the haze!” - united_states kyler dick, prca steer wrestler https://t.co/rgi4uhal9r",
+ "@trevdon dr pepper on a normal day.",
+ "@averagexayah everyone assumes dr pepper is a man",
+ "@cottontailva @guccithemod hear me out dr pepper ice cream float.",
+ "@tsting18 he's the reason i can't wait to order a diablo sandwich and a dr. pepper!",
+ "me with dr. pepper https://t.co/pxrdnfkljh",
+ "@enbysolddawurld i rarely go to mcdonalds but when i do it's big mac fries and a dr pepper very standard",
+ "@waltbacon i'm more of a prozac and diet dr pepper gal",
+ "mcdonald's has been out of dr pepper for a week. i can't handle it",
+ "pads w. tax return w. might not have to close tonight w. diet dr pepper w.",
+ "@cottontailva @zentreya uh….. i like regular dr. pepper but a milk shake!? face_vomitingface_vomitingface_vomiting",
+ "@sweetazy16 sweet news pepper! dr pepper strawberries & cream has joined our permanent line of flavors in full force strawberryraising_hands",
+ "@trevdon dr pepper drooling_face",
+ "if dr pepper, can > 7/11 fountain > whataburger fountain > fountain > plastic https://t.co/a0ukk5jhxx",
+ "it's fun.\ndr pepper\nきゃなこさんさこんのムムレととご飯会とはは きゃなこさんなんのなんなたたたたなたたな",
+ "the cream soda strawberry dr pepper tastes like shit",
+ "@wxgeek love a dr pepper for real",
+ "bitch why a medium fry and a dr pepper $5 at bojangles… bitch i could’ve got a 4fo4",
+ "@reggiewebber i love dr pepper https://t.co/stp1ds15fw",
+ "@foxsane1 dr pepper",
+ "@chikn_nuggit if you do this at taco bell, it just ends up tasting like dr.pepper",
+ "@bcbrownell @patscurtins see that makes me sad as taco bell in aus has no dr pepper and mcdonald's in aus has just discontinued diet coke, get well soon too brad",
+ "hot dr pepper and bleached eyebrows",
+ "hot take, but this dr pepper sucks\n\ni should have just gotten a regular or cherry one instead. it tastes like someone poured that nesquik strawberry syrup into a regular dr pepper. not some of the syrup, the whole ass bottle. 2/10, hard pass https://t.co/95sarycomi",
+ "not that i'm impressed by small things, but last week i found out that a convenience store near my house sells diet dr pepper, and i've been riding that high ever since.\n(i've been mostly unable to find it for the past three years)",
+ "@trevdon dr pepper.",
+ "@iceewip not a fan of dr pepper but i'm intrigued for some odd reason",
+ "would suck fanny or knob for a dr pepper right now",
+ "is dr pepper also s/a/b/f tier?",
+ "dr. pepper cotton candy and death hickory sticks. https://t.co/hhxbqga0nz via @youtube",
+ "@partylextt_door it's orange soda ginger ale n this new dr pepper strawberry n cream idk wtf it is i legit hate soda",
+ "@scrigglyloser i've only had normal vanilla dr pepper also the strawberry one is so good man it's my fav bc it doesn't even taste like dr pepper lmaoo also you're probably right i do have a sweet tooth",
+ "dr pepper vanilla flavor my beloved",
+ "@dook_spook girlies love their dr pepper <3",
+ "@renatissu @o_mulu nenghum dos dois man, é uma track completa mesmo, uns 40min de archivo. eu achei algumas faixas que estão nessa track mas a maiorão não achei. o remix de dr pepper é gold demais.",
+ "@trevdon dr pepper",
+ "stocked up on the essentials before our big snow day tomorrow (hummus, sour gummies, and zero sugar strawberries and cream dr pepper)",
+ "s&c dp - tastes more like strawberry soda than dr pepper but it was fine\nrosalia coke - really good! not sure what the transformation flavoring is but worth the tummy ache for sure",
+ "drinking dr. pepper smiling_face_with_sunglassestired_facetired_facetired_face",
+ "i've searched for the strawberries & cream dr pepper for weeks and i finally found it just to be a little disappointed.",
+ "@smii7y y'all got dr. pepper? https://t.co/g9irsgbxjx",
+ "i might miss my flight because i just saw a whataburger billboard for a dr pepper milkshake. i don't know what that means but i need it.",
+ "@reggiewebber dr pepper is a heaven sent beverage, if they don't enjoy it… well guess where they're going!!!!",
+ "once daily dr pepper",
+ "strawberry dr pepper so good. it better be permanent got dammit",
+ "we love to hear it, barbara! thanks for your continued support and for giving our toasted marshmallow dr. pepper a try. hope we'll be seeing more of you around! https://t.co/62j3x2qnrt",
+ "@dingleaberry1 yeah i had a late dr pepper. i shouldn't have",
+ "@1kimmar dr pepper\ntriple whopper w/cheese\nhot dogs w/turkey chili and jalapeño mustard\npink stuff",
+ "@johnnygogo97 that is solid parenting. just reading this has me yearnin' for a diablo sandwich and a dr. pepper.",
+ "guys i don't need $15 for a dr pepper i am okay.",
+ "why did i just get lunch from mcdonald's and i asked for a dr. pepper and they gave me diet coke!!!!nauseated_facenauseated_faceenraged_face i whipped my car around so fast cuz ion even play like that!!",
+ "root beer and dr pepper face_vomiting https://t.co/ecasffuds4",
+ "@barnabasdull may in. but there's not much changing now for most of us. by the way, my favorite coke is dr. pepper grinning_face_with_smiling_eyes",
+ "@trevdon dr pepper",
+ "dr pepper is delicious, isn't it?",
+ "@dorsetquarrygal i also like dr. pepper.",
+ "@ribiz14 dr pepper ??relieved_face",
+ "@kvlliart i think my senses are coming back... gonna get a powerade hahaha. the excitement for the flavor of dr pepper will only last for a couple of hours confused_face",
+ "@thecowgoesmeme dr pepper dude",
+ "where's minecraft manhunt, but there's dr pepper @itsbubbo",
+ "@yourfrienddana i like it bc it tastes like strawberry fanta and dr pepper face_with_tears_of_joy",
+ "@sprouty278 i tried dr pepper the other day but it didn't taste good",
+ "@zackjewell @stexquisite @danihausen wait wait hold up false info dr pepper is bomb",
+ "@th3ag3ntzero i have yet to try the strawberries and cream dr. pepper. i can only find the 12pk of cans at walmart and i'm not that big of a soda drinker. tired_face",
+ "@weloveyouzahir quick dr pepper or coke",
+ "artist jackson dean coming to dr pepper park https://t.co/bcidwz8cah",
+ "this be someone of you dr pepper lovers fr https://t.co/lt2hkzbnrc",
+ "ugh, this baby said he wants me to drink a strawberry & cream dr pepper every night before bed face_with_rolling_eyes who am i to tell him no?!??!!",
+ "@nothatsyou we can still be friends! but i don't mind the flavored ginger ales. i'm just a huge dr pepper fan face_savoring_food",
+ "agreed. dr pepper haters need to grow up https://t.co/1tqeajqwxk",
+ "tired: dr. jekyl & mr. hyde\nwired: dr. pepper & mr. pibb",
+ "@drpeppermami1 @megaquack24 im glad because you have dr pepper in your @ so it would have been a terrible shame to not like you face_with_tears_of_joyface_with_tears_of_joy",
+ "@nfl_dovkleiman well if the nfl doesn't work out for him, he can get into acting. that dr. pepper commercial is tremendous",
+ "@stephenghenning ngl the dr pepper threw me. you've never mentioned the good doctor on @ravelpod",
+ "the strawberries and cream dr pepper has blessed my life",
+ "@janehalton sadly, diet dr pepper trumps dc. but somehow i forgot that. ugh. do i even know myself??",
+ "but i still want that dr. pepper lol",
+ "@ianriccaboni if you haven't, try the strawberries and cream dr. pepper",
+ "@lindyli resident biden. crushed in the 2020 election. lost by 50 million votes. electoral landslide.\n\nthe first lady, dr. pepper, stood by while pedo pete was molesting young girls & making shady business deals.\n\nfetterballs is not qualified to do anything.\n\npaul pelosi is also a criminal.",
+ "i mean... i'm down to try since its dr. pepper eyes https://t.co/11p3sg4rzb",
+ "(currently 4 pm and i've had a singular can of strawberries and cream dr pepper (it's not that good i prefer original or dark berry tbh (cream soda dr pepper is also ok i guess)))",
+ "@cathyunjln there is no fandom better than the dr pepper one. that is final.",
+ "got the dr. pepper from the circle k because i got an a on my political science midterm. i only take fucking fat ws.",
+ "that cherry dr pepper is foul",
+ "@trevdon dr pepper.",
+ "strawberries and cream dr. pepper…lol i’m on them bad weary_face",
+ "@trevdon dr pepper",
+ "@trevdon my one true love...dr pepper!",
+ "i try to avoid soda, but the new strawberries and cream dr pepper is incredible",
+ "@starhabitn dr pepper",
+ "the @crownroyal bottle tried to fool me. a little warm water and i was inside. never try to kill my #vibe #gm\n\nif i'm editing, i'm celebrating all my wins with a little drink treat.\n\ntoday is spiced rum and dr.pepper, but the crown crown is always a nice classic on the rocks.… https://t.co/yyquiioznv https://t.co/gelnf4kn7g",
+ "& that strawberries & cream dr. pepper...drooling_facered_heart in love!",
+ "@cobalt5900 @cnn i do the diet dr pepper also both about the same. is diet better for you than the zero?",
+ "@fujisawamatsuki dr pepper aka la meilleure boisson au monde (vive le cancer par contre haha)",
+ "i likely won't have time for a full nifty or thrifty on fantasy cup... just no time, sorry! but i'll try to hit the highlights.\n\nthen double iron bash melmetal shortly after.\n\nthen i can breathe a little and work on color cup and the two new elite raid regis.\n\nsend dr pepper. hot_face",
+ "life without dr pepper isn't worth living",
+ "@algetzwrestling lucky. i'm trying to find the dr. pepper flavored peeps https://t.co/wqwr8h1o1d",
+ "@lesbiansoyoon it's saurrrr good! if i'm ever having a fizzy drink it's gonna be a dr pepper no matter what. sore throats from it sounds like a nightmare tho t_t",
+ "@cam__cady i just like trying the new flavors on the mountain dews so i figured fuck it why not but i've heard mixed reviews on the dr pepper one so far",
+ "@cheswho diet dr pepper really is the goat",
+ "@planet_sprout coca cola is top too\nthen dr. pepper face_with_peeking_eye",
+ "i need a dr. pepper or i might die",
+ "@eatiingnjrnal monster ultra fiesta mango and maybe dr pepper zero sugar grinning_cat_with_smiling_eyes",
+ "@cottontailva @guccithemod have you tried dr pepper float but with irish cream liquor and heavy cream?",
+ "@rb2m94 if you feel thirsty you're already dehydrated. i was on all water or unsweetened tea, but i go to texas frequently and i drink soda on the plane. ten days later i'm addicted again to diet coke and diet dr. pepper.",
+ "american friends. please can someone send me dr pepper strawberries and cream?! i'll pay for the shipping",
+ "this dr. pepper strawberries and cream is giving me life",
+ "still no strawberry dr pepper or cursed yellow pepsi but i did finally find the non-zero version of this bullshit https://t.co/jnvkboohwa",
+ "@trevdon dr pepper",
+ "@billy2kid45 i'd arrest you just for\neating salmon but to do it on\ntaco tuesday\nthat's like...\ni have no words...\ni thought i knew you...\ni've got to go & drink\ndr pepper or 2\ni may have to lay down",
+ "mixing lacroix lemon and diet dr. pepper. la pepper",
+ "what if dr pepper was a teacher\n\n@hailieie @aryannahaha",
+ "i started buying dr. pepper solely because of that old lady who outlived her doctors lmaooo",
+ "@myfunkystudent yeah can i get a dr pepper",
+ "@bbctheoneshow look at the lid on the dr pepper drink https://t.co/u9piuyhtqt",
+ "the stars say i'm gonna be sponsored by dr pepper this week trust https://t.co/xw94mihrkv",
+ "@jferg52 looks good except for dr.thunder, i have to have dr.pepper rolling_on_the_floor_laughing",
+ "i need an iv of dr. pepper",
+ "ummm..that dr pepper strawberries and cream…that bitch a winner loudly_crying_faceloudly_crying_face",
+ "based on the fact that i have nothing to lose, let's see what @elonmusk is made of.\n\ndr. pepper... what's the worst that can happen... other than him saying no face_with_tears_of_joyface_with_tears_of_joyrolling_on_the_floor_laughingrolling_on_the_floor_laughingface_with_tears_of_joyface_with_tears_of_joyrolling_on_the_floor_laughing https://t.co/v3geoblyxv",
+ "@lezbiigaming dr pepper 100%",
+ "dr pepper https://t.co/ao3ctrrg4f",
+ "@realityanthony @itsbubbo minecraft manhunt but anthony is the dr pepper twist",
+ "@corwininvegas if i still drank soda & actually liked dr. pepper, i would try that in a heartbeat! i love strawberry & cream flavored things! smiling_face_with_hearts is there a single bottle you can buy to try before you buy a whole pack?",
+ "@trevdon dr pepper. because that doctor is spicy!",
+ "@karimonstertx good fuel right here during storm chases, caffeination. (dr. pepper) https://t.co/oywk5jpbey",
+ "crane operator bought me dr pepper & purple skittles smiling_face_with_heart-eyes love when they pay attention in the right ways",
+ "@goldblooded79 ribeye steak, cheese, dr. pepper",
+ "@scrigglyloser im sorrry i love flavored dr pepper but normal is just icky its like syrup gone bad",
+ "ordered the dr. pepper https://t.co/6flgix71ib",
+ "@dzejkinnie dr pepper is straight on the bus",
+ "honorable mentions: crispy dr pepper & spicy sprite, both from mcdonald's",
+ "me one day no dr pepper https://t.co/eowwagu76m",
+ "@richcoastrican i see it for sale at the store where i work, and not once have i bothered to try it. which is saying something, because i tried the strawberries and cream flavored dr. pepper. anything involving marshmallow peeps i actively avoid.",
+ "@forestkidx can i get two medium pan pizzas with extra cheese extra sauce, order of cheesy bread, a dr. pepper, and a cumshot",
+ "@drpepper iam drinking a dr pepper. i made a twitter video of me drinking a dr pepper check out my tv the past 24 hours.",
+ "@reggiewebber dr pepper is what i think puddle water tastes like",
+ "i need a break - so i will not be drinking strawberries and cream dr pepper from february 29-31 strawberryweary_face",
+ "dr pepper is disgusting",
+ "dr pepper strawberries & cream zero sugar: hot damn that is great beverage",
+ "imagine if i made a dr pepper knockoff dating sim. haha. that would be stupid. no way i'm doing that.\n\n...unless? eyes",
+ "nothing better than an ice cold dr pepper <3",
+ "@reggiewebber me reading this while drinking dr. pepper. the universe is speaking to me through reggie…. i'll allow it.",
+ "i either put too much dr pepper syrup in this or i just don't react to the taste of alcohol anymore.",
+ "@pr_harrell tell em! found out i have to add dr. pepper to the list.. https://t.co/icjqqwdboz",
+ "@killlurdarlings what is it that dr. pepper tastes like because i've been too scared to try it?",
+ "@smivadee i mean there's also food, water, housing, and dr pepper but you don't see us commenting that on every youtube video in existence upside-down_face",
+ "@cassand70783633 i honestly think dr. pepper and pastor cal need a break. lifetime got them cranking these seasons out like clockwork.",
+ "@trevdon i don't usually drink soda, but dr pepper if i had to choose.",
+ "@myokaga @havenily @6lumi @wristmeatrazor dr pepper beans",
+ "@averagexayah dr pepper is a woman",
+ "@trevdon dr pepper",
+ "@butchbaseball29 cheetahs eat raw meat and drink water…they don't eat french fries and drink dr. pepper. thinking_face",
+ "@pixelpawn23 coke ***or*** pepsi\n\ndr pepper isnt in the running cus its objectively the best",
+ "@vvolfsxblood wait!! they still have that flavor dr pepper available?? where?!?!",
+ "i don't like dr.pepper, but i didn't find it, but i found it yesterday.",
+ "i have to be the most mysterious, stoic one at the qfc (buying the strawberries and cream dr. pepper)",
+ "@scoobydouchebag holy fuck that looks disgusting. i wouldn't have been able to resist trying either tho. try the strawberry dr pepper, it's good",
+ "@edjgeek @slsdaysanz we do have dr pepper in australia right???",
+ "do you remember... jello-pudding pops(chocolate, vanilla, chocolate/vanilla swirl), peanut butter boppers, pac-man cereal, ecto-cooler, magic and mini middle cookies, jolt soda, dr. pepper gum, hawaiian punch gum, bar none candy, tato skins chips, planters cheese balls... https://t.co/dfo6riy05y",
+ "@shafzc dr pepper >>>>",
+ "@kanakoumori @wynn_vt kana i'm about to throw hands, how dare you slander dr pepper like this",
+ "for every $1-$5, i'll be a good girl and drink water but better hurry up! i'm craving some more dr. pepper!",
+ "once i mix my dr pepper & red bull, move tf out my way…",
+ "@cottontailva @zentreya dr. pepper is just spicy barbecue water.",
+ "@yourfrienddana ok thank god because i also didn't like it at all and i love dr pepper",
+ "once daily dr pepper",
+ "@proudincel dr pepper is better",
+ "the fact that i rode around looking for a dr pepper just nowface_with_tears_of_joy",
+ "when i'm at work all i think about is dr pepper zero :/",
+ "once daily dr pepper",
+ "it had to be said….. zero sugar strawb dr pepper tho….. she’s my girl",
+ "@trevdon dr\npepper",
+ "\" i got nurse pepper by now because the dr. had left the building \" face_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy",
+ "@trevdon dr pepper!!!!",
+ "@killlurdarlings yea the dr pepper strawberries and cream changed the game!!",
+ "soyfacing at the artisan soda dr pepper knockoff that is doctor + my last name https://t.co/3rsl2uricu",
+ "dr pepper is so delicious!!",
+ "i just chugged a dr.pepper adn now i'm on my way to school",
+ "@danceswithleos mr pibb all the way, but i'll settle for dr pepper if they don't have it",
+ "my wife loves dr pepper. i bought her some dr pepper strawberries and cream today. i hope she likes it.",
+ "@yuricannawt omg i gotta try that i've never seen dr pepper zero surprisingly",
+ "i haven't had soda in so long but negl i would risk it all to experience a crisp dr. pepper rn",
+ "the strawberries and cream dr pepper is incredible red_heartsmiling_face_with_heart-eyessmiling_face_with_heart-eyes",
+ "@razziesaldana i know, i understand.\nit's the best tasting caffeine free diet soda. if i don't want caffeine free, then i like cherry coke zero or diet dr. pepper.",
+ "@trevdon dr pepper",
+ "@kondohi dr pepper-like flavorgrinning_face_with_smiling_eyes",
+ "@ronfilipkowski sidney's just mad her 15 mins were up about half an hour ago. and dr pepper never called her back. https://t.co/kuumgj73ef",
+ "dr pepper is one of my fav pops..then strawberry fanta",
+ "@tiffmhardy for me it's dr pepper strawberries & cream zero sugar. 130pm every day",
+ "@_clarkekent i feel the same about soda (diet coke and dr pepper specifically), pizza hut, and eckrich farm polska kielbasa. i love mcdonald's and live a block away from one, but i never go. i think it's body image related more than anything. it's so much fun living in this society of ours!",
+ "i'm on my second bottle, not can, bottle of dr pepper if that's any indication of how my day is going today.",
+ "@nxtstopjewelave the raspberry cookie? you have the taste buds of a 75 year old woman. & you drink dr. pepper. i want better for you friend.",
+ "@scrigglyloser it definitely tastes sweeter than normal mt. dew but i like it a lot although you might not trust my opinion bc i hate dr. pepper tot",
+ "vod\nn\ndr pepper\nfeelin holy abit of sinatra\nooooo",
+ "this chick just opened a dr.pepper in class and i've never been more jealous",
+ "artist jackson dean coming to dr pepper park https://t.co/cnvtuy6dno",
+ "@lunarontwt i need this dr pepper bottle wtf",
+ "dark soda will break me out but i want to try that strawberries n cream dr. pepper",
+ "@trevdon pepsi for sure. my 2nd choice would be dr. pepper.",
+ "@b_meredith11 dr. pepper is good. ice cream is also good. don't ruin them both for meloudly_crying_face",
+ "@sharkandpelican oh my god what? i love you guys and dr pepper so much.",
+ "why this lady dropped me off a dr pepper ugh this is disgusting",
+ "@naynay954 girl… jimin and dr pepper hater one struggle at a time please i'm busy",
+ "mido ocho latas de dr pepper\n date by angelthumbs_up",
+ "@jgaribaystyle you should try dr pepper strawberries and cream",
+ "who will win a: bottle of dr pepper or two benadryl ??",
+ "21. dr. pepper, apple juice or pepsi relieved_face",
+ "i sleep with a cup of dr pepper next to my bed for when i wake up at 4am everyday and it makes me a little less depressed every time",
+ "@scrigglyloser i'll def try it bc it does lowkey sound good also you like dr pepper plain that's already wrong therefore you can't always be right firefirefire",
+ "some people have been saying behind my back that i have not been enjoying my nightly diet dr pepper. i would like to dispel those rumors and set the record straight",
+ "@dr_doreeeeenn tech lecturers go show you pepper",
+ "@drpepper check out this 8th grade construction class project some of my students are working on. they color matched and bought paint on their own to honor our love of dr. pepper.\n\n#tradesrock! https://t.co/c99h9qmeor",
+ "i present to you knockoff but hunky dr pepper https://t.co/d1x276etli",
+ "things i may have suggested trying, which emily thinks would probably get me barred from the country permanently: 1. microwaving a dr pepper, 2. asking a conbini employee to heat up a dr pepper. but it was almost cold enough to want to try it.",
+ "@oddtlsm probably not get me a dr pepper while ur there",
+ "@deaflibertarian not anymore. but the dr pepper shake is awesome.",
+ "@0xgaut maybe they have a lobby with some pay phones. cigarette machine maybe a dr pepper machine i'm in!",
+ "finally found a strawberries and cream dr pepper and it is amazing!!",
+ "@luvaiura u like dr pepper. please pipe down.",
+ "@tiamataralu it's not for everyone, i like it, but i also love cherries and that's one of the main flavors in dr.pepper",
+ "@reggiewebber i don't know why folks hate dr. pepper. i literally drink it everyday. face_with_steam_from_nose",
+ "i just received a gift from fellow addict via throne gifts: cherry vanilla dr pepper 12 oz cans 12 pack 144 oz by dr. pepper. thank you! https://t.co/lwhixed8ka #wishlist #throne https://t.co/pi5jghkbzh",
+ "dr pepper is always there when i need it red_heart",
+ "@danel_pastel6 dr pepper over hated shits fire",
+ "@dr_nuellie_ flushed_faceeyes where have you been all this while my dear! konkonte aka lapiiwa aka face the wall aka opolats3, eat with ab3nkwan it's great with nkatenkwan is super or okro soup without oil but also try with pepper & abobi aka keta sch boys winking_facewinking_face thank me later. its a life saver grinning_face_with_smiling_eyesgrinning_squinting_faceface_with_tears_of_joy",
+ "@edjgeek @slsdaysanz @developersteve @mattgillard @walmsles should be good practice for fending off teenage boyfriends, then. thumbs_up_medium-light_skin_tone\n\ndid i mention they go psycho when they smell dr pepper? face_with_tears_of_joy (the drop bears, that is. though maybe the boyfriends do, too.)",
+ "@scribd wow that has never been a problem for me. i was born with a little golden book and a dr pepper in my hand. of course i was totally blind at the time but i still loved books from the beginning and that has never changed.\ni hope this article will help those who need guidance.",
+ "shut up, im trying to recover from learning that there's someone who would drink dr pepper with me, pray cry, give me a sec",
+ "i'm not even a huge soda guy but i've consumed so many cans of strawberries and cream dr. pepper the last few days",
+ "i have to be satisfied i was faithful to being straight edge on a fist with nothing but a line of bc powder and dublin dr. {pepper. do you even know what it is?\n\ni really have to be satisfied the gang rape is egoist. i know where i can be raped for a 30,000 a year salary/wage",
+ "@trevdon dr pepper",
+ "@lilahington freddy's #2 bacon double cheese burger combination with onion rings and diet dr. pepper and spicy fry sauce",
+ "@amoloschilakile con una dr pepper de litrooooo",
+ "me to dr. pepper https://t.co/dvkdvftja4",
+ "@wormxboy @samantha__rene i cannot have another dr pepper conversation today",
+ "@lextaliones_ dr pepper cream soda is also really good!",
+ "gonna walk to 7/11 and get another dr pepper strawberry and cream and drink like 1/4 of it and feel like this",
+ "@belledhee @folarin_aa @lovaboi_flo1 the guy dey show me pepper presently.. dr. adeleke",
+ "@capaoculta dr pepper x4",
+ "strawberries and cream dr pepper such a sweet treat",
+ "@chupigator nah, spike would definitely be a dr pepper enjoyer",
+ "@protvsports @vinnybonsignore and you also have to factor in the players the raiders are able to add or keep from the cost savings gained by replacing carr with a rookie. it doesn't make you like dr. pepper or mr. pibb better. it's do you still want dr. pepper when it costs 4x as much?",
+ "@ne0ntre_ @_shiftyrezz nigga tb he there for the dr pepperface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joyface_with_tears_of_joy",
+ "more like coca cola and dr pepper https://t.co/uyrogxvyyr",
+ "@ziggah but can you help yourself from having a cold dr. pepper",
+ "@ripannabell if you choose to drink diet or zero sugar anything and you're not diabetic or it's not diet dr. pepper. what the fuck is wrong with you?",
+ "@goldblooded79 strawberries and cream dr. pepper",
+ "@hoobuhjoo 100%. that could totally be it. we do good tea here. face_with_tears_of_joy i'm always drinking the same things. i swear our sugar content has been reduced in dr pepper. weary_face i need to try us fanta. it's okay in the uk but most of them are zero sugar.",
+ "@tryhardtristan not enough dr. pepper",
+ "@adamkoralik @pepsi @cocacola @drpepper no, but i like the dr pepper cream soda variant",
+ "i'm back! dr. pepper peeps, kettle corn peeps, and a fun party game idea! https://t.co/i5vzi5mprr",
+ "@kanzaklsouma dr pepper is so good",
+ "@porxis good afternoon\n\nif the person who made the image can't help himself from having dr. pepper, he might have a caffeine addiction, which kind of goes against the point he was trying to make nerd_face",
+ "@daily_jk97 dr pepper\n\nvote #leftandright for #bestmusicvideo at the #iheartawards",
+ "@obvious_shirts i live in arkansas. it's all coke to us? wanna coke? yes. what kind? make it a dr pepper. smh",
+ "i just want one dr. pepper strawberry and cream. i don't want to buy the whole case loudly_crying_faceloudly_crying_faceloudly_crying_faceloudly_crying_faceloudly_crying_face",
+ "okay but that strawberries & cream dr pepper is also goooood",
+ "@_relaxbro ngl dr pepper clears for me https://t.co/rhdgwmo0dj",
+ "@iancopeland5 @mattwalshblog dr like jill biden and dr pepper ,lmao",
+ "12 pack canada dry ginger ale, dr pepper cherry, or dr pepper soda cans only $4.73 – $4.98!\nhttps://t.co/v9j3jltekj",
+ "*turns you into dr pepper* — yummy!!!! https://t.co/xhbljwm54j",
+ "dr pepper has my heart",
+ "@killlurdarlings i normally don't like dr pepper but i bought the pack bc they didn't sell individually and i am ripping thru them",
+ "not sure if this is a controversial topic or not, but the new strawberries and cream dr pepper is overrated.\n\ncan't fuck with a classicrelieved_face",
+ "@dubbyenergy dr pepper cream soda flavor",
+ "@patscurtins i am a rare taco bell enthusiast who does not enjoy baja blast.\n\ntrad mtn dew is fine, but the real goat is dr pepper. taco bell's dr. pepper is analogous to mcdonald's diet coke. they got the mix so right.",
+ "@carlid23 i almost tossed out soda instead of fries. but then i realized how much i enjoy diet dr. pepper and mixed drinks.",
+ "@aarxn82 the only new flavored soda that i tried that was actually any good. *i don't actually drink soft drinks that often* was the dr. pepper strawberries and creme one.",
+ "the strawberries & cream dr pepper woozy_face",
+ "hail lucifer 666 my dr pepper. https://t.co/zhmqcvqlsl",
+ "i want dr pepper cold not shaken but damn well stirred oh please have a seat guest i changed the locks now there is no way of leaving this place so make yourself at home i have idiots with no escape to kill and places to go especially those i cant stand to be in company locked https://t.co/zb9lh6n8as",
+ "ive been getting the dr pepper bbq from sheetz since like 2016 and every time, i forget its spicy ? like why",
+ "reviewing where to find audiobooks with classes today when i discovered this book on sora. wow! 1904 olympics - the 1st in america - was a killer marathon! the world's fair (also in st. louis) gave us the first dr. pepper, ice cream cone, and hot dogs! thanks https://t.co/ex3djdinna",
+ "whipping out the ol' capital one for this one, boys! it'll fit perfectly in my 2001 honda accord le with beige interior. should offset the stained seats nicely. the dr. pepper stained cupholders won't know what hit em. consider the sagging headliner complimented. https://t.co/0cq15i2bhc",
+ "i once drove away from a wendy's drive thru when they told me they didn't have dr pepper.\n\nit was at the end of one of those kind of days and it was the third consecutive time i'd gone there and they didn't have dr pepper. i hate coke and was tired of sprite. https://t.co/okxpfyzthj",
+ "@hlkbstr @gaghyogi49 better than dr. pepper.",
+ "i'll take \"signs of the apocalypse\" for $1,000, alex.\n\na friend just posted on fb that she saw a store display of peeps-flavored pepsi.\n\nand a commenter posted a pic of dr pepper-flavored peeps.",
+ "drinking a dr. pepper and it's delicious.",
+ "@chzplzz @nan_dre_ i read this as 'dr. pepper deep fried pizza' and i almost threw up lmao",
+ "@adamkoralik @pepsi @cocacola @drpepper the dr pepper is okay but the peepsi is bleh!",
+ "@softapocalypses strawberries and cream dr. pepper and funnyuns",
+ "@jennaellisesq @justinpetersmin would you criticize me for going to buy a delicious dr pepper 9 hours away when i had some in my fridge?",
+ "@nasiiaaaaaa_ you love that dr.pepper",
+ "i'm at dr. pepper star center in euless, tx https://t.co/sf6fcmsx9s",
+ "@moronic_mouse out of curiosity, what do you think of the cream soda dr. pepper flavor?",
+ "@raphousetv2 oatmeal crème pie, doritos and dr pepper/ or a/w",
+ "@coziiie i miss dr pepper",
+ "lemme tell y’all something whataburger did not miss on that dr. pepper shake",
+ "@dabbinbeebs i just want some dr pepper to drink. i tend not to snack much.",
+ "@nascarcasm @dangermccann43 gir walmart for the dr. pepper and hot tamales ones. i bet they go up quite nicely.",
+ "@itsmarciwuuu dr pepper",
+ "@noah2016 @raphousetv2 dr pepper, you make my world taste betta",
+ "@steelydanz1g @wormxboy @samantha__rene someone said dr pepper eyes",
+ "@oliver_joyce hit me with that dr pepper goodness.",
+ "i can't believe i didn't like dr. pepper face_with_tears_of_joy",
+ "@defyfly @a_dmg04 now that strawberry and cream dr. pepper. that's a game changer",
+ "i want dr pepper",
+ "it's like if you soaked a strawberry in dr. pepper like a rum ham https://t.co/viqyiqgt6p",
+ "dr pepper full printing hawaiian shirt - red\n\n#hawaiianset #hawaiianshirt #hawaii #holidays #sports #gifts #summercollection #senprintmart\nsenprintmart store\nhttps://t.co/q2use0gsim",
+ "dr. a's health tip for the day man_teacher_medium-dark_skin_tonebrainthought_balloonkeyclosed_book\n\nfight inflammation and build up your immunity by including these spices in your meals:\n\nspeaking_head\n\n• black pepper improves brain function and reduces inflammation in the body\n\ngarlic garlic boosts your immune system and reduces blood pressure",
+ "@pr_nsfw they got it right down to the dr pepper\n\nthe bong is so pretty and i don't even smoke",
+ "@birdeighs i'm more excited for the dr pepper in there",
+ "i finally found the strawberries and cream dr pepper and just tried it…… i'm obsessed guys its soooo good",
+ "@tiamataralu how fooken dare ye, dr pepper is a blessed drink, ye can have a party without",
+ "@siberian_allen dr pepper? уважаю! grinning_squinting_faceok_hand",
+ "@jackiebee_16 kangaroo court i demand a recount dr pepper was robbed",
+ "@tabbiewolf ok, tried one today. definitely cinnamon, but not the hot cinnamon of candies. it's got the same flavor, but not the intensity. not bad, actually.\n\nstill need to find the dr pepper ones.",
+ "post sponsored by dr pepper",
+ "@az_brittney dr. pepper is more than a doctor!",
+ "@mcnasty @sogrizzy i'll drink other pops like pepsi or coke if there's no dr pepper but other than that it's all i drink lol",
+ "dr. pepper from mafs looks like she got buccal fat removal worried_face",
+ "this doordash really brought me dr pepper instead of lemonade. now i gotta dispute the whole order face_with_tears_of_joy",
+ "@koaabyss i bought zero sugar of dr. pepper strawberry and cream the other day",
+ "dr. pepper & cream soda: 4/5.\n\ndr. pepper strawberries & cream: 5/5.\n\n@anneyreese @grammarmonkey @benbowlinhsw #snackstuff",
+ "@blcknwhtefilm im actually gonna block you if you ever diss dr pepper like that again",
+ "@emywinst i trust dr. dre, dr. seuss, and dr. pepper more than dr. rand paul.",
+ "@steelydanz1g and i got a fresh dr pepper, we gonna be ok",
+ "@jwilliamscincy @johnfayman i wrote this tweet before i knew you stole my dr pepper zero. @charlieg__ may want to ask you about a sandwich...",
+ "@trevdon dr pepper",
+ "@cronistadelmame como dr pepper con cereza-fresa, cochinada",
+ "dr pepper strawberries & cream drooling_face",
+ "what the most 'cas' journal he could think of would be. 'what is cas core' if you will\n\nthis man has known me for almost 7 years! he said the bottom needs to be bob ross style mountains/nature scene. but instead of sky, it needs to be dr pepper (red with the logo ya know)",
+ "@blcknwhtefilm like my diet dr pepper tastes the same as a normal one okay?",
+ "coke (pepsi max) for me\ndr pepper is probably the next best imo https://t.co/azcdcil1vo",
+ "@rtoxiea plus fuck coke, dr. pepper only>smiling_face_with_sunglasses",
+ "there's no better community than the dr pepper community red_heart https://t.co/o4zatjcqji",
+ "fuck i love dr pepper https://t.co/v1ljljfodr",
+ "me and a cherry vanilla dr pepper against the world",
+ "water\ndr pepper\njisu https://t.co/6knzicjlky",
+ "that dr pepper prob went so crazy bro https://t.co/feggnrtqvn",
+ "the dr pepper museum in waco has reopened its historic bottling room with a revitalized exhibit that explores the lives of those who worked at the plant between 1906 to 1962. https://t.co/zb1uavtoap",
+ "on a hunt for dr pepper strawberries and cream & i'm at my 5th store loudly_crying_face",
+ "@africainlaurent @damienrieu @nuneschr @carrefouractus @carrefourfrance @carrefoursav et les français reconvertis ils ont été importés? t'as cru c'était des canettes de dr pepper a la vanille?",
+ "still drinking my mom's boyfriend's dead sister's diet dr pepper",
+ "@ddlcgreenorb \"yeah... no need to be shy, my friends! my house is your house.\"\n\nwell, technically that isn't a house but they understand-\nhe drinks a bit of a cold dr. pepper as he sits on the individual couch.\n\n\"there are lots of drinks in the fridges so you guys take anything you want.\"",
+ "@lillibuggxx currently washing down an italian sub with a strawberry dr pepper at almost 12 p.m.",
+ "@bbeartheancient @scoobydouchebag @phoenix_issuant i rarely drink soda anymore, so almost anything is a treat!\n\ni'm still on the hunt for the new strawberries and cream dr. pepper\n\n(sounds terrible, btw, but what is life if not a chain of experiences?)",
+ "this strawberry & crème dr pepper good asl",
+ "my sister's view from her new job at dr pepper. @drpepper @dallascowboys @cityoffriscotx #frisco #cowboys @eliuep86 https://t.co/i2yieh5fbo",
+ "@shweebe take out beer and tacos or cake i need my diet dr pepper",
+ "i don't really drink soda and haven't bought it in years but just saw a dr pepper ad and was like damn that looks good maybe i'll get some and check the grocery app. it's $7 for 12 cans of soda???? when did it get so expensive?? this is a wildly expensive beverage, no thank you",
+ "@clippergirl21 if you mix with dr pepper it tastes like reeses apparently",
+ "a personal favorite from my @etsy shop https://t.co/of4q35jhvd",
+ "i hate \"i don't drink soda\" ass bitch grow up dr. pepper is that girl",
+ "ive never tried any of the top ones cus we dont have those but i like doritos and coke/dr pepper https://t.co/xhyfzlwqbc",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "0_dr_pepper_the",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "0_dr_pepper_the"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 12.21475,
+ 14.274726,
+ 14.14739,
+ 12.239513,
+ 10.109165,
+ 12.1664295,
+ 13.202505,
+ 13.606084,
+ 14.437839,
+ 9.657611,
+ 11.79446,
+ 12.046505,
+ 9.959144,
+ 13.434835,
+ 12.090103,
+ 13.363988,
+ 9.76723,
+ 14.095166,
+ 15.650383,
+ 14.524627,
+ 12.509194,
+ 13.809421,
+ 9.574029,
+ 14.140454,
+ 10.852147,
+ 9.819592,
+ 12.039841,
+ 12.718919,
+ 12.184309,
+ 13.16369,
+ 14.452435,
+ 12.562372,
+ 13.824081,
+ 11.97796,
+ 13.6641445,
+ 12.460206,
+ 12.016955,
+ 14.6725025,
+ 12.410338,
+ 12.903568,
+ 13.999195,
+ 13.062557,
+ 13.702067,
+ 11.081417,
+ 14.454273,
+ 13.01709,
+ 13.847796,
+ 3.5657878,
+ 12.432955,
+ 11.657663,
+ 12.696208,
+ 10.466809,
+ 10.319798,
+ 14.4834585,
+ 12.481958,
+ 13.656694,
+ 9.736243,
+ 14.227507,
+ 13.626146,
+ 13.878929,
+ 12.599209,
+ 12.578523,
+ 11.706321,
+ 9.734841,
+ 12.096512,
+ 13.586783,
+ 11.175572,
+ 10.453429,
+ 10.032617,
+ 12.466208,
+ 11.683399,
+ 11.922192,
+ 13.923501,
+ 12.95221,
+ 14.106525,
+ 11.202427,
+ 12.218845,
+ 12.616919,
+ 11.960896,
+ 13.659768,
+ 12.51169,
+ 12.732487,
+ 11.559879,
+ 13.729575,
+ 14.090414,
+ 13.935551,
+ 12.904746,
+ 13.706553,
+ 14.147269,
+ 11.366993,
+ 13.361245,
+ 14.318822,
+ 13.171533,
+ 14.236424,
+ 10.443488,
+ 12.219704,
+ 14.093945,
+ 10.592754,
+ 10.817322,
+ 14.403838,
+ 13.889903,
+ 11.241364,
+ 13.781812,
+ 9.96372,
+ 14.585165,
+ 10.43355,
+ 14.191783,
+ 12.175574,
+ 10.521483,
+ 14.080598,
+ 9.735935,
+ 13.284925,
+ 11.48331,
+ 14.227032,
+ 14.064421,
+ 14.296645,
+ 12.976722,
+ 12.42111,
+ 10.917592,
+ 12.145922,
+ 13.677594,
+ 9.862185,
+ 12.962295,
+ 11.977743,
+ 10.913621,
+ 13.749031,
+ 9.926053,
+ 9.789963,
+ 12.725815,
+ 14.145432,
+ 9.939481,
+ 14.145687,
+ 14.050909,
+ 10.385916,
+ 14.119641,
+ 14.359217,
+ 14.442303,
+ 12.330544,
+ 13.316772,
+ 13.9441395,
+ 15.712972,
+ 15.689518,
+ 9.651487,
+ 13.076887,
+ 13.580868,
+ 13.662055,
+ 13.476361,
+ 11.213218,
+ 12.417334,
+ 12.934039,
+ 15.604231,
+ 14.447868,
+ 13.261455,
+ 10.180089,
+ 13.891362,
+ 12.697264,
+ 14.236683,
+ 11.940235,
+ 13.8686075,
+ 11.770143,
+ 14.27154,
+ 13.777135,
+ 13.979323,
+ 9.760874,
+ 11.960091,
+ 11.596088,
+ 13.336657,
+ 11.574119,
+ 11.120688,
+ 13.74742,
+ 14.366274,
+ 14.327269,
+ 9.873124,
+ 13.721763,
+ 10.137851,
+ 11.51985,
+ 11.387238,
+ 14.198377,
+ 14.28668,
+ 12.803465,
+ 14.357911,
+ 11.506732,
+ 10.0388565,
+ 12.40017,
+ 14.068169,
+ 14.471515,
+ 14.236314,
+ 15.631875,
+ 14.00138,
+ 11.290676,
+ 11.803465,
+ 13.66825,
+ 14.381176,
+ 14.313285,
+ 10.155793,
+ 13.769728,
+ 13.502718,
+ 13.22698,
+ 12.239856,
+ 13.750209,
+ 13.233219,
+ 12.342577,
+ 11.830227,
+ 13.820934,
+ 9.583545,
+ 12.565861,
+ 14.30865,
+ 14.154537,
+ 11.263019,
+ 9.995417,
+ 10.565014,
+ 13.855924,
+ 13.89951,
+ 13.926009,
+ 11.003651,
+ 12.664931,
+ 15.427618,
+ 14.548221,
+ 12.541347,
+ 13.871307,
+ 9.743331,
+ 14.437728,
+ 12.435009,
+ 12.897851,
+ 9.677806,
+ 11.822019,
+ 14.49583,
+ 14.538533,
+ 12.857238,
+ 13.783029,
+ 12.883039,
+ 12.2007,
+ 14.30354,
+ 12.507996,
+ 14.174735,
+ 13.849409,
+ 13.015451,
+ 10.166073,
+ 13.214205,
+ 9.699306,
+ 10.934365,
+ 10.715776,
+ 11.15181,
+ 10.893652,
+ 14.363991,
+ 11.694261,
+ 12.484581,
+ 10.913649,
+ 12.555246,
+ 13.0852785,
+ 13.050365,
+ 12.953784,
+ 10.500072,
+ 14.416707,
+ 13.714339,
+ 11.05367,
+ 9.982667,
+ 9.948016,
+ 11.917852,
+ 11.393814,
+ 9.620732,
+ 11.317726,
+ 14.346951,
+ 11.148463,
+ 9.665508,
+ 14.410765,
+ 15.705147,
+ 13.765772,
+ 14.518182,
+ 13.727528,
+ 10.985688,
+ 9.630818,
+ 12.289009,
+ 12.235441,
+ 12.307672,
+ 13.750031,
+ 11.527165,
+ 10.947876,
+ 12.02569,
+ 15.668482,
+ 12.356436,
+ 11.127282,
+ 13.301685,
+ 13.704182,
+ 12.330872,
+ 11.962454,
+ 12.465431,
+ 13.723599,
+ 14.191532,
+ 10.109022,
+ 14.042693,
+ 10.283899,
+ 13.8684225,
+ 11.908753,
+ 13.024033,
+ 13.189402,
+ 13.116907,
+ 12.266249,
+ 14.0268,
+ 12.056569,
+ 12.9461,
+ 9.92892,
+ 14.87046,
+ 13.026582,
+ 11.069831,
+ 12.368109,
+ 14.379589,
+ 12.765025,
+ 15.46876,
+ 13.854619,
+ 12.566142,
+ 13.502295,
+ 14.013674,
+ 10.60182,
+ 14.339718,
+ 12.641274,
+ 10.983485,
+ 12.939246,
+ 11.030957,
+ 11.811134,
+ 14.149083,
+ 13.8425665,
+ 11.983481,
+ 14.071517,
+ 11.229943,
+ 12.379527,
+ 9.663695,
+ 15.386695,
+ 13.389585,
+ 14.28548,
+ 13.511423,
+ 14.473488,
+ 15.630514,
+ 14.577415,
+ 14.834839,
+ 12.523605,
+ 12.399438,
+ 11.186876,
+ 12.165506,
+ 13.188739,
+ 12.385925,
+ 11.21824,
+ 12.952844,
+ 12.688503,
+ 14.107555,
+ 14.721576,
+ 12.77294,
+ 13.991718,
+ 14.330545,
+ 14.242089,
+ 14.135378,
+ 11.293826,
+ 11.128442,
+ 13.572951,
+ 13.134507,
+ 12.47573,
+ 13.582293,
+ 12.221364,
+ 11.463839,
+ 12.398383,
+ 15.634335,
+ 12.29632,
+ 13.729427,
+ 14.079142,
+ 14.425858,
+ 13.484005,
+ 10.967222,
+ 11.7914505,
+ 12.11033,
+ 11.400575,
+ 12.68591,
+ 14.632156,
+ 13.874318,
+ 15.63372,
+ 13.322798,
+ 13.895164,
+ 12.039538,
+ 11.952491,
+ 13.371899,
+ 14.370922,
+ 13.169235,
+ 13.719562,
+ 11.069265,
+ 13.809676,
+ 14.129467,
+ 12.831664,
+ 11.761786,
+ 11.959143,
+ 12.472545,
+ 10.937045,
+ 12.963791,
+ 12.251954,
+ 11.814611,
+ 10.213235,
+ 14.475357,
+ 13.613274,
+ 13.570542,
+ 13.792855,
+ 10.924482,
+ 14.156793,
+ 14.236873,
+ 13.820898,
+ 14.075736,
+ 12.625423,
+ 12.575504,
+ 15.503959,
+ 15.554676,
+ 14.269372,
+ 12.4491825,
+ 13.740131,
+ 14.369144,
+ 12.307502,
+ 13.965243,
+ 12.972498,
+ 12.849481,
+ 12.572225,
+ 9.83626,
+ 15.685908,
+ 12.310513,
+ 12.35449,
+ 11.077726,
+ 13.873614,
+ 13.634407,
+ 13.809436,
+ 14.033779,
+ 11.988665,
+ 12.970366,
+ 9.610999,
+ 11.351991,
+ 12.730604,
+ 15.514175,
+ 13.952505,
+ 13.694136,
+ 14.349226,
+ 10.679882,
+ 10.961359,
+ 11.313823,
+ 11.900345,
+ 13.620419,
+ 13.725926,
+ 15.713778,
+ 9.752641,
+ 11.104168,
+ 11.746303,
+ 9.694178,
+ 13.961982,
+ 13.720108,
+ 12.103927,
+ 14.516713,
+ 10.666726,
+ 10.5518875,
+ 14.090239,
+ 11.728579,
+ 13.727674,
+ 13.286988,
+ 12.579657,
+ 13.6964655,
+ 11.164524,
+ 15.680057,
+ 12.382886,
+ 13.998401,
+ 13.419018,
+ 12.310226,
+ 13.934209,
+ 14.412009,
+ 11.311977,
+ 12.010625,
+ 14.474827,
+ 10.919461,
+ 11.3463745,
+ 14.849099,
+ 14.486754,
+ 9.747772,
+ 10.486518,
+ 14.362132,
+ 14.501337,
+ 12.220806,
+ 15.2048855,
+ 14.535794,
+ 9.783937,
+ 14.161399,
+ 14.045857,
+ 10.152082,
+ 14.728542,
+ 14.185949,
+ 10.430717,
+ 13.790531,
+ 14.050248,
+ 14.135367,
+ 15.542895,
+ 9.55056,
+ 15.694788,
+ 15.45416,
+ 10.92339,
+ 14.038996,
+ 11.467063,
+ 9.584519,
+ 13.369093,
+ 13.777396,
+ 13.541672,
+ 14.324021,
+ 13.303235,
+ 12.118902,
+ 11.317279,
+ 13.741618,
+ 11.453335,
+ 13.649015,
+ 11.268871,
+ 10.188009,
+ 12.365366,
+ 10.119904,
+ 9.809793,
+ 10.745786,
+ 15.654596,
+ 12.331473,
+ 12.141855,
+ 14.08006,
+ 14.253842,
+ 13.9462385,
+ 13.840155,
+ 14.330589,
+ 13.092308,
+ 13.754779,
+ 9.515736,
+ 12.183343,
+ 14.094597,
+ 14.245914,
+ 14.410638,
+ 10.984896,
+ 15.513629,
+ 13.5126705,
+ 11.860362,
+ 13.879809,
+ 11.968395,
+ 14.163358,
+ 14.049749,
+ 11.628507,
+ 14.343173,
+ 9.735063,
+ 11.635013,
+ 13.466013,
+ 11.7332,
+ 9.582863,
+ 14.310901,
+ 10.403487,
+ 13.799748,
+ 13.454129,
+ 13.58287,
+ 11.902377,
+ 13.97923,
+ 12.0372715,
+ 13.649758,
+ 15.248049,
+ 11.251271,
+ 12.866807,
+ 14.286854,
+ 15.682516,
+ 11.998486,
+ 11.068042,
+ 13.40052,
+ 14.264896,
+ 9.398277,
+ 10.560704,
+ 14.130227,
+ 10.717554,
+ 14.084334,
+ 14.164513,
+ 13.226638,
+ 14.184611,
+ 12.527517,
+ 13.646828,
+ 14.502714,
+ 14.090114,
+ 11.931049,
+ 14.513611,
+ 14.500285,
+ 10.1021805,
+ 15.636036,
+ 11.960766,
+ 15.432474,
+ 10.054413,
+ 14.364707,
+ 12.32407,
+ 13.325973,
+ 14.42365,
+ 10.184804,
+ 13.481147,
+ 11.462289,
+ 9.606898,
+ 11.087331,
+ 15.653713,
+ 12.3333645,
+ 14.572866,
+ 11.570377,
+ 10.38651,
+ 12.203027,
+ 13.201957,
+ 12.353683,
+ 11.370809,
+ 14.2666235,
+ 14.279659,
+ 14.840715,
+ 14.500931,
+ 10.9466915,
+ 11.211141,
+ 10.968882,
+ 13.63708,
+ 14.302695,
+ 14.443618,
+ 13.6952,
+ 10.028085,
+ 13.908609,
+ 11.574689,
+ 13.866731,
+ 12.930368,
+ 12.943265,
+ 13.974994,
+ 13.588496,
+ 14.314062,
+ 13.506877,
+ 13.984754,
+ 13.552245,
+ 12.586906,
+ 9.748848,
+ 13.648986,
+ 11.2607,
+ 14.252842,
+ 13.644176,
+ 14.211894,
+ 13.7240095,
+ 12.195877,
+ 13.469905,
+ 14.024454,
+ 13.4281645,
+ 10.976718,
+ 14.0922365,
+ 15.672059,
+ 11.776328,
+ 13.758304,
+ 14.46021,
+ 14.056539,
+ 11.050613,
+ 9.780705,
+ 13.9123745,
+ 14.001332,
+ 9.792024,
+ 14.891837,
+ 15.194198,
+ 12.129743,
+ 11.823987,
+ 13.34168,
+ 12.754315,
+ 10.319759,
+ 10.631459,
+ 14.661709,
+ 10.968051,
+ 12.689001,
+ 13.625918,
+ 14.353584,
+ 13.643723,
+ 12.833298,
+ 9.494435,
+ 10.002977,
+ 13.736742,
+ 14.507726,
+ 13.588059,
+ 12.350062,
+ 14.208145,
+ 13.760211,
+ 10.002605,
+ 11.081508,
+ 11.424616,
+ 12.155503,
+ 10.92439,
+ 9.614107,
+ 13.88578,
+ 13.595036,
+ 12.353888,
+ 14.063898,
+ 12.701086,
+ 12.573365,
+ 14.017721,
+ 12.82497,
+ 12.552712,
+ 13.726919,
+ 10.976005,
+ 9.80974,
+ 14.04788,
+ 13.686528,
+ 13.258016,
+ 11.140871,
+ 11.56759,
+ 14.388785,
+ 12.40881,
+ 12.485156,
+ 12.705019,
+ 13.981403,
+ 14.000326,
+ 13.817183,
+ 13.803718,
+ 12.026619,
+ 10.319014,
+ 13.911021,
+ 10.9697695,
+ 13.75324,
+ 13.045196,
+ 12.392414,
+ 13.919336,
+ 9.875013,
+ 11.770532,
+ 13.659624,
+ 14.708152,
+ 11.422771,
+ 14.366721,
+ 14.553872,
+ 11.271506,
+ 14.341389,
+ 12.000356,
+ 10.274403,
+ 10.497755,
+ 13.818154,
+ 14.437366,
+ 13.845214,
+ 13.8031025,
+ 15.651047,
+ 13.803631,
+ 9.640121,
+ 14.108109,
+ 12.199356,
+ 11.296354,
+ 11.465147,
+ 14.233785,
+ 14.322278,
+ 14.000783,
+ 14.394755,
+ 14.33288,
+ 13.843008,
+ 9.440388,
+ 13.83177,
+ 13.690375,
+ 12.463181,
+ 14.163407,
+ 10.810328,
+ 10.656233,
+ 14.093379,
+ 12.511308,
+ 13.566601,
+ 11.942033,
+ 13.756715,
+ 11.977441,
+ 11.376613,
+ 12.770348
+ ],
+ "y": [
+ 5.823554,
+ 7.78093,
+ 4.3672986,
+ 2.6015213,
+ 2.620353,
+ 6.339188,
+ 4.4852,
+ 6.754972,
+ 4.346624,
+ 2.2860017,
+ 3.216706,
+ 4.7785773,
+ 1.927254,
+ 4.231272,
+ 6.3131304,
+ 3.7414575,
+ 2.0315263,
+ 6.605485,
+ 10.229599,
+ 3.7564237,
+ 3.339015,
+ 6.997354,
+ 2.9431615,
+ 6.725661,
+ 2.4910388,
+ 2.4988468,
+ 4.0449166,
+ 4.2864113,
+ 6.6481786,
+ 6.2063565,
+ 8.596262,
+ 4.065425,
+ 7.5341387,
+ 5.077729,
+ 3.0545273,
+ 7.8772993,
+ 4.291341,
+ 7.655078,
+ 2.6732287,
+ 3.3522105,
+ 3.8661516,
+ 3.9936368,
+ 6.8309093,
+ 4.8174872,
+ 4.501697,
+ 5.2540345,
+ 6.0376477,
+ 4.199028,
+ 4.0960603,
+ 3.029331,
+ 3.3337183,
+ 4.4042773,
+ 2.401662,
+ 8.189292,
+ 3.0294855,
+ 4.984635,
+ 2.121592,
+ 8.004798,
+ 6.8242054,
+ 7.2654934,
+ 4.885593,
+ 3.4326613,
+ 5.0749,
+ 2.333251,
+ 6.2626247,
+ 3.6615984,
+ 4.6414824,
+ 3.4975543,
+ 2.0459661,
+ 2.6775105,
+ 4.851078,
+ 4.5656104,
+ 6.4167094,
+ 3.2713192,
+ 7.949907,
+ 3.1535842,
+ 6.1514764,
+ 4.737703,
+ 2.3219633,
+ 4.998247,
+ 7.9404054,
+ 4.569659,
+ 4.0496855,
+ 3.510827,
+ 6.4119244,
+ 6.339384,
+ 5.1543345,
+ 6.8284636,
+ 6.181922,
+ 5.104127,
+ 7.874108,
+ 4.8909636,
+ 3.6036723,
+ 3.911003,
+ 3.4802003,
+ 3.2741,
+ 7.843493,
+ 3.6570528,
+ 2.7072587,
+ 3.4176347,
+ 7.623638,
+ 3.7556708,
+ 8.659816,
+ 1.8733325,
+ 4.5165844,
+ 2.2505739,
+ 7.352501,
+ 3.4781148,
+ 3.5821571,
+ 6.6776056,
+ 2.0940306,
+ 3.4284375,
+ 4.890504,
+ 3.2387762,
+ 3.7241657,
+ 4.3140736,
+ 3.2875304,
+ 2.8118563,
+ 5.080817,
+ 4.8531566,
+ 7.6312637,
+ 2.0838125,
+ 3.884021,
+ 3.0282323,
+ 2.5677032,
+ 7.975282,
+ 1.8926883,
+ 2.0939078,
+ 3.9788072,
+ 4.5075455,
+ 1.8486774,
+ 8.164328,
+ 7.163138,
+ 3.6086853,
+ 7.9857554,
+ 4.3157687,
+ 3.8639271,
+ 3.828777,
+ 3.9819217,
+ 6.8309975,
+ 10.296576,
+ 10.27858,
+ 3.1617954,
+ 4.68405,
+ 2.7351174,
+ 6.1275105,
+ 3.1286879,
+ 5.24187,
+ 2.7439768,
+ 3.9008124,
+ 10.186757,
+ 5.206329,
+ 3.80824,
+ 2.2375417,
+ 3.7695653,
+ 4.6249466,
+ 3.2916434,
+ 5.59413,
+ 2.329103,
+ 3.591565,
+ 4.333552,
+ 3.507724,
+ 3.7521224,
+ 2.1281788,
+ 6.020436,
+ 3.6303046,
+ 3.5367928,
+ 3.2009332,
+ 3.3110628,
+ 7.000043,
+ 5.1220984,
+ 8.0186615,
+ 2.6742854,
+ 7.290235,
+ 2.6572833,
+ 3.715734,
+ 4.929418,
+ 4.3249235,
+ 7.9055915,
+ 4.1046314,
+ 4.3950667,
+ 4.7149453,
+ 1.8542256,
+ 4.1044855,
+ 7.849204,
+ 4.518035,
+ 8.132208,
+ 10.215285,
+ 4.461135,
+ 2.1533246,
+ 3.9181528,
+ 7.216709,
+ 4.339227,
+ 4.4608226,
+ 2.82719,
+ 3.5456278,
+ 7.4479775,
+ 3.7316804,
+ 6.5331945,
+ 5.9436655,
+ 6.313577,
+ 6.577395,
+ 2.7002332,
+ 7.2975583,
+ 2.8864834,
+ 2.9040878,
+ 7.881676,
+ 4.0102057,
+ 4.665364,
+ 1.9382437,
+ 3.8349583,
+ 6.8503585,
+ 7.0525436,
+ 6.110171,
+ 5.125629,
+ 7.975681,
+ 9.949879,
+ 4.067066,
+ 7.9554,
+ 2.3129392,
+ 2.2972171,
+ 7.345891,
+ 2.6528757,
+ 3.358728,
+ 2.1879463,
+ 4.008036,
+ 7.832475,
+ 4.558449,
+ 3.7629313,
+ 7.928992,
+ 5.8910737,
+ 5.8442745,
+ 4.2908587,
+ 7.930415,
+ 6.5730033,
+ 4.1380067,
+ 2.8956234,
+ 2.3495257,
+ 3.6764817,
+ 2.1585343,
+ 3.7336605,
+ 3.7961338,
+ 2.524737,
+ 2.6014993,
+ 3.391689,
+ 4.760176,
+ 7.981878,
+ 3.7461715,
+ 7.9749603,
+ 3.4389331,
+ 4.2967625,
+ 6.559437,
+ 3.5610864,
+ 4.670972,
+ 8.704518,
+ 5.220681,
+ 1.924228,
+ 2.3821135,
+ 4.904204,
+ 4.295631,
+ 2.4409342,
+ 5.0292807,
+ 4.9590454,
+ 4.7897844,
+ 2.1631994,
+ 7.8341613,
+ 10.289595,
+ 4.0082407,
+ 3.8951473,
+ 7.970951,
+ 2.5187001,
+ 3.0797932,
+ 5.6903806,
+ 6.087409,
+ 3.3122895,
+ 7.9045186,
+ 4.497998,
+ 5.041201,
+ 6.031502,
+ 10.255685,
+ 4.299748,
+ 2.9832237,
+ 4.177893,
+ 2.8980885,
+ 4.2806997,
+ 6.432949,
+ 7.9959946,
+ 7.986995,
+ 4.261165,
+ 2.834562,
+ 6.6200423,
+ 2.2892075,
+ 7.482878,
+ 6.04173,
+ 3.1662948,
+ 3.7528045,
+ 4.6486893,
+ 6.1181216,
+ 4.2690296,
+ 6.2247972,
+ 5.203806,
+ 1.9428204,
+ 3.3615806,
+ 5.334304,
+ 4.434051,
+ 3.656006,
+ 4.3721685,
+ 6.193835,
+ 10.016818,
+ 7.8400593,
+ 7.9670625,
+ 6.3526316,
+ 7.0191846,
+ 2.710445,
+ 4.8714995,
+ 3.3531573,
+ 5.107877,
+ 2.8204725,
+ 5.109961,
+ 4.9769125,
+ 7.184149,
+ 7.4912844,
+ 4.459903,
+ 7.6564803,
+ 4.724873,
+ 2.6752212,
+ 2.7682376,
+ 9.790127,
+ 3.4722285,
+ 4.593411,
+ 7.0530114,
+ 4.2361336,
+ 10.208177,
+ 7.0534573,
+ 3.3662243,
+ 7.964834,
+ 3.849322,
+ 2.9851422,
+ 6.3260455,
+ 3.23111,
+ 4.67321,
+ 2.4941595,
+ 4.3421364,
+ 4.93735,
+ 6.442544,
+ 7.69006,
+ 3.6186426,
+ 3.811422,
+ 7.372922,
+ 6.681626,
+ 7.8804965,
+ 4.617442,
+ 4.794989,
+ 4.222612,
+ 6.2450967,
+ 6.092981,
+ 5.3451056,
+ 5.9244127,
+ 4.7279925,
+ 3.3870606,
+ 10.215545,
+ 2.6564012,
+ 8.492979,
+ 3.60868,
+ 7.5058985,
+ 2.9587736,
+ 5.128754,
+ 3.9668267,
+ 2.7452724,
+ 4.942075,
+ 4.038294,
+ 4.62421,
+ 2.3235774,
+ 10.219927,
+ 3.3659067,
+ 5.296619,
+ 6.2416663,
+ 4.1836057,
+ 3.9280965,
+ 3.3769608,
+ 4.1142235,
+ 3.9513853,
+ 3.714265,
+ 8.314325,
+ 7.8097434,
+ 3.8771813,
+ 4.5832915,
+ 4.4650927,
+ 7.8452992,
+ 3.7093804,
+ 5.184089,
+ 6.655807,
+ 6.117783,
+ 4.2176924,
+ 3.784932,
+ 2.8196714,
+ 2.788591,
+ 7.8474016,
+ 2.545259,
+ 7.800996,
+ 3.343889,
+ 8.639571,
+ 6.54559,
+ 4.0252666,
+ 4.684421,
+ 9.806243,
+ 10.114666,
+ 6.9496627,
+ 7.9821553,
+ 7.74272,
+ 3.4540913,
+ 4.0425406,
+ 7.1535263,
+ 4.3393884,
+ 3.9122293,
+ 7.883394,
+ 2.3494759,
+ 10.2626,
+ 4.5885253,
+ 2.6369011,
+ 2.9347358,
+ 6.489676,
+ 2.852942,
+ 6.6945057,
+ 7.8714685,
+ 2.9402697,
+ 4.622416,
+ 2.8344586,
+ 2.69478,
+ 3.710855,
+ 10.066308,
+ 6.456055,
+ 4.8055167,
+ 4.3548055,
+ 3.4105284,
+ 3.08924,
+ 2.6527839,
+ 2.6805367,
+ 6.7781324,
+ 8.671521,
+ 10.303688,
+ 2.3466275,
+ 2.922927,
+ 6.0806756,
+ 2.1475272,
+ 6.5674224,
+ 4.7186046,
+ 4.7259803,
+ 3.558509,
+ 2.250969,
+ 2.4646509,
+ 6.187167,
+ 3.9919615,
+ 7.777121,
+ 3.24899,
+ 4.086959,
+ 3.601604,
+ 5.224006,
+ 10.275517,
+ 2.6752136,
+ 7.0678253,
+ 7.5939636,
+ 4.321959,
+ 7.712719,
+ 7.6847115,
+ 2.8851562,
+ 2.730224,
+ 8.172978,
+ 3.6979501,
+ 5.0000653,
+ 3.3653288,
+ 3.3802087,
+ 2.6494524,
+ 4.3969445,
+ 4.1964016,
+ 4.555752,
+ 6.4923096,
+ 9.446525,
+ 7.018953,
+ 2.1844718,
+ 6.8033185,
+ 4.609029,
+ 2.3783758,
+ 7.6509,
+ 3.552627,
+ 3.440562,
+ 6.606905,
+ 4.7275023,
+ 4.897658,
+ 10.097355,
+ 2.6462438,
+ 10.277146,
+ 9.97336,
+ 3.7199428,
+ 7.8625755,
+ 2.725251,
+ 2.8613694,
+ 3.957451,
+ 8.518376,
+ 5.1827574,
+ 4.5177155,
+ 5.456848,
+ 3.1788187,
+ 2.9090462,
+ 6.757759,
+ 5.5225477,
+ 4.654481,
+ 5.331352,
+ 2.5311787,
+ 3.4276483,
+ 2.2732182,
+ 2.2939553,
+ 3.2882426,
+ 10.234961,
+ 3.9800124,
+ 2.698116,
+ 7.4556355,
+ 4.578766,
+ 6.123264,
+ 3.4348774,
+ 3.7344873,
+ 6.3466473,
+ 4.707468,
+ 2.8223164,
+ 6.1609044,
+ 7.621601,
+ 3.381449,
+ 7.74403,
+ 3.7732472,
+ 10.053356,
+ 7.937307,
+ 6.010624,
+ 8.006637,
+ 2.7660906,
+ 3.206364,
+ 7.5659866,
+ 3.7556028,
+ 3.4876707,
+ 2.085426,
+ 3.8012984,
+ 6.042934,
+ 4.5767508,
+ 2.5773268,
+ 4.714307,
+ 3.447088,
+ 5.708029,
+ 4.1204724,
+ 5.943417,
+ 3.5951204,
+ 6.7388287,
+ 2.8310728,
+ 3.6429517,
+ 9.473686,
+ 4.628095,
+ 7.925478,
+ 7.189252,
+ 10.268488,
+ 3.9175756,
+ 5.055893,
+ 5.580108,
+ 4.1458764,
+ 2.8164659,
+ 2.3147936,
+ 6.682908,
+ 3.4253347,
+ 7.8761053,
+ 7.819659,
+ 3.092852,
+ 3.455811,
+ 7.96708,
+ 6.9179897,
+ 3.5504718,
+ 7.313199,
+ 6.0966167,
+ 4.1378856,
+ 3.540421,
+ 3.1503425,
+ 10.219199,
+ 6.1784773,
+ 9.909757,
+ 1.9803989,
+ 3.4237459,
+ 2.708296,
+ 3.3829145,
+ 7.426202,
+ 2.1717854,
+ 6.437802,
+ 4.26821,
+ 2.9826572,
+ 4.2671676,
+ 10.235569,
+ 6.7730618,
+ 6.677354,
+ 2.9660966,
+ 3.4370575,
+ 3.9866624,
+ 3.6212292,
+ 2.8348591,
+ 2.838495,
+ 4.2955956,
+ 4.8942285,
+ 3.3784328,
+ 4.5788507,
+ 3.6919827,
+ 4.8402557,
+ 4.328842,
+ 6.8153567,
+ 4.899535,
+ 8.094085,
+ 8.689048,
+ 2.470814,
+ 4.5605125,
+ 5.9754972,
+ 3.754999,
+ 2.8404956,
+ 3.8952405,
+ 7.709385,
+ 3.6605392,
+ 3.4120169,
+ 4.4788847,
+ 6.3798556,
+ 6.9631734,
+ 4.6842628,
+ 2.2628987,
+ 6.8044105,
+ 2.8207262,
+ 4.8626914,
+ 2.779481,
+ 4.305197,
+ 6.3889637,
+ 6.6871724,
+ 7.591073,
+ 4.1804686,
+ 4.7577724,
+ 3.761049,
+ 4.4952755,
+ 10.248538,
+ 3.9808664,
+ 8.543209,
+ 3.3955734,
+ 7.8683267,
+ 4.39008,
+ 2.2718084,
+ 7.8808804,
+ 8.6402445,
+ 2.4037845,
+ 7.8016925,
+ 9.420795,
+ 6.42526,
+ 4.8483596,
+ 4.1966186,
+ 3.9721112,
+ 2.5083838,
+ 3.839762,
+ 8.329022,
+ 5.103342,
+ 4.4832053,
+ 7.5337768,
+ 4.9538307,
+ 6.8104224,
+ 4.4176517,
+ 2.8253605,
+ 1.9036882,
+ 7.9361844,
+ 7.123207,
+ 2.724216,
+ 2.657223,
+ 4.267472,
+ 2.991188,
+ 1.8374082,
+ 4.397344,
+ 4.283108,
+ 3.9680738,
+ 3.7669702,
+ 2.773413,
+ 2.334936,
+ 4.572532,
+ 2.6375818,
+ 3.2691855,
+ 5.5597386,
+ 4.2511206,
+ 7.1816354,
+ 2.9171665,
+ 3.0826232,
+ 7.4905887,
+ 5.1333117,
+ 2.5341806,
+ 6.2930074,
+ 6.842087,
+ 5.3545794,
+ 3.0317996,
+ 4.080069,
+ 6.5402713,
+ 7.7220244,
+ 3.5373864,
+ 5.45986,
+ 7.6415744,
+ 7.730622,
+ 7.8620396,
+ 6.911399,
+ 6.11192,
+ 2.2906747,
+ 4.565659,
+ 2.5359085,
+ 3.1129265,
+ 3.9552224,
+ 4.6359377,
+ 6.7725887,
+ 2.249369,
+ 4.986387,
+ 7.7512965,
+ 7.6832285,
+ 2.7404356,
+ 3.8416352,
+ 7.0473833,
+ 4.985962,
+ 5.023032,
+ 5.9728036,
+ 3.2252996,
+ 3.6980128,
+ 6.660299,
+ 6.794502,
+ 7.257655,
+ 7.801967,
+ 10.233073,
+ 8.601993,
+ 2.7912402,
+ 4.2129607,
+ 2.789473,
+ 4.6229253,
+ 5.635489,
+ 4.2978864,
+ 3.486248,
+ 4.243303,
+ 3.5118809,
+ 3.429379,
+ 3.4511771,
+ 2.796845,
+ 8.638114,
+ 4.107683,
+ 3.2645168,
+ 7.663024,
+ 3.8164217,
+ 2.2578223,
+ 7.479663,
+ 3.78953,
+ 2.7175171,
+ 2.7670336,
+ 2.828874,
+ 5.2677007,
+ 4.2165704,
+ 4.9879837
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "hovertext": [
+ "liquid death\ncoffee\ndiet peach snapple\ndiet dr. pepper\noreo milkshakes https://t.co/fonymfpa4y",
+ "for me:\n\nblood orange juice\nevian water\norange juice w bits\ndr pepper\nwhite rum https://t.co/bv5gnwmepg",
+ "5 drinks to know me\n\n- black tea (with a lemon of course)\n- sparkling water\n- amsterdam\n- whiskey\n- cherry coke or dr. pepper https://t.co/zgmkskzv27",
+ "5 drinks to know me\n\n-bbt tea noir lemon tapioca 100% sucre\n-bbt tea oolong raspberry tapioca 100% sucre\n-eau\n-lemonade\n-dr pepper https://t.co/xhkkedxeqk",
+ "5 drinks to know me:\n1. dr. pepper face_with_steam_from_nose\n2. ice water (specifically from my water bottle)\n3. cranberry sprite\n4. tequila pineapple\n5. juicy juice fruit punch\nspecial note: chai tea lattes https://t.co/1teqbh0eux",
+ "5 drinks to know me\n\ncherry dr pepper (fountain)\ncoca cola classic (12 oz red can)\nmountain valley water (green glass bottle)\nyerba mate (any and all)\ngrapefruit juice cause that shit used to make the xans hit harder https://t.co/itby0prqm2",
+ "ok?\nfive drinks to know me:\n-earl gray tea\n-dr. pepper\n-white gatorade\n-downeast pumpkin cider\n-yoohoo https://t.co/q7vimhqfo5",
+ "five drinks to know me:\n- coffee (add 2 milk)\n-old fashioned\n- \"gross beer\" (s/o @actionactioncut) aka ipas\n- dr. pepper\n-grapefruit juice https://t.co/2bjlmjt0cj",
+ "@braydenvera stop playing, i tried to chase my tequila w pickle juice and it was ass so i know for sure this is gonna be ass too. vodka with a pickle juice chaser is good. tequila with a dr pepper chaser is top tier.",
+ "5 drinks to get to know me:\n\niced tea\nhot tea\ndr pepper\ncold brew coffee\nboba tea",
+ "five drinks to know me\nshirley temple\ndr. pepper\nsprite\niced coffee with white mocha\npassion tea lemonade from starbucks https://t.co/ssiti4agvx",
+ "@maria_26596243 5 drinks to know me:\n1. diet dr. pepper\n2. diet dr pepper\n3. diet dr. pepper\n4. diet dr. pepper\n5. diet dr. pepper and a splash of rum",
+ "5 drinks to know me:\n\n1. dr pepper\n2. peach redbull\n3. labatt blue\n4. water out of a walleye cup\n5. mango strawberry smoothie https://t.co/uugmrbzc3d",
+ "5 drinks to know me:\n\ndr pepper\ncanada dry\ncoca-cola vanilla\nearl gray tea with lemon and sugar\nкофе черный (70/30 арабика/робуста) https://t.co/dkxce1tf4c",
+ "5 drinks to know me beating_heart\nhorchata\ndr pepper\nslushies\nstrawberry lemonade\niced lattes https://t.co/4bif2vq2ct",
+ "1. dr pepper\n2. dr pepper\n3. dr pepper\n4. dr pepper\n5. dr pepper https://t.co/dou0ptocdx",
+ "5 drinks to know me\n\n1. diet dr pepper berries & cream (discontinued)\n2nd med. half-caf soy latte w/ lots of foam + sf vanilla or almond syrup\n3. decaf instant coffee\n4. strong ginger herbal tea\n5. peach mango bodyarmor lyte https://t.co/xaoh4alcei",
+ "5 drinks to know me:\n- iced coconut milk latte\n- diet dr pepper\n- pineapple juice\n- earl gray tea sour beer\n- peach or strawberry soju https://t.co/immfqrogph",
+ "5 drinks\n-peach monster\n- diet coke\n-milk\n-dr pepper\n-uhh water https://t.co/x4xiiierwj",
+ "5 drinks to know me:\n\nsprite\ndr. pepper\nbuffalo bill's orange blossom cream ale (rip)\npg tips with honey and whiskey\ntoasted s'mores milkshake\n\nbeam. i'm made of sugar. https://t.co/imwplk946a",
+ "5 drinks to get to know me:\n1. dr pepper zero sugar\n2. coffee w/ a spoonful of ovaltine\n3. cherry coke zero\n4. pink lemonade\n5. milk https://t.co/0h0ksdwslv",
+ "5 drinks to get to know me\n\nwater\npeach monster\ndr pepper\nstrawberry lemonade\nsprite https://t.co/2a55bgrt5o",
+ "5 drinks to know me\n\n- sweet tea\n-wendy's strawberry lemonade\n- barq's root beer\n- dr. pepper\n-grapefruit juice https://t.co/v74yobb6w0",
+ "5 drinks to know me:\n\n1. dr pepper\n2. mom's iced tea recipe\n3. polar seltzer\n4. narragansett\n5. large dunkin iced coffee with oatmilk and 2 sugars https://t.co/ezfoalxdna",
+ "5 drinks to know me\n\nlemon water\ncherry dr pepper\nroot beer\njameson\ncappuccinos... https://t.co/2gyk03vtvo",
+ "5 drinks to get to know me purple_heart\n\n- matcha latte\n- pink rosé\n- vodka cranberry\n- dr pepper\n- lavender chamomile tea https://t.co/6vschhhgb3",
+ "5 drinks to know me\nwater\nbody amour\ndr pepper zero\napple crown royal\nsunny d https://t.co/ci68r8imso",
+ "5 drinks to know me\n1) крепкий кофе с молоком\n2) cola/dr pepper\n3) krepkiy chai with fruit additives without sugar\n4) бабл ти\n5) gin with orange tonic/спрайтом/колой https://t.co/9yq2aefcmu",
+ "five drinks to know me\n\nblack coffee\nvodka soda\nstrawberry white claw\ndr pepper (recovering)\nwater (in my pink cup) https://t.co/itoeph1nxu",
+ "how much caffeine in pepsi, coke and dr pepper? hot_beverage red_circle broadcasts live audio & video, on https://t.co/5yxyntz4yf red_circle\nbackhand_index_pointing_righttune in at 9 am pt and 7 pm pt everyday backhand_index_pointing_left #piperblush #wtpr #show #daily #radio #theunpredicatableradio #fortheboldlistener #socialcredit https://t.co/m5lmlpbrqi",
+ "5 drinks to know me:\n- dr pepper\n- iced coffee\n- mug root beer\n- ranch water\n- can't think of anything else besides water, which is my default lol https://t.co/4knw1k47fm",
+ "4 drinks to know me\n1. dr pepper\n2. mucho mango monster\n3. spiked arnold palmer\n4. sweet tea https://t.co/xhlbo0hcmc",
+ "ooh i like this one.\n\ncup_with_straw5 drinks to know me:\n- lemonade\n- pina coladas\n- deschutes brewery fresh squeezed ipa\n- blue powerade\n- dr pepper https://t.co/p1xm6fo57p",
+ "@youre2basic 5 drinks to know me:\n1. miller high life\n2. cortado\n3. limoncello la croix\n4. riptide rush gatorade\n5. dr. pepper (aka dr pussypopper)",
+ "5 drinks to know me by\n\nit's a blast\nchai latte\nfig apple redbull\nartic blitz gatorade\ndr pepper https://t.co/emu0pgtdjc",
+ "5 drinks!!!\n\nbrown sugar oat americano\ndiet pepsi\ndiet dr pepper\npalomas!!!!!!!\nchardonnay!!!!! https://t.co/zkcy0zovh7",
+ "five drinks to know me:\nwater\ndr pepper\nvodka crane\nstrawberry guava celsius\ntequila sunrise https://t.co/zephqmwyqk",
+ "@jus_jayd my job: i work for microsoft!\ni live in nc.\nmy favorite drink is strawberry dr. pepper\nfavorite game: legend of zelda botw\nbeing a good mom, & my stream consistency",
+ "5 drinks to get to know me:\n\n• milk (includes chocolate milk)\n• dr. pepper / coca cola\n• shirley temples [sprite + grenadine aka cherry sprite but better]\n• chai tea latte w/ whipped cream & chocolate drizzle\n• drinking chocolate https://t.co/ftrccvri5e",
+ "honorable mentions:\n- diet dr pepper\n- mango kefir\n- taro boba\n- tequila sunrise\n- pimms cup",
+ "5 drinks to know me\n\n•cartridge\n•water\n•peach alani\n•dr pepper\n•malibu pineapple (thanks alyssa) https://t.co/zovgr5jdog",
+ "five drinks to know me\ncherry slush from alani\ncranberry apple charged lemonade\ndr pepper\ncoconut berry red bull\nchai tea with toffee nut https://t.co/qp5ti1azby",
+ "5 drinks to know me:\n\nwater- always my top girly\naha seltzer- even better caffeinatedsmiling_face_with_halo\niced chai tea latte with cold foam (starbs)\ndr pepper\nsweet tea from mcdonald's https://t.co/stx4xitwqq",
+ "5 drinks to know me:\n\n• dr pepper\n• water\n• shirley temples\n• arizona fruit punch\n• strawberry lemonade https://t.co/l0ng2sizux",
+ "5 drinks to know me\n- iced coffee\n- flat white with coconut milk\n- diet dr. pepper\n- moscow mule\n- any smoothie with peanut butter https://t.co/pyheloed8g",
+ "5 drinks to get to know me:\n\n1. dr pepper\n2. shirley temple\n3. hot cocoa\n4. blue razz slurpee\n5. dragon fruit vitamin water https://t.co/ral5swgqad",
+ "5 drinks to know about me:\n\n- arnold palmers\n- water\n- dr. pepper\n- iced coffees/refreshers\n- strawberry lemon smoothies https://t.co/6mlt9wnosv",
+ "#coffeeandtequila\ntwo of my #goto drinks* and getting to be one of my fav podcasts...\nhttps://t.co/vzfh2mdbis\n*(add diet cherry dr. pepper and i'm dead!)",
+ "5 drinks to know me:\n\n- tall white chocolate mocha w 1 raspberry pump + oatmilk\n- tall dirty chai + oat milk\n- dr. pepper\n- matcha\n- red wine https://t.co/xx3zxxqse0",
+ "im either drinking a pink drink with one scoop of matcha with sweet cold foam on top or dr pepper revolving_hearts",
+ "5 drinks to know me:\n- cherry cola (pepsi or dr. pepper)\n- негазований живчик\n- пивлітровий садочок с трубочкой (яблучно-виноградний or мультивитаминовий)\n- цикорий з безлактозним молоком\n- м'ятно-шоколадний чай https://t.co/7cmhsdswwa",
+ "5 drinks to know me\n\n- dr pepper\n- strawberry dragonfruit lemonade refresher from dunkin\n- water\n- iced coffee that's so sweet it doesn't taste like coffee\n- green tea https://t.co/opvtx0ixsv",
+ "5 drinks to know me\n\n- pepsi max\n- dr pepper from a bottle\n- dr pepper from a soda fountain\n- iced caramel latte\n- cherries and berries diluting juice https://t.co/cgbjqgaaw9",
+ "@azzy_said_ 5 drinks to know me :\nbubble tea bubble_tea\npeach bellini peach\ndr pepper\nflavored sparkling water\nstrawberry margarita strawberry",
+ "5 drinks to know me\ncoffee\ncoffee\ncoffee\ncoffee\ndr pepper https://t.co/sierr8ajf3",
+ "dr pepper\norange 3d energy\nblack coffee\nvirgil's root beer\nwater https://t.co/drmzavkw0a",
+ "5 drinks to know me:\n\nwhite tea\nflat white\nclover club\nбилье сухе вино\ndr pepper вишневий https://t.co/gikwwt6u3n",
+ "1:\nr - milkshake, rum\no - dr pepper, sake",
+ "5 drinks to know me\n\ndr pepper\nwater\ncold brew\noat milk\nred bull winter edition https://t.co/mm6vfsxvzw",
+ "5 drinks to know me\n\ndr pepper\nwater with a cherry liquid iv\nsweet tea\nlavender matcha latte\nold fashion https://t.co/smyblxgteq",
+ "lemon lime & bitters\nchinotto\ndr pepper zero\norange juice\nhot black tea with a tablespoon of milk https://t.co/zxiozi485q",
+ "1. iced coffee\n2. dr pepper and bourbon\n3. coke zero\n4. apple juice\n5. extremely dirty martinis https://t.co/tmnpcqqord",
+ "5 drinks to know me:\n1. dr. pepper\n2. water w off brand mio\n3. vanilla nesquik\n4. promiseland chocolate milk\n5. iced caramel macchiato w double pumps of sweetener https://t.co/y6jbjqon32",
+ "five drinks to know me\ndr pepper\nwater\nginger ale\ncherry flavored sodas\niced tea https://t.co/2y5ib6pa3g",
+ "5 drinks to know me\n\ndeep eddy lime + sprite\ndr pepper\nstrawberry shoju\nroute 44 ocean water\npalette https://t.co/sbktfi4ztn",
+ "5 drinks to get to know me:\n\n1. matcha latte with oat milk (no sweetener i like my grass juice)\n2. cider. alcoholic or non. hot or cold.\n3. chateau st michelle sweet riesling\n4. dr pepper\n5. jasmine tea https://t.co/60qkk1gzik",
+ "5 drinks to get to know me:\n\n- dr pepper and cream zero sugar\n- dr pepper zero sugar\n- peach tea zero sugar\n- water\n- water\n- dr pepper and cream zero sugar https://t.co/wnthk316ns",
+ "5 drinks to know me:\n\ncoffee\ndark, malty beers\nbourbon and bourbon cocktails\ndr pepper\npamplemousse lacroix https://t.co/gqqiqeddci",
+ "five drinks to know me:\n\nmonster\ndr. pepper\nlemonade\npassionfruit boba\nbira blonde https://t.co/ditd7saq1c",
+ "5 drinks to know me\n\n- hot latte (either mocha, vanilla, hazelnut)\n- iced latte (same flavors)\n- diet coke\n- diet dr. pepper\n- ginger ale\n\n(honorable mentions: margarita with salt, paloma) https://t.co/48a6xa4wkw",
+ "iced americano\nsan pellegrino - aranciata rossa\ndr pepper\ncoca cola zero\nmonster (green) https://t.co/96oxgoay1b",
+ "by the way, dr pepper appeared in атб\nобычная и с вишней\n29 uah.\ni tried. так себе\nсекономил ваши деньги growing_heart",
+ "5 drinks to know me winking_face_with_tongue\n\nlarge vanilla iced coffee w cream and liquid sugar\nwater\ndr pepper\narizona watermelon\nghost blue sour patch kid flavor https://t.co/dufhvbwoot",
+ "5 drinks to know me:\nlondon fog (with appropriate amounts of vanilla)\nvanilla latte (with oat milk if i can)\npepsi\ndr pepper\niced chai with 2 pumps of vanilla https://t.co/gfpu2ezans",
+ "5 drinks to know me\n\n- chai latte (iced or hot)\n- cherry dr. pepper\n- tequila sunset\n- dirty shirleys\n- any fruit juice except orange https://t.co/3a5uayj7b2",
+ "5 drinks to know me\n\n1) dr pepper\n2) ulun\n3) б/а пиво «bakalar»\n4) banana latte\n5) баббл-ти «таро-тапиока» https://t.co/ml20gqabt4",
+ "5 drinks to get to know me:\n- bubble tea with lychee nata de coco\n- iced matcha latte\n- twg silver moon\n- dr pepper (cold fountain version)\n- coconut water with lime https://t.co/mvdtfvpxba",
+ "5 drinks to know me:\npepsi max\ndr pepper\nsummer fruit squash\norange luzocade\ncaramel frappè https://t.co/cd01tmmovd",
+ "5 drinks to know me:\n\n1. baja blast\n2. bourbon, neat\n3. george howell coffee, very little creamer or non-dairy milk\n4. mighty squirrel's pacific coast time ipa\n5. cherry dr. pepper https://t.co/1skgsmo2qh",
+ "5 drinks to know me\n\nmochadoodle coffee\nseltzer water\ndiet dr. pepper\nsheetz frozen latte\nfruit smoovie from my gf :3 https://t.co/sgtd6m1dyd",
+ "my five drinks\n\niced chai tea latte\narizona tea/raspberry tea\nmonster ultras\ndr pepper\ncore water https://t.co/gf5ffugq6z",
+ "top 5:\n- iced coffeesparkles\n-sweet teasparkles\n-dr peppersparkles\n-strawberry milksparkles\n-grape sodasparkles https://t.co/i0asr4r7v2",
+ "water\nwater with dragon fruit flavor\niced green tea lemonade\nmilk tea boba\ndr pepper https://t.co/pjiad4jscv",
+ "@trevdon depending on the day, dr pepper or mt dew. but i usually prefer iced brewed tea.",
+ "5 drinks to get to know me\n\n1. cucumber basil martini\n2. chai\n3. dr pepper\n4. cappuccino\n5. indian mule (ginger beer, krakken rum, and cardamom bitters w/mint leaf) https://t.co/t6rq63quwa",
+ "5 drinks to know me:\n\nlatte with vanilla syrup (or orange) is possible\ndr pepper\ngrape soda\nboba tea\nвишневый сок https://t.co/d2yekqdycl",
+ "5 drinks to know me!\n\ndr pepper cream soda\nice water\ngreen tea\nred/blue slushee\nmocha\n<3 https://t.co/exgkzubx6g",
+ "@twoheadedgrrl mine are fresh squeezed lemonade w/ simple syrup, iced matcha lattes, iced hazelnut latte w/ almond milk, thai tea with boba, and dr pepper",
+ "5 drinks to know me:\n\n- iced vanilla latte with oat milk\n- strawberry black tea with lychee jelly\n- dr pepper\n- yogurt soju :p\n- yorkshire tea with milk and one teaspoon sugar! https://t.co/g0th3yiioo",
+ "5 drinks to know me\n\n• sweet tea\n• water\n• dr pepper\n• monster\n• (iced) coffee https://t.co/ec2zjy38wd",
+ "5 drinks to get to know me:\n\n1. cherry coke extra cold from the bottle\n2. blackberry clearly canadian\n3. whiskey sour, extra sour\n4. venti peach green tea lemonade, light ice\n5. dr. pepper from the fountain https://t.co/evvbj9cgpc",
+ "omg i love this\n5 drinks to know me\n\n- dr pepper\n- iced chai with soy milk and a pump of brown sugar\n- brown sugar honey vanilla black milk tea (shoutout tpumps)\n- blue gatorade\n- paloma :p https://t.co/ij0adlfmpy",
+ "5 drinks to know me by:\n\ndr pepper\niced matcha with oat milk\nin n out lemonade\nbarqs root beer\ncoconut berry red bull https://t.co/fgd1svxgw6",
+ "@artsngrafts 5 drinks to know me:\n- dr pepper\n- pepsi max\n- tea\n- apple juice\n- appletizer",
+ "5 drinks to know me\n1) gatorade frost riptide rush\n2) dr pepper\n3) melon creamy soda\n4) $12 bottle of sauvignon blanc\n5) iced vanilla latte 1/2 pumps https://t.co/ney5ynq42n",
+ "5 drinks to know me by:\n\n- iced coffee\n- black coffee\n- dr pepper\n- iced chai\n- cranberry ginger ale https://t.co/v9dcciguz6",
+ "5 drinks to know me:\n\niced peach green tea lemonade\ndr pepper\nmcdonald's sprite\nwater no ice\ncookies and cream milkshake https://t.co/rmrv3x4m4i",
+ "sprite fanta dr pepper redbull starbucks vanilla bean frappe https://t.co/azi06neu5r",
+ "dr pepper\ncherry coke\nany cocktail with strawberries\nstrawberry lemonade\niced coffee https://t.co/yt2upgyxw9",
+ "5 drinks to know me:\n\ndr pepper\norange juice\nblack tea\nraf coffee\nsea buckthorn mors (it's a weird russian thing, but i love it) https://t.co/kfbfe2lzfd",
+ "5 drinks to know me:\n\nfilter coffee\ndr pepper\ngin tonic\nmartini porn star\nbryut https://t.co/is3bzmo36k",
+ "5 drinks to know me\n\nany sort of smart/essentia water\ndr pepper\nany sort of coffee/espresso with almond milk\nsparkling water\ncherry vanilla coke https://t.co/iyjhdga3g7",
+ "5 drinks to know me\n\ndr pepper\ntriple triple\nmonster energy\npepsi\nlukewarm tap water https://t.co/itzsol43ad",
+ "5 drinks to get to know me?\n\ndr pepper\nlavender and peppermint tea w/honey\nmidnight moon flavored moonshine\ndeath wish coffee with milk/creamer and sugar\nwater https://t.co/otxwokoeex",
+ "five drinks to know me:\n⁃cherry vanilla dr. pepper\n⁃dirty chai\n⁃monster ultra fiesta\n⁃lime margaritas (salt rims)\n⁃blue powerade https://t.co/srh0zpdq6n",
+ "5 drinks to know me:\n\n— islander freeze (choc macadamia nut, coconut, & vanilla)\n— iced matcha latte with oat milk or coconut milk & 2 or 3 pumps of chai\n— honey oolong milk tea with boba\n— wintermelon lemon tea with lychee jelly\n— cherry vanilla dr. pepper https://t.co/kcdvoivprs",
+ "@dinofacebbjjong 5 drinks to know me:\ndr. pepper\ndr. pepper\ndr. pepper\ndr. pepper\n- root beer zany_face",
+ "five drinks to know me\n dr pepper\ndr pepper\ndr pepper\ndr pepper\ndr pepper https://t.co/h22ye4d1fs",
+ "five drinks to know me:\ncoconut water\ndr pepper\ncranberry red bull\nwater w/lime or lemon\nmoscow mule https://t.co/zfiwz64h7p",
+ "5 dreams to get to know me\n- dr pepper\n- vodka redbull\n- vodka coke\n- water https://t.co/drg0vqq5vh",
+ "1. coffee without sugar\n2. dr pepper\n3. sidr\n4. пиво з нотками цитровых (kronenburg, garage, etc.)\n5. швепс (вси смаки окрим граната) https://t.co/5n76qeciop",
+ "5 drinks to know me:\nvanilla latte\nprosecco\nginger ale\ndiet dr. pepper\ncran-grape juice https://t.co/aei3kzx6ba",
+ "5 drinks to know the very depths of my soul:\n- hot black tea (pref loose leaf brewed) w a little milk + very sweet (4-5 sugars?)\n- iced chai w oat milk and ++ ginger\n- matcha latte w oat milk (iced or hot) + vanilla\n- lavender oat milk cappuccino\n- diet root beer or dr pepper https://t.co/xy1a0ntcpo",
+ "5 drinks to know me:\ncoke zero\nfilter coffee\nriesling wine\nheineken\ndr pepper https://t.co/cmlgbvudey",
+ "i drink pure orange juice from concentrate with no bits, lucozade sport orange flavor, dr. pepper, pepsi, coca-cola, fanta orange, tango orange. those are the only drinks i can tolerate and they all have to be the brand versions.",
+ "dr pepper\nenlighten like yerba mate\nthai tea\ntropical green tea\nice water from a specific mug https://t.co/vmogx2ti3q",
+ "5 drinks to get to know me\n\n- jeremiah johnson mountain man scotch ale\n- lagavulin 16 scotch whisky\n- ravel blend coffee (aeropress)\n- key lime lacroix\n- dr pepper https://t.co/vqz0z2upah",
+ "5 drinks to get to know me\n\n-water\ndr. pepper\n- ice tea\n-monster energy zero ultra\n-orange juice https://t.co/xvgjlodu84",
+ "5 drinks to know me by:\n1. diet dr pepper\n2. diet dr pepper\n3. diet dr pepper\n4. diet dr pepper\n5. diet dr pepper",
+ "update:\n\n5 drinks to get to know me\n\n1. coffee\n2. earl gray tea\n3. diet dr. pepper\n4. chai latte\n5. bubble tea that white people like https://t.co/aa9oqvmdth",
+ "sure this is fun\n* iced dirty chai; 2 or 3 shots depending on the day\n* dr pepper dr pepper dr pepper\n* jones soda, i don't care which\n* tea, earl grey, hot\n* monster, in a pinch. i miss monster assault https://t.co/lxqcifv4oq",
+ "5 drinks to get to know me\n\n-diet dr. pepper\n- diet coke\n-water\n-moroccan like tea\n-iced oat milk latte https://t.co/ttkq0ft5um",
+ "5 drinks to know me\n\nwater\ndr pepper\ncaptain morgan\ncoors light\nbang energy https://t.co/yeso6nvmp5",
+ "5 drinks to know me\narnold palmer\ndr pepper\ntea\ncucumber lime gatorade\ntwisted tea https://t.co/yk6yfidb5j",
+ "5 drinks to know me\nlime soda water\nplain club soda\ndr pepper\nmother mid beer\nfour loco",
+ "5 drinks to know me:\n\n1. sugar free red bull\n2. sugar free red bull\n3. brita water in the hydroflask\n4. miller high life\n5. dr. pepper strawberries & cream zero https://t.co/1q94dobygo",
+ "oh i gotta do this cause i luv a silly little drink:\n\ndr pepper\nbrown sugar boba\nmatcha/chai latte\nsnapple fruit punch\nstrawberry kombucha https://t.co/xgmfhscsrn",
+ "5 drinks to know me: (i'm diabetic so...)\n\niced coffee with heavy cream and sucralose drops.\niced tea\npeach iced tea\ndiet dr. pepper\norange gatorade zero\n\nwater...sometimes. https://t.co/jq4dnqnxjl",
+ "5 drinks to know me\n\ndr. pepper\nblack coffee with some sugar\njaggerbombs\norange juice\narizona green tea with ginseng and honey https://t.co/m3nq4smdxo",
+ "5 drinks to get to know me:\n\nginger ale\ndr. pepper\nespresso martini\ncranberry grape juice\norange juice (no pulp) https://t.co/c5zi9rwgoa",
+ "5 drinks to get to know me:\nvanilla cafe au lait\ndr pepper, from the fountain\ntahitian treat\nlemonade, lots of ice\nfizzy water with lime https://t.co/l7mr5jy97o",
+ "5 drinks to know me\n\ncoffee\ndr pepper\nwater\nred bull\nmtn dew pitch black https://t.co/s4q5neipxe",
+ "5 drinks to know me:\n\n- water only in my emotional support nalgene.\n-liquid iv lemon lime\n-liquid death\n-diet dr pepper in a bottle\n-pressed greens with ginger\n\nhonorable mention:\n-lavender london fog with oat milk https://t.co/zjuobefsgu",
+ "5 drinks to know me:\n\nчорний чай з цукром\ndr pepper\nолд фешнд\nsheridans\nфильтр-кава в картонному стаканчику из 7-11 на платформи потяга в сели посерд даниії https://t.co/o9q24i5bnm",
+ "hollow_red_circle las botellas de dr. pepper have the numbers 10, 2 and 4 because they represent the hours between meals when people's energy is in bad shape and can be revived by dr. pepper. #datoscuriosos",
+ "5 drinks to know me:\n1. coffee with cream hot_beverage\n2. diet mt. dew (can be preferred)\n3. ice water ice\n4. bigelow plantation mint tea teapot\n5. dr. pepper (fountain drink preferred) cup_with_straw",
+ "5 drinks to know me:\n\nlatte: no foam, regular milk, sweet, 110°\ncola\ndr. pepper\nperrier lemon\nchai with sugar and lemon https://t.co/wxz6ypthtg",
+ "5 drinks to know me:\n1) the triple shot iced americano\n2) diet dr. pepper\n3) caffeine-free diet coke with a lemon wedge\n4) the grotesquely overpriced mystic smoothie from sunlife\n5) the cucumber or jalapeño margarita https://t.co/fghtuzin41",
+ "5 drinks to know me\n\ncabana rebel from dutch bros\njamaica\narnold palmers\ndr pepper\nhorchata https://t.co/kuge1afbjs",
+ "5 drinks to know me:\n \ndr pepper\ncherry coke\ntequila and lemonade\nstrawberry lemonade\nmango passion https://t.co/oaj58oisby",
+ "5 drinks to know me:\niced tea-black, unsweetened\niced tea-green, unsweetened\niced coffee-black, unsweetened\nla croix-lemon, tangerine, or orange\ndr pepper https://t.co/yujagikpnd",
+ "5 drinks to know me:\n\ndiet dr. pepper\nlondon tooth\nwater\noatmilk strawberry cream frappuccino\nhalf cut tea https://t.co/qrik8tp7uq",
+ "5 drinks to get to know me\n\n1. unsweetened ice tea\n2. crystal light\n3. diet dr pepper on ice\n4. clase azul tequila\n5. seasonal starbucks cold brew https://t.co/jtgwt7zu8i",
+ "5 drinks to know me:\n\n- dr. pepper\n- iced blonde caramel latte\n- sweet red wine\n- tequila\n- white grape juice https://t.co/cxbveejqe3",
+ "5 drinks to know me:\nфильтр-кава/флет-вайт\nоблипиховий/имбирний/цитрусовий чай\ndr pepper\nсухе вино/напивсолодке вино\nbeer, dark lager https://t.co/u0tuvznxo9",
+ null
+ ],
+ "marker": {
+ "opacity": 0.5,
+ "size": 5
+ },
+ "mode": "markers+text",
+ "name": "1_drinks_know_to",
+ "text": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "1_drinks_know_to"
+ ],
+ "textfont": {
+ "size": 12
+ },
+ "type": "scattergl",
+ "x": [
+ 3.0326831,
+ 2.5114732,
+ 2.40674,
+ 2.1354334,
+ 2.2389395,
+ 2.5265849,
+ 2.1917589,
+ 2.2362926,
+ 2.6169467,
+ 2.6056395,
+ 2.8772247,
+ 2.5366738,
+ 2.285778,
+ 0.7527136,
+ 2.836111,
+ 3.5934768,
+ 2.389233,
+ 2.2923365,
+ 3.0261583,
+ 2.1028984,
+ 2.1908443,
+ 2.9107594,
+ 2.5428605,
+ 2.355115,
+ 2.7914915,
+ 2.726877,
+ 3.2358203,
+ 0.72247976,
+ 3.2031424,
+ 3.3030877,
+ 2.504279,
+ 2.6424918,
+ 2.8854373,
+ 2.3108835,
+ 3.1133158,
+ 2.2496474,
+ 2.696254,
+ 10.581696,
+ 2.0614085,
+ 2.37125,
+ 2.4640255,
+ 2.9675577,
+ 2.5624967,
+ 2.4667447,
+ 2.3036973,
+ 2.1740973,
+ 2.6236777,
+ 2.7892706,
+ 2.3234155,
+ 3.118556,
+ 0.7170632,
+ 2.6708837,
+ 2.8765357,
+ 2.4533253,
+ 3.3148623,
+ 3.2797928,
+ 0.7335091,
+ 3.4028523,
+ 3.3006146,
+ 3.0453548,
+ 2.4262443,
+ 2.1470494,
+ 2.2869494,
+ 3.0740964,
+ 3.1106675,
+ 2.0771072,
+ 2.2732892,
+ 2.1799102,
+ 2.7054615,
+ 2.196416,
+ 3.2351582,
+ 0.71382034,
+ 2.5111291,
+ 2.1140094,
+ 2.3664048,
+ 0.7213607,
+ 2.0872564,
+ 2.7880962,
+ 2.086219,
+ 2.6074169,
+ 3.0460017,
+ 2.449388,
+ 2.9850295,
+ 3.1550665,
+ 2.281338,
+ 0.7173367,
+ 2.6731129,
+ 2.2734458,
+ 2.2880485,
+ 2.698677,
+ 2.2290297,
+ 2.3045993,
+ 2.818959,
+ 2.8302977,
+ 2.258355,
+ 2.8553948,
+ 2.355389,
+ 3.2291434,
+ 3.2054348,
+ 0.7809149,
+ 2.408736,
+ 2.7427673,
+ 3.2400274,
+ 2.2411907,
+ 2.5385656,
+ 2.2897875,
+ 10.295332,
+ 3.3741102,
+ 2.4160628,
+ 3.2449129,
+ 0.7357159,
+ 2.3225904,
+ 2.2906756,
+ 2.4047012,
+ 2.4945657,
+ 3.001663,
+ 2.2945065,
+ 2.7309563,
+ 2.5172884,
+ 2.3875024,
+ 3.0994225,
+ 2.450326,
+ 3.2928174,
+ 2.7368493,
+ 3.0234587,
+ 2.2811322,
+ 3.1232953,
+ 2.5595493,
+ 2.5913322,
+ 2.2942836,
+ 2.1387708,
+ 3.2516615,
+ 2.2662396,
+ 0.7252154,
+ 3.6743298,
+ 2.4651282,
+ 2.2268765,
+ 2.2059088,
+ 2.6463053,
+ 2.6670134,
+ 2.5090897,
+ 2.4255457,
+ 2.1727898,
+ 2.3714507,
+ 0.7218897,
+ 2.58771
+ ],
+ "y": [
+ 4.85876,
+ 4.1293893,
+ 4.40274,
+ 4.7172174,
+ 4.644297,
+ 4.18884,
+ 4.4123135,
+ 4.1447377,
+ 4.0906143,
+ 4.9717164,
+ 4.590932,
+ 4.6718726,
+ 4.62887,
+ 5.317842,
+ 4.52326,
+ 4.429963,
+ 4.7493496,
+ 4.548277,
+ 4.7969074,
+ 4.35134,
+ 4.6238546,
+ 4.695986,
+ 4.2588496,
+ 5.014114,
+ 4.1831336,
+ 4.907497,
+ 4.63235,
+ 5.336354,
+ 4.316957,
+ 4.3463206,
+ 4.916146,
+ 4.5958996,
+ 4.2057805,
+ 4.657866,
+ 4.526649,
+ 4.160187,
+ 4.078749,
+ 3.7675529,
+ 4.591103,
+ 5.1827016,
+ 4.4543734,
+ 4.578669,
+ 4.888513,
+ 4.266081,
+ 5.0596414,
+ 4.595664,
+ 4.500771,
+ 4.669445,
+ 5.060028,
+ 4.469928,
+ 5.338816,
+ 4.9655247,
+ 4.5409436,
+ 4.490291,
+ 4.3259897,
+ 4.351668,
+ 5.328884,
+ 4.4802265,
+ 4.3771305,
+ 4.7490587,
+ 5.031281,
+ 4.123874,
+ 5.048121,
+ 4.6833944,
+ 4.693891,
+ 4.7380834,
+ 4.6820917,
+ 4.0698895,
+ 4.2448096,
+ 4.386518,
+ 4.818853,
+ 5.3531103,
+ 4.92696,
+ 5.002976,
+ 4.2302694,
+ 5.3400126,
+ 4.797951,
+ 4.443895,
+ 4.1986823,
+ 4.832807,
+ 4.8146152,
+ 5.055457,
+ 4.919205,
+ 4.9614143,
+ 4.136633,
+ 5.346437,
+ 4.8948345,
+ 5.049698,
+ 5.0085087,
+ 4.9302177,
+ 4.526383,
+ 5.0703125,
+ 4.3746114,
+ 4.567839,
+ 4.3259606,
+ 4.581891,
+ 4.732206,
+ 4.4598746,
+ 4.7843432,
+ 5.310837,
+ 4.0189714,
+ 4.8385515,
+ 4.4416738,
+ 4.638692,
+ 4.168491,
+ 5.0164037,
+ 4.37263,
+ 4.3902426,
+ 4.3201733,
+ 4.2856817,
+ 5.3254275,
+ 4.24729,
+ 5.0137596,
+ 4.0979385,
+ 4.139271,
+ 4.963508,
+ 4.1365395,
+ 4.5522966,
+ 4.7021756,
+ 4.801722,
+ 4.7079086,
+ 4.7961106,
+ 4.4173865,
+ 4.559585,
+ 4.336533,
+ 4.663546,
+ 4.542011,
+ 4.730769,
+ 4.4857593,
+ 4.1440806,
+ 4.7751174,
+ 4.3755555,
+ 4.509955,
+ 5.3393397,
+ 4.42363,
+ 4.8579526,
+ 4.6852527,
+ 4.4428244,
+ 4.3552856,
+ 4.252511,
+ 4.9148617,
+ 4.954476,
+ 4.7848263,
+ 4.1903605,
+ 5.340038,
+ 4.6290674
+ ]
+ }
+ ],
+ "layout": {
+ "annotations": [
+ {
+ "showarrow": false,
+ "text": "D1",
+ "x": 0.6067472875118256,
+ "y": 6.705519106984139,
+ "yshift": 10
+ },
+ {
+ "showarrow": false,
+ "text": "D2",
+ "x": 9.338795730471611,
+ "xshift": 10,
+ "y": 11.849241256713867
+ }
+ ],
+ "height": 750,
+ "shapes": [
+ {
+ "line": {
+ "color": "#CFD8DC",
+ "width": 2
+ },
+ "type": "line",
+ "x0": 9.338795730471611,
+ "x1": 9.338795730471611,
+ "y0": 1.5617969572544097,
+ "y1": 11.849241256713867
+ },
+ {
+ "line": {
+ "color": "#9E9E9E",
+ "width": 2
+ },
+ "type": "line",
+ "x0": 0.6067472875118256,
+ "x1": 18.070844173431396,
+ "y0": 6.705519106984139,
+ "y1": 6.705519106984139
+ }
+ ],
+ "template": {
+ "data": {
+ "bar": [
+ {
+ "error_x": {
+ "color": "rgb(36,36,36)"
+ },
+ "error_y": {
+ "color": "rgb(36,36,36)"
+ },
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "bar"
+ }
+ ],
+ "barpolar": [
+ {
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.5
+ },
+ "pattern": {
+ "fillmode": "overlay",
+ "size": 10,
+ "solidity": 0.2
+ }
+ },
+ "type": "barpolar"
+ }
+ ],
+ "carpet": [
+ {
+ "aaxis": {
+ "endlinecolor": "rgb(36,36,36)",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "rgb(36,36,36)"
+ },
+ "baxis": {
+ "endlinecolor": "rgb(36,36,36)",
+ "gridcolor": "white",
+ "linecolor": "white",
+ "minorgridcolor": "white",
+ "startlinecolor": "rgb(36,36,36)"
+ },
+ "type": "carpet"
+ }
+ ],
+ "choropleth": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "choropleth"
+ }
+ ],
+ "contour": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "contour"
+ }
+ ],
+ "contourcarpet": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "contourcarpet"
+ }
+ ],
+ "heatmap": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "heatmap"
+ }
+ ],
+ "heatmapgl": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "heatmapgl"
+ }
+ ],
+ "histogram": [
+ {
+ "marker": {
+ "line": {
+ "color": "white",
+ "width": 0.6
+ }
+ },
+ "type": "histogram"
+ }
+ ],
+ "histogram2d": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "histogram2d"
+ }
+ ],
+ "histogram2dcontour": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "histogram2dcontour"
+ }
+ ],
+ "mesh3d": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "type": "mesh3d"
+ }
+ ],
+ "parcoords": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "parcoords"
+ }
+ ],
+ "pie": [
+ {
+ "automargin": true,
+ "type": "pie"
+ }
+ ],
+ "scatter": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatter"
+ }
+ ],
+ "scatter3d": [
+ {
+ "line": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatter3d"
+ }
+ ],
+ "scattercarpet": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattercarpet"
+ }
+ ],
+ "scattergeo": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattergeo"
+ }
+ ],
+ "scattergl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattergl"
+ }
+ ],
+ "scattermapbox": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scattermapbox"
+ }
+ ],
+ "scatterpolar": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterpolar"
+ }
+ ],
+ "scatterpolargl": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterpolargl"
+ }
+ ],
+ "scatterternary": [
+ {
+ "marker": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "type": "scatterternary"
+ }
+ ],
+ "surface": [
+ {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ },
+ "colorscale": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "type": "surface"
+ }
+ ],
+ "table": [
+ {
+ "cells": {
+ "fill": {
+ "color": "rgb(237,237,237)"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "header": {
+ "fill": {
+ "color": "rgb(217,217,217)"
+ },
+ "line": {
+ "color": "white"
+ }
+ },
+ "type": "table"
+ }
+ ]
+ },
+ "layout": {
+ "annotationdefaults": {
+ "arrowhead": 0,
+ "arrowwidth": 1
+ },
+ "autotypenumbers": "strict",
+ "coloraxis": {
+ "colorbar": {
+ "outlinewidth": 1,
+ "tickcolor": "rgb(36,36,36)",
+ "ticks": "outside"
+ }
+ },
+ "colorscale": {
+ "diverging": [
+ [
+ 0,
+ "rgb(103,0,31)"
+ ],
+ [
+ 0.1,
+ "rgb(178,24,43)"
+ ],
+ [
+ 0.2,
+ "rgb(214,96,77)"
+ ],
+ [
+ 0.3,
+ "rgb(244,165,130)"
+ ],
+ [
+ 0.4,
+ "rgb(253,219,199)"
+ ],
+ [
+ 0.5,
+ "rgb(247,247,247)"
+ ],
+ [
+ 0.6,
+ "rgb(209,229,240)"
+ ],
+ [
+ 0.7,
+ "rgb(146,197,222)"
+ ],
+ [
+ 0.8,
+ "rgb(67,147,195)"
+ ],
+ [
+ 0.9,
+ "rgb(33,102,172)"
+ ],
+ [
+ 1,
+ "rgb(5,48,97)"
+ ]
+ ],
+ "sequential": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ],
+ "sequentialminus": [
+ [
+ 0,
+ "#440154"
+ ],
+ [
+ 0.1111111111111111,
+ "#482878"
+ ],
+ [
+ 0.2222222222222222,
+ "#3e4989"
+ ],
+ [
+ 0.3333333333333333,
+ "#31688e"
+ ],
+ [
+ 0.4444444444444444,
+ "#26828e"
+ ],
+ [
+ 0.5555555555555556,
+ "#1f9e89"
+ ],
+ [
+ 0.6666666666666666,
+ "#35b779"
+ ],
+ [
+ 0.7777777777777778,
+ "#6ece58"
+ ],
+ [
+ 0.8888888888888888,
+ "#b5de2b"
+ ],
+ [
+ 1,
+ "#fde725"
+ ]
+ ]
+ },
+ "colorway": [
+ "#1F77B4",
+ "#FF7F0E",
+ "#2CA02C",
+ "#D62728",
+ "#9467BD",
+ "#8C564B",
+ "#E377C2",
+ "#7F7F7F",
+ "#BCBD22",
+ "#17BECF"
+ ],
+ "font": {
+ "color": "rgb(36,36,36)"
+ },
+ "geo": {
+ "bgcolor": "white",
+ "lakecolor": "white",
+ "landcolor": "white",
+ "showlakes": true,
+ "showland": true,
+ "subunitcolor": "white"
+ },
+ "hoverlabel": {
+ "align": "left"
+ },
+ "hovermode": "closest",
+ "mapbox": {
+ "style": "light"
+ },
+ "paper_bgcolor": "white",
+ "plot_bgcolor": "white",
+ "polar": {
+ "angularaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "bgcolor": "white",
+ "radialaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ }
+ },
+ "scene": {
+ "xaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "yaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "zaxis": {
+ "backgroundcolor": "white",
+ "gridcolor": "rgb(232,232,232)",
+ "gridwidth": 2,
+ "linecolor": "rgb(36,36,36)",
+ "showbackground": true,
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ }
+ },
+ "shapedefaults": {
+ "fillcolor": "black",
+ "line": {
+ "width": 0
+ },
+ "opacity": 0.3
+ },
+ "ternary": {
+ "aaxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "baxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ },
+ "bgcolor": "white",
+ "caxis": {
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside"
+ }
+ },
+ "title": {
+ "x": 0.05
+ },
+ "xaxis": {
+ "automargin": true,
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "title": {
+ "standoff": 15
+ },
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ },
+ "yaxis": {
+ "automargin": true,
+ "gridcolor": "rgb(232,232,232)",
+ "linecolor": "rgb(36,36,36)",
+ "showgrid": false,
+ "showline": true,
+ "ticks": "outside",
+ "title": {
+ "standoff": 15
+ },
+ "zeroline": false,
+ "zerolinecolor": "rgb(36,36,36)"
+ }
+ }
+ },
+ "title": {
+ "font": {
+ "color": "Black",
+ "size": 22
+ },
+ "text": "Documents and Topics",
+ "x": 0.5,
+ "xanchor": "center",
+ "yanchor": "top"
+ },
+ "width": 1200,
+ "xaxis": {
+ "visible": false
+ },
+ "yaxis": {
+ "visible": false
+ }
+ }
+ },
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# topics, probabilities = model.transform(docs, corpus_embeddings)\n",
+ "\n",
+ "# reduced_embeddings = UMAP(n_neighbors=10, n_components=2, min_dist=0.0, metric='cosine').fit_transform(embeddings)\n",
+ "topic_model.visualize_documents(docs, embeddings=embeddings)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "c5f2fd00",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model.visualize_documents(docs, embeddings=embeddings)\n",
+ "# model.visualize_topics()\n",
+ "# model.get_document_info(docs)\n",
+ "# df = model.get_document_info(docs)\n",
+ "\n",
+ "# df.to_excel(\"test.xlsx\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "71619a1b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model.get_topics()\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "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.9.16"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}