diff --git a/s25/Louis_Lecture_Notes/19_JSON/19_JSON.pdf b/s25/Louis_Lecture_Notes/19_JSON/19_JSON.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9a14651b302fbfac18d19e44e2a74de32007415d
Binary files /dev/null and b/s25/Louis_Lecture_Notes/19_JSON/19_JSON.pdf differ
diff --git a/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON.ipynb b/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..75f75410b9fc9fe388e15cee284629a110c930e4
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON.ipynb
@@ -0,0 +1,491 @@
+{
+ "cells": [
+  {
+   "attachments": {},
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Announcements\n",
+    "\n",
+    "  - **Exam 1 issues?** -- email me to get it corrected."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import csv\n",
+    "import json # today's topic!"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Read in the csv survey data data and the cell function.\n",
+    "\n",
+    "# source:  Automate the Boring Stuff with Python\n",
+    "def process_csv(filename):\n",
+    "    exampleFile = open(filename, encoding=\"utf-8\")  \n",
+    "    exampleReader = csv.reader(exampleFile) \n",
+    "    exampleData = list(exampleReader)        \n",
+    "    exampleFile.close()  \n",
+    "    return exampleData\n",
+    "\n",
+    "cs220_csv = process_csv('cs220_survey_data.csv')\n",
+    "cs220_header = cs220_csv[0]\n",
+    "cs220_data = cs220_csv[1:]\n",
+    "\n",
+    "def cell(row_idx, col_name):\n",
+    "    col_idx = cs220_header.index(col_name)\n",
+    "    val = cs220_data[row_idx][col_idx]\n",
+    "    if val == \"\":\n",
+    "        return None\n",
+    "    elif col_name == \"Age\":\n",
+    "        return int(val)\n",
+    "    elif col_name == 'Latitude' or col_name == 'Longitude':\n",
+    "        return float(val)\n",
+    "    else:\n",
+    "        return val\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Warmup"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 1: Put survey_data into buckets by lecture\n",
+    "#   Make a dictionary of lists\n",
+    "#   Key is the lecture\n",
+    "#   Value is the list of students, where each student is a dictionary\n",
+    "\n",
+    "lecture_dict = {}\n",
+    "for i in range(len(cs220_data)):\n",
+    "    current_student = cs220_data[i]\n",
+    "    current_lecture = cell(i, 'Lecture')\n",
+    "    pass\n",
+    "lecture_dict"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 2: Find the average, min, and max age for your lecture\n",
+    "\n",
+    "people_age = []\n",
+    "for person in lecture_dict[???]:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 3: Make a dictionary of each lecture's average age\n",
+    "# The key is the lecture name\n",
+    "# The value is the average age\n",
+    "\n",
+    "lec_age_dict = {}\n",
+    "for lec in lecture_dict:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 4: Same thing as before except...\n",
+    "# The key is the lecture name\n",
+    "# The value is a dictionary (nested dictionary!)\n",
+    "#  ... with keys 'avg', 'min', and 'max'\n",
+    "\n",
+    "lec_age_dict = {}\n",
+    "for lec in lecture_dict:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# JSON Format\n",
+    "\n",
+    "## Reading\n",
+    "\n",
+    "- [Sweigart Ch 16](https://automatetheboringstuff.com/2e/chapter16/)\n",
+    "\n",
+    "\n",
+    "## Learning Objectives\n",
+    "After this lecture you will be able to...\n",
+    "- Interpret JSON formatted data and recognize differences between JSON and Python\n",
+    "- Deserialize data from JSON for use in Python programs (read)\n",
+    "- Serialize data into JSON for long term storage (write) "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Let's look at [lecture slides](./19_JSON.pdf).  Pay particular attention to:\n",
+    "\n",
+    "- JSON format comparing *dict of dicts* to *JSON files*\n",
+    "- JSON origin and acronymn\n",
+    "- Minor JavaScript vs. Python differences"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Deserialize\n",
+    "def read_json(path):\n",
+    "    with open(path, encoding=\"utf-8\") as f: # f is a variable \n",
+    "        return json.load(f)                 # f represents a reference the JSON file\n",
+    "    \n",
+    "# Serialize\n",
+    "def write_json(path, data):\n",
+    "    with open(path, 'w', encoding=\"utf-8\") as f:\n",
+    "        json.dump(data, f, indent=2)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "first, let's take a look at the file `score_history.json`, read it in using `read_json()` and print out the data."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 14,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "{'bob': [20.0, 10.0], 'alice': [30.0, 20.0], 'meena': [100.0, 10.0]}\n"
+     ]
+    }
+   ],
+   "source": [
+    "# now let's read it in and investigate the data\n",
+    "scores_dict = read_json('score_history.json')\n",
+    "# print(type(scores_dict))\n",
+    "# print(scores_dict.keys())\n",
+    "# print(scores_dict['bob'])\n",
+    "# print(scores_dict)\n",
+    "\n",
+    "# scores_dict['cole'] = [50.0, 20.0]\n",
+    "print(scores_dict)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Let's practice writing to a JSON file\n",
+    "# when I'm testing code, I like to name my output file differently from my input file\n",
+    "# so that I don't accidentally erase or overwrite my data\n",
+    "write_json('score_history2.json', scores_dict)  "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### We can make JSON files in many varied ways\n",
+    "### This makes a list of dictionaries"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Code from last lecture, \n",
+    "# reads in the survey data into a list of dicts\n",
+    "table_dict_list = []\n",
+    "for i in range(len(cs220_data)):\n",
+    "    row = cs220_data[i]\n",
+    "    row_dict = {}\n",
+    "    for item in cs220_header: # iterate through each column name\n",
+    "        row_dict[item] = row[cs220_header.index(item)] # find the value in the row using .index\n",
+    "    \n",
+    "    # add row_dict to table_dict_list\n",
+    "    table_dict_list.append(row_dict)\n",
+    "    \n",
+    "table_dict_list[:3] # what is this? -- look at first 3 rows"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Let's write this list of dictionaries into a JSON file\n",
+    "write_json('cs220_as_json_list.json', table_dict_list)  "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Verify:  can you find this file in your directory?"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# let's write our original dictionary of lists - buckets into a JSON file\n",
+    "# NOTE: YOU MUST DO WARMUP TO HAVE THE lecture_dict VARIABLE\n",
+    "write_json('cs220_as_json_dict.json', lecture_dict)  "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Verify: can you find this file in your directory? "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### Many Web Sites have APIs that allow you to get their data"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "#### cs571.org"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Read cs571.json data\n",
+    "cs571_data = ...\n",
+    "cs571_data"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# What are each of the messages?\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Who are the unique posters?\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "#### Kiva.com Micro-lending site"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Take a look at kiva.json\n",
+    "\n",
+    "# read it into a dictionary\n",
+    "kiva_dict = read_json('kiva.json')\n",
+    "kiva_dict"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Plumbing the data\n",
+    "loan_list = ??? # this gives us a list of dicts\n",
+    "loan_list"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# what can we learn from this data?\n",
+    "for loan_dict in loan_list:\n",
+    "    print(type(loan_dict))\n",
+    "    for key in loan_dict:\n",
+    "        print(key)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# print out all the names\n",
+    "for loan_dict in loan_list:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# print out the total amount to loan\n",
+    "for loan_dict in loan_list:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# print out the min, max, and avg loan amounts\n",
+    "loan_amounts = []\n",
+    "for loan_dict in loan_list:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# print out all the country names\n",
+    "for loan_dict in loan_list:\n",
+    "    ???"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# more complex APIs...\n",
+    "\n",
+    "# Most require you to sign up and get a key:\n",
+    "\n",
+    "# https://developer.nytimes.com/apis\n",
+    "# https://developer.spotify.com/documentation/web-api\n",
+    "# https://developer.twitter.com/apitools/downloader\n",
+    "\n",
+    "# Some do not:\n",
+    "# https://data-cityofmadison.opendata.arcgis.com/datasets/metro-transit-bus-route-patterns/api\n",
+    "# specific route: https://maps.cityofmadison.com/arcgis/rest/services/Public/OPEN_DATA_TRANS/MapServer/19/query?where=trips_routes_route_id%20%3D%20'80'&outFields=*&outSR=4326&f=json\n",
+    "# specific nyt election data: https://static01.nyt.com/elections-assets/2020/data/api/2020-11-03/state-page/wisconsin.json"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'firstName': 'Joe',\n",
+       " 'lastName': 'Jackson',\n",
+       " 'gender': 'male',\n",
+       " 'age': 28,\n",
+       " 'address': {'streetAddress': '101', 'city': 'San Diego', 'state': 'CA'},\n",
+       " 'phoneNumbers': [{'type': 'home', 'number': '7349282382'}]}"
+      ]
+     },
+     "execution_count": 12,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Here is an example of how to download from a URL\n",
+    "\n",
+    "import requests\n",
+    "\n",
+    "url = \"https://filesamples.com/samples/code/json/sample2.json\"\n",
+    "r = requests.get(url)\n",
+    "data = r.json()\n",
+    "\n",
+    "data"
+   ]
+  }
+ ],
+ "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.10.12"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON_Solution.ipynb b/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON_Solution.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..fefc65d653ed3032cb08f265bd3741261ebfe4f7
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/Lec_19_JSON_Solution.ipynb
@@ -0,0 +1,828 @@
+{
+ "cells": [
+  {
+   "attachments": {},
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Announcements\n",
+    "\n",
+    "  - **Exam 1 issues?** -- email me to get it corrected."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import csv\n",
+    "import json # today's topic!"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Read in the csv survey data data and the cell function.\n",
+    "\n",
+    "# source:  Automate the Boring Stuff with Python\n",
+    "def process_csv(filename):\n",
+    "    exampleFile = open(filename, encoding=\"utf-8\")  \n",
+    "    exampleReader = csv.reader(exampleFile) \n",
+    "    exampleData = list(exampleReader)        \n",
+    "    exampleFile.close()  \n",
+    "    return exampleData\n",
+    "\n",
+    "cs220_csv = process_csv('cs220_survey_data.csv')\n",
+    "cs220_header = cs220_csv[0]\n",
+    "cs220_data = cs220_csv[1:]\n",
+    "\n",
+    "def cell(row_idx, col_name):\n",
+    "    col_idx = cs220_header.index(col_name)\n",
+    "    val = cs220_data[row_idx][col_idx]\n",
+    "    if val == \"\":\n",
+    "        return None\n",
+    "    elif col_name == \"Age\":\n",
+    "        if \".\" in val:\n",
+    "            return None\n",
+    "        return int(val)\n",
+    "    elif col_name == 'Latitude' or col_name == 'Longitude':\n",
+    "        return float(val)\n",
+    "    else:\n",
+    "        return val\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Warmup"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 1: Put survey_data into buckets by lecture\n",
+    "#   Make a dictionary of lists\n",
+    "#   Key is the lecture\n",
+    "#   Value is the list of students, where each student is a dictionary\n",
+    "\n",
+    "lecture_dict = {}\n",
+    "for i in range(len(cs220_data)):\n",
+    "    current_student = cs220_data[i]\n",
+    "    current_lecture = cell(i, 'Lecture')\n",
+    "    if current_lecture not in lecture_dict:\n",
+    "        lecture_dict[current_lecture] = []\n",
+    "    current_student = {}\n",
+    "    for header_value in cs220_header:\n",
+    "        current_student[header_value] = cell(i, header_value)\n",
+    "    lecture_dict[current_lecture].append(current_student)\n",
+    "# lecture_dict"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "17\n",
+      "28\n",
+      "19.09004739336493\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Warmup 2: Find the average, min, and max age for our lecture (LEC004)\n",
+    "\n",
+    "people_age = []\n",
+    "for person in lecture_dict[\"LEC004\"]:\n",
+    "    current_age = person['Age']\n",
+    "    if current_age != None:\n",
+    "        current_age = int(current_age)\n",
+    "        people_age.append(current_age)\n",
+    "    \n",
+    "print(min(people_age))\n",
+    "print(max(people_age))\n",
+    "print(sum(people_age) / len(people_age))\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'LEC004': 19.09004739336493,\n",
+       " 'LEC002': 19.476190476190474,\n",
+       " 'LEC001': 19.093617021276597,\n",
+       " 'LEC003': 19.219917012448132}"
+      ]
+     },
+     "execution_count": 7,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Warmup 3: Make a dictionary of each lecture's average age\n",
+    "# The key is the lecture name\n",
+    "# The value is the average age\n",
+    "\n",
+    "lec_age_dict = {}\n",
+    "for lec in lecture_dict:\n",
+    "    current_lec_ages = []\n",
+    "    for person in lecture_dict[lec]:\n",
+    "        current_age = person['Age']\n",
+    "        if current_age != None:\n",
+    "            current_age = int(current_age)\n",
+    "            current_lec_ages.append(current_age)\n",
+    "    lec_age_dict[lec] = sum(current_lec_ages) / len(current_lec_ages)\n",
+    "lec_age_dict"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'LEC004': {'avg': 19.09004739336493, 'min': 17, 'max': 28},\n",
+       " 'LEC002': {'avg': 19.476190476190474, 'min': 0, 'max': 31},\n",
+       " 'LEC001': {'avg': 19.093617021276597, 'min': 17, 'max': 31},\n",
+       " 'LEC003': {'avg': 19.219917012448132, 'min': 17, 'max': 38}}"
+      ]
+     },
+     "execution_count": 8,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Warmup 4: Same thing as before except...\n",
+    "# The key is the lecture name\n",
+    "# The value is a dictionary (nested dictionary!)\n",
+    "#  ... with keys 'avg', 'min', and 'max'\n",
+    "\n",
+    "lec_age_dict = {}\n",
+    "for lec in lecture_dict:\n",
+    "    current_lec_ages = []\n",
+    "    for person in lecture_dict[lec]:\n",
+    "        current_age = person['Age']\n",
+    "        if current_age != None:\n",
+    "            current_age = int(current_age)\n",
+    "            current_lec_ages.append(current_age)\n",
+    "    lec_age_dict[lec] = {}\n",
+    "    lec_age_dict[lec]['avg'] = sum(current_lec_ages) / len(current_lec_ages)\n",
+    "    lec_age_dict[lec]['min'] = min(current_lec_ages)\n",
+    "    lec_age_dict[lec]['max'] = max(current_lec_ages)\n",
+    "lec_age_dict"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# JSON Format\n",
+    "\n",
+    "## Reading\n",
+    "\n",
+    "- [Sweigart Ch 16](https://automatetheboringstuff.com/2e/chapter16/)\n",
+    "\n",
+    "\n",
+    "## Learning Objectives\n",
+    "After this lecture you will be able to...\n",
+    "- Interpret JSON formatted data and recognize differences between JSON and Python\n",
+    "- Deserialize data from JSON for use in Python programs (read)\n",
+    "- Serialize data into JSON for long term storage (write) "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Let's look at [lecture slides](./19_JSON.pdf).  Pay particular attention to:\n",
+    "\n",
+    "- JSON format comparing *dict of dicts* to *JSON files*\n",
+    "- JSON origin and acronymn\n",
+    "- Minor JavaScript vs. Python differences"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Deserialize\n",
+    "def read_json(path):\n",
+    "    with open(path, encoding=\"utf-8\") as f: # f is a variable \n",
+    "        return json.load(f)                 # f represents a reference the JSON file\n",
+    "    \n",
+    "# Serialize\n",
+    "def write_json(path, data):\n",
+    "    with open(path, 'w', encoding=\"utf-8\") as f:\n",
+    "        json.dump(data, f, indent=2)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# first, let's take a look at the file score_history.json"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 11,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "<class 'dict'>\n",
+      "dict_keys(['bob', 'alice', 'meena'])\n",
+      "[20.0, 10.0]\n",
+      "{'bob': [20.0, 10.0], 'alice': [30.0, 20.0], 'meena': [100.0, 10.0]}\n",
+      "{'bob': [20.0, 10.0], 'alice': [30.0, 20.0], 'meena': [100.0, 10.0], 'cole': [50.0, 20.0]}\n"
+     ]
+    }
+   ],
+   "source": [
+    "# now let's read it in and investigate the data\n",
+    "scores_dict = read_json('score_history.json')\n",
+    "print(type(scores_dict))\n",
+    "print(scores_dict.keys())\n",
+    "print(scores_dict['bob'])\n",
+    "print(scores_dict)\n",
+    "\n",
+    "scores_dict['cole'] = [50.0, 20.0]\n",
+    "print(scores_dict)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Let's practice writing to a JSON file\n",
+    "# when I'm testing code, I like to name my output file differently from my input file\n",
+    "# so that I don't accidentally erase or overwrite my data\n",
+    "write_json('score_history2.json', scores_dict)  "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### We can make JSON files in many varied ways\n",
+    "### This makes a list of dictionaries"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 14,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'Section': 'COMP SCI 220:LEC004, COMP SCI 220:LAB344',\n",
+       "  'Lecture': 'LEC004',\n",
+       "  'Printed Copy': 'No',\n",
+       "  'Age': '19',\n",
+       "  'Primary Major': 'Engineering: Other',\n",
+       "  'Other Majors': 'Engineering Mechanics',\n",
+       "  'Secondary Majors': '',\n",
+       "  'Zip Code': '53726',\n",
+       "  'Latitude': '44.39',\n",
+       "  'Longitude': '-89.83',\n",
+       "  'Data Science Major': 'No',\n",
+       "  'Pizza Topping': 'none (just cheese)',\n",
+       "  'Cats or Dogs': 'dog',\n",
+       "  'Runner': 'No',\n",
+       "  'Sleep Habit': 'night owl',\n",
+       "  'Procrastinator': 'Maybe',\n",
+       "  'Song': 'Family Ties-Baby Keem'},\n",
+       " {'Section': 'COMP SCI 220:LEC004, COMP SCI 220:LAB341',\n",
+       "  'Lecture': 'LEC004',\n",
+       "  'Printed Copy': 'Yes',\n",
+       "  'Age': '18',\n",
+       "  'Primary Major': 'Business: Finance',\n",
+       "  'Other Majors': '',\n",
+       "  'Secondary Majors': 'economics',\n",
+       "  'Zip Code': '53706',\n",
+       "  'Latitude': '22.7626',\n",
+       "  'Longitude': '120.3652',\n",
+       "  'Data Science Major': 'Maybe',\n",
+       "  'Pizza Topping': 'pineapple',\n",
+       "  'Cats or Dogs': 'dog',\n",
+       "  'Runner': 'Yes',\n",
+       "  'Sleep Habit': 'no preference',\n",
+       "  'Procrastinator': 'Yes',\n",
+       "  'Song': 'Singer: Haruno\\n\\nSong: Like a seraph'},\n",
+       " {'Section': 'COMP SCI 220:LAB324, COMP SCI 220:LEC002',\n",
+       "  'Lecture': 'LEC002',\n",
+       "  'Printed Copy': 'Yes',\n",
+       "  'Age': '19',\n",
+       "  'Primary Major': 'Science: Biology/Life',\n",
+       "  'Other Majors': '',\n",
+       "  'Secondary Majors': 'Data Science',\n",
+       "  'Zip Code': '53706',\n",
+       "  'Latitude': '',\n",
+       "  'Longitude': '',\n",
+       "  'Data Science Major': 'Yes',\n",
+       "  'Pizza Topping': 'mushroom',\n",
+       "  'Cats or Dogs': 'cat',\n",
+       "  'Runner': 'No',\n",
+       "  'Sleep Habit': 'early bird',\n",
+       "  'Procrastinator': 'Yes',\n",
+       "  'Song': 'All the songs by New Order'}]"
+      ]
+     },
+     "execution_count": 14,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Code from last lecture, \n",
+    "# reads in the survey data into a list of dicts\n",
+    "table_dict_list = []\n",
+    "for i in range(len(cs220_data)):\n",
+    "    row = cs220_data[i]\n",
+    "    row_dict = {}\n",
+    "    for item in cs220_header: # iterate through each column name\n",
+    "        row_dict[item] = row[cs220_header.index(item)] # find the value in the row using .index\n",
+    "    \n",
+    "    # add row_dict to table_dict_list\n",
+    "    table_dict_list.append(row_dict)\n",
+    "    \n",
+    "table_dict_list[:3] # what is this? -- look at first 3 rows"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Let's write this list of dictionaries into a JSON file\n",
+    "write_json('cs220_as_json_list.json', table_dict_list)  "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Verify:  can you find this file in your directory? "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# let's write our original dictionary of lists - buckets into a JSON file\n",
+    "write_json('cs220_as_json_dict.json', lecture_dict)  "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Verify: can you find this file in your directory? "
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### Many Web Sites have APIs that allow you to get their data"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "#### cs571.org"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Read cs571.json data\n",
+    "cs571_data = read_json('cs571.json')\n",
+    "# cs571_data"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 19,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "hello!\n",
+      "hello!\n",
+      "test\n",
+      "vroom\n",
+      "test\n",
+      "Test\n",
+      "Even MORE generic content\n",
+      "More generic posting content\n",
+      "I need this to be generic content\n",
+      "tttt\n",
+      "i <3 react\n",
+      "so I went running for answers\n",
+      "The evils of lucy was all around me\n",
+      "I didn't want to self destruct\n",
+      "found myself screaming in a hotel room\n",
+      "resentment that turned into a great depressions\n",
+      "abusing my power full of resentment\n",
+      "sometimes I did the same\n",
+      "I remember you was conflicted misusing your influence\n",
+      "r\n",
+      "Hello\n",
+      "hello\n",
+      "You got this!\n",
+      "test again\n",
+      "test\n"
+     ]
+    }
+   ],
+   "source": [
+    "# What are each of the messages?\n",
+    "cs571_messages = cs571_data['messages']\n",
+    "for msg in cs571_messages:\n",
+    "    print(msg['content'])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 20,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "['k.dot',\n",
+       " 'robert',\n",
+       " 'q',\n",
+       " 'b',\n",
+       " 'user',\n",
+       " 'car',\n",
+       " 'testaccmc1234',\n",
+       " 'chase',\n",
+       " 'g',\n",
+       " 'testtesttest1',\n",
+       " 'krirk1',\n",
+       " 'w',\n",
+       " 'newAnkit']"
+      ]
+     },
+     "execution_count": 20,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# What are the unique posters?\n",
+    "posters = []\n",
+    "for msg in cs571_messages:\n",
+    "    posters.append(msg['poster'])\n",
+    "posters = list(set(posters))\n",
+    "posters"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "#### Kiva.com Micro-lending site"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 21,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Take a look at kiva.json\n",
+    "\n",
+    "# read it into a dictionary\n",
+    "kiva_dict = read_json('kiva.json')\n",
+    "# kiva_dict"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 24,
+   "metadata": {
+    "collapsed": true,
+    "jupyter": {
+     "outputs_hidden": true
+    }
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'name': 'Polikseni',\n",
+       "  'description': \"Polikseni is 70 years old and married. She and her husband are both retired and their main income is a retirement pension of $106 a month for Polikseni and disability income for her husband of $289 a month. <br /><br />Polikseni's husband, even though disabled, works in a very small shop as a watchmaker on short hours, just to provide additional income for his family and to feel useful. Polikseni's husband needs constant medical treatment due to his health problems. She requested another loan, which she will use to continue paying for the therapy her husband needs. With a part of the loan, she is going to pay the remainder of the previous loan.\",\n",
+       "  'loanAmount': '1325.00',\n",
+       "  'geocode': {'city': 'Korce',\n",
+       "   'country': {'name': 'Albania',\n",
+       "    'region': 'Eastern Europe',\n",
+       "    'fundsLentInCountry': 9051250}}},\n",
+       " {'name': 'Safarmo',\n",
+       "  'description': \"Safarmo is 47 years old. She lives with her husband and her children in Khuroson district. <br /><br />Safarmo is a seamstress. She has been engaged in sewing for 10 years. She learned this activity with help of her mother and elder sister. <br /><br />Safarmo's sewing machine is old and she cannot work well. Her difficulty is lack of money. That’s why she applied for a loan to buy a new modern sewing machine. <br /><br />Safarmo needs your support.\",\n",
+       "  'loanAmount': '1075.00',\n",
+       "  'geocode': {'city': 'Khuroson',\n",
+       "   'country': {'name': 'Tajikistan',\n",
+       "    'region': 'Asia',\n",
+       "    'fundsLentInCountry': 64243075}}},\n",
+       " {'name': 'Elizabeth',\n",
+       "  'description': 'Elizabeth is a mom blessed with five lovely children, who are her greatest motivation in life.  She lives in the Natuu area of Kenya.  Elizabeth is one of the most hardworking women in sub-Saharan Africa.  Being a mother and living in a poor country has never been an excuse for Elizabeth, who has practiced mixed farming for the past few years.<br /><br />The cultural expectations in her area contribute to the notion that men should support their families.  However, Elizabeth works independently for the success of her children.  She perseveres because she wants to provide a better future for them.<br /><br />Elizabeth  has always loved farming. She is a very proud farmer and enjoys milking her dairy cows.  Elizabeth keeps poultry and grows crops, but she has not been making a good profit because of poor farming inputs. <br /><br />Elizabeth will use this loan to buy farm inputs and purchase high-quality seeds and good fertilizer to improve her crop production.  Modern farming requires the use of modern techniques, and, therefore, using high-quality seeds will assure her of a bumper harvest and increased profit levels.<br /><br />Elizabeth  is very visionary.  Her goal for the season is to boost her crop production over the previous year.',\n",
+       "  'loanAmount': '800.00',\n",
+       "  'geocode': {'city': 'Matuu',\n",
+       "   'country': {'name': 'Kenya',\n",
+       "    'region': 'Africa',\n",
+       "    'fundsLentInCountry': 120841775}}},\n",
+       " {'name': 'Ester',\n",
+       "  'description': 'Ester believes that this year is her year of prosperity. Ester is a hardworking, progressive and honest farmer from a very remote village in the Kitale area of Kenya. This area is very fertile, with favorable weather patterns that support farming activities. Ester is happily married and the proud mother of lovely children. Together, they live on a small piece of land that she really treasures. Her primary sources of income are eggs and milk.<br /><br />Although this humble and industrious mother makes a profit, she faces the challenge of not being able to produce enough to meet the readily available market. Therefore, she is seeking funds from Kiva lenders to buy farm inputs such as good fertilizer and good-quality seeds. Through this loan, Ester should double her production, and this will translate into increased income. She then intends to save more money in the future so that she can develop her farming.<br /><br />One objective that Juhudi Kilimo aims at fulfilling is increasing the ease of accessing farm inputs and income-generating assets for farmers. Through the intervention of Juhudi Kilimo and Kiva, inputs such as fertilizers and pesticides have become more accessible to its members than buying a bottle of water. Ester is very optimistic and believes this loan will change her life completely.',\n",
+       "  'loanAmount': '275.00',\n",
+       "  'geocode': {'city': 'Kitale',\n",
+       "   'country': {'name': 'Kenya',\n",
+       "    'region': 'Africa',\n",
+       "    'fundsLentInCountry': 120841775}}},\n",
+       " {'name': 'Cherifa',\n",
+       "  'description': 'Cherifa is married, 57 years old with two children. She caters and also sells the local drink. She asks for credit to buy the necessities, in particular bags of anchovies, bags of maize and bundles of firewood. She wants to have enough income to run the house well.',\n",
+       "  'loanAmount': '875.00',\n",
+       "  'geocode': {'city': 'Agoe',\n",
+       "   'country': {'name': 'Togo',\n",
+       "    'region': 'Africa',\n",
+       "    'fundsLentInCountry': 13719125}}}]"
+      ]
+     },
+     "execution_count": 24,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Plumbing the data\n",
+    "loan_list = kiva_dict['data']['lend']['loans']['values'] # this gives us a list of dicts\n",
+    "loan_list"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 27,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "<class 'dict'>\n",
+      "name\n",
+      "description\n",
+      "loanAmount\n",
+      "geocode\n",
+      "<class 'dict'>\n",
+      "name\n",
+      "description\n",
+      "loanAmount\n",
+      "geocode\n",
+      "<class 'dict'>\n",
+      "name\n",
+      "description\n",
+      "loanAmount\n",
+      "geocode\n",
+      "<class 'dict'>\n",
+      "name\n",
+      "description\n",
+      "loanAmount\n",
+      "geocode\n",
+      "<class 'dict'>\n",
+      "name\n",
+      "description\n",
+      "loanAmount\n",
+      "geocode\n"
+     ]
+    }
+   ],
+   "source": [
+    "# what can we learn from this data?\n",
+    "for loan_dict in loan_list:\n",
+    "    print(type(loan_dict))\n",
+    "    for key in loan_dict:\n",
+    "        print(key)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 28,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Polikseni\n",
+      "Safarmo\n",
+      "Elizabeth\n",
+      "Ester\n",
+      "Cherifa\n"
+     ]
+    }
+   ],
+   "source": [
+    "# print out all the names\n",
+    "for loan_dict in loan_list:\n",
+    "    print(loan_dict['name'])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 29,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "4350.0"
+      ]
+     },
+     "execution_count": 29,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# print out the total amount to loan\n",
+    "tot_loan_amount = 0.0\n",
+    "for loan_dict in loan_list:\n",
+    "    tot_loan_amount += float(loan_dict['loanAmount'])\n",
+    "tot_loan_amount\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 30,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "275.0\n",
+      "1325.0\n",
+      "870.0\n"
+     ]
+    }
+   ],
+   "source": [
+    "loan_amounts = []\n",
+    "for loan_dict in loan_list:\n",
+    "    loan_amounts.append(float(loan_dict['loanAmount']))\n",
+    "print(min(loan_amounts))\n",
+    "print(max(loan_amounts))\n",
+    "print(sum(loan_amounts) / len(loan_amounts))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 31,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Albania\n",
+      "Tajikistan\n",
+      "Kenya\n",
+      "Kenya\n",
+      "Togo\n"
+     ]
+    }
+   ],
+   "source": [
+    "# print out all the country names\n",
+    "for loan_dict in loan_list:\n",
+    "    print(loan_dict['geocode']['country']['name'])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 27,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# more complex APIs...\n",
+    "\n",
+    "# Most require you to sign up and get a key:\n",
+    "\n",
+    "# https://developer.nytimes.com/apis\n",
+    "# https://developer.spotify.com/documentation/web-api\n",
+    "# https://developer.twitter.com/apitools/downloader\n",
+    "\n",
+    "# Some do not:\n",
+    "# https://data-cityofmadison.opendata.arcgis.com/datasets/metro-transit-bus-route-patterns/api\n",
+    "# specific route: https://maps.cityofmadison.com/arcgis/rest/services/Public/OPEN_DATA_TRANS/MapServer/19/query?where=trips_routes_route_id%20%3D%20'80'&outFields=*&outSR=4326&f=json\n",
+    "# specific nyt election data: https://static01.nyt.com/elections-assets/2020/data/api/2020-11-03/state-page/wisconsin.json"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 32,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'firstName': 'Joe',\n",
+       " 'lastName': 'Jackson',\n",
+       " 'gender': 'male',\n",
+       " 'age': 28,\n",
+       " 'address': {'streetAddress': '101', 'city': 'San Diego', 'state': 'CA'},\n",
+       " 'phoneNumbers': [{'type': 'home', 'number': '7349282382'}]}"
+      ]
+     },
+     "execution_count": 32,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Here is an example of how to download from a URL\n",
+    "\n",
+    "import requests\n",
+    "\n",
+    "url = \"https://filesamples.com/samples/code/json/sample2.json\"\n",
+    "r = requests.get(url)\n",
+    "data = r.json()\n",
+    "\n",
+    "data"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "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.10.12"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/s25/Louis_Lecture_Notes/19_JSON/cs220_survey_data.csv b/s25/Louis_Lecture_Notes/19_JSON/cs220_survey_data.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5a0eb3c095988961ecdaba302d3afc56ac5704d5
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/cs220_survey_data.csv
@@ -0,0 +1,979 @@
+Section,Lecture,Printed Copy,Age,Primary Major,Other Majors,Secondary Majors,Zip Code,Latitude,Longitude,Data Science Major,Pizza Topping,Cats or Dogs,Runner,Sleep Habit,Procrastinator,Song
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",,,,,,,,,,,,,,,,
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Science: Physics,,,53726,43.0762,-89.409,No,sausage,cat,No,night owl,Maybe,The 
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Science: Chemistry,,Physics,53703,,,Maybe,mushroom,dog,No,no preference,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,20,Science: Other,,,53717,40.7128,-74.006,Maybe,sausage,cat,No,night owl,Yes,The Score - Money Run Low
+COMP SCI 319:LEC003,LEC003,Yes,24,Other (please provide details below).,Economics,,53703,30.5728,104.0668,No,pineapple,dog,Yes,early bird,Yes,Piano man Billy Joel
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,,,53706,40.71,-74,No,mushroom,dog,No,night owl,Yes,L.A. by Brent Faiyaz
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,38.9022,-77.0381,No,none (just cheese),dog,Yes,night owl,Yes,Risk - Gracie Abrams
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,22,Mathematics/AMEP,,,53703,43.2965,5.3698,No,mushroom,cat,No,night owl,Yes,false self - willow 
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,20,Computer Science,,,53718,43.0734,89.3865,Yes,sausage,dog,Yes,no preference,Yes,Fly Me to the Moon by Frank Sinatra
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Undecided,,53706,38.5849,-90.3762,No,none (just cheese),dog,No,night owl,Yes,Tequila Sunrise - The Eagles
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,44.5133,-88.0133,No,sausage,dog,No,early bird,Maybe,"Pursuit of Happiness, Kid Cudi"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Statistics,,,,,,Yes,mushroom,,No,night owl,No,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Data Science,.,.,53703,40.7128,-74.006,Yes,basil/spinach,cat,No,night owl,Yes,justin bieber or ken carson
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Finance,,Operations and Technology Management ,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Yes,Don’t have one
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",,,,,,,,,,,,,,,,
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,,53703,39.9042,116.4074,Maybe,mushroom,cat,Yes,early bird,Maybe,Country road
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,20,Computer Science,,,53726,37.5667,126.9783,Maybe,pepperoni,cat,No,night owl,Yes,Air - Ce matin-là
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53703,22.3964,114.1095,Yes,mushroom,neither,Yes,no preference,Maybe,just Friend
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,,Science: Physics,,,53715,43.0739,-89.3852,No,pepperoni,cat,Yes,night owl,Yes,"People Change, by Little Hurt"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Data Science,,,53703,42.359,-71.0586,Maybe,pineapple,dog,No,night owl,Yes,"tyler, the creator"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,Neurobiology,Psychology,53715,40.7128,-74.006,Yes,sausage,dog,No,night owl,No,"Cold Summer, Fabulous "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Engineering: Biomedical,N/A,considering neurobiology,53706,43.3178,88.379,No,sausage,dog,No,night owl,Yes,Big iron by Marty Robbins
+COMP SCI 319:LEC001,LEC001,Yes,24,Computer Science,,,53726,40.7128,-74.006,No,macaroni/pasta,cat,No,early bird,Yes,Yellow Submarine by the Beatles
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Biomedical,,,53705,21.1619,-86.8515,No,sausage,dog,Yes,night owl,Yes,dreams by fleetwood mac
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,,Engineering: Mechanical,,,53715,28.5383,-81.3792,No,sausage,cat,Yes,night owl,Yes,Ain't It Fun - Paramore
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Data Science,economics,,,,,Yes,sausage,dog,Yes,night owl,Maybe,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Data Science,Psychology,Data science,53715,41,120,Yes,pepperoni,dog,No,night owl,Yes,I like you ---Doja Cat
+COMP SCI 319:LEC004,LEC004,No,26,Data Science,,,53715,40.7128,-74.006,Yes,mushroom,dog,Yes,night owl,Yes,Young and Beautiful-- Lana Del Rey song
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Other,,,53706,13.7563,100.5018,No,pepperoni,cat,No,night owl,Yes,Again - Fetty Wap (clean version)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Engineering: Mechanical,,,53715,34.0126,-118.4371,No,none (just cheese),dog,No,night owl,Yes,Young Free and Single - Frank Jade
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Statistics,,Economics,53706,40.7128,-74.006,No,none (just cheese),cat,No,no preference,Yes,"Song: Fly Me To The Moon
+
+By: Frank Sinatra"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,22,Other (please provide details below).,information science,I have a certificate from the university in computer science,53175,26.642,409.9576,No,none (just cheese),cat,No,night owl,Yes,She Burns away - Briscoe EP
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Data Science,,,,43.0945,-87.8975,Yes,green pepper,dog,No,night owl,Yes,No Pole by Don Toliver
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Information Systems,,53726,46.5935,7.9091,Yes,green pepper,cat,No,night owl,Maybe,Feel Good Inc. by Gorillaz
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Information Science,,53703,43.0389,-87.9065,No,sausage,neither,No,night owl,Yes,D4VD
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,42.3314,-83.0458,No,pepperoni,dog,Yes,night owl,Maybe,fortnite lobby music
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Science: Biology/Life,,Statistics,53703,31,121,No,sausage,neither,No,night owl,Yes,love story taylor swift
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,,Pre-Business planning on doing Operation and Technology Management.,53715,38.9072,-77.0369,Yes,sausage,dog,No,no preference,Maybe,Taste by Sabrina Carpenter
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Data Science,,,53706,23.3,113.8,Yes,pineapple,cat,Yes,night owl,Maybe,"----------------------
+Kehlani, “After Hours”
+----------------------"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Mechanical,,,53706,37.1,25.4,No,sausage,cat,Yes,night owl,Yes,"We Major
+
+Kanye West"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,cat,No,early bird,Yes,Will I See You Again? - Thee Sacred Souls
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,21,Science: Other,N/A,I intend to declare a Data Sciences major as my second major. ,53706,39.9042,116.4074,Yes,pineapple,dog,No,night owl,Yes,I Love You - Riopy
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,Learning to Flt - Tom Petty
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Computer Science,,Data Science,53706,-1.2921,36.8219,Yes,pepperoni,cat,Yes,no preference,Yes,"Verdansk, Dave"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Other (please provide details below).,Economics,Data Science Certificate,53703,37.2489,-121.9452,No,pepperoni,dog,Yes,night owl,Yes,One of my favorite songs of all time is Hotel California by The Eagles.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Engineering: Mechanical,,,53706,43.0712,-89.3981,Maybe,basil/spinach,dog,No,night owl,Yes,
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,,"Economics, data science",53703,40.7128,-74.006,Maybe,green pepper,dog,No,early bird,No,lil tjay
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,,Other (please provide details below).,,,53703,39,116,Yes,pineapple,dog,Yes,no preference,Yes,Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Other,N/A,N/A,53706,41.3851,2.1734,No,sausage,dog,No,night owl,Yes,Broken Window Serenade
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Business: Information Systems,,,53703,,,No,basil/spinach,dog,Yes,night owl,Yes,Weston estate -water
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,40.7,74,No,sausage,cat,No,night owl,Yes,She Will lil wayne
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Data Science,,,53703,-34.6037,-58.3816,Yes,mushroom,dog,No,night owl,Yes,Christ Is Enough - Hillsong Worship
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Biomedical,,,,,,,,,,,,Any SZA song or country song ever
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,21,Mathematics/AMEP,,I do have data science and stats in minors.,53703,48.8566,2.3522,Yes,pepperoni,dog,Yes,night owl,Yes,"Recently, it would be 'Always' by Yoon Mi-rae. It's a Korean song."
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,,,,53706,-89.3852,Yes,pineapple,cat,Yes,night owl,Yes,love story
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC002,Yes,18,Engineering: Mechanical,,Philosophy,53706,,-89.4012,No,macaroni/pasta,dog,Yes,no preference,Yes,Bob Marley!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,,,53726,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Yes,Can't Tell Me Nothing by Kanye West
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,20,Data Science,,Possibly neurobiology,53715,41.8781,-87.6298,Yes,sausage,cat,No,night owl,Yes,Walk This Way by Aerosmith
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Data Science,didn't select,I'm also majoring in Economics. ,53706,41.881,-87.623,Yes,none (just cheese),dog,Yes,night owl,Maybe,Hey Driver By Zach Bryan 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Biomedical,n/a,n/a,53706,41.4979,-88.2313,No,sausage,dog,Yes,early bird,Maybe,NISSAN ALTIMA by Doechii
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,21,Science: Other,,,53702,43.0722,89.4008,No,pepperoni,dog,Yes,early bird,Yes,Some Nights by FUN
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Statistics,,,53706,30.0023,120.5681,Maybe,pepperoni,neither,Yes,night owl,Yes,"The First Snow
+
+by EXO"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,Materials Science and Engineering,no,53703,59.321,18.072,No,pepperoni,dog,Yes,night owl,Yes,Kingslayer (Feat. BABYMETAL) this ain't never getting played
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,21,Business: Finance,,,53715,51.5074,-0.1278,No,basil/spinach,cat,Yes,night owl,Yes,Hotel California by the Eagles
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Mechanical,,,57303,10,20,No,pepperoni,cat,No,night owl,No,Born in the USA - Bruce Springsteen
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,20,Computer Science,,,53705,37.5,121.4737,Maybe,pepperoni,cat,Yes,early bird,Yes,"Der Hexenkönig
+
+HyperGryph · 2023"
+COMP SCI 319:LEC003,LEC003,No,23,Other (please provide details below).,Agricultural and Applied Economics.,,53713,39.9042,116.4074,No,pepperoni,cat,No,night owl,Yes,"Hotel California
+
+Eagles"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Computer Science,,Data Science,53703,37.7749,-122.4194,Yes,pineapple,cat,Yes,night owl,Yes,rookie by knock2
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,43.0798,-89.5482,No,sausage,dog,Yes,early bird,No,Welcome to the Jungle by Guns n' Roses
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,21,Other (please provide details below).,Personal Finance,,53703,40.7536,-73.9992,Yes,pepperoni,dog,No,night owl,Yes,That's so True by Gracie Abrams 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,Yes,20,Other (please provide details below).,Information Science,Data Science (possibly),53706,25.7617,-80.1918,Yes,macaroni/pasta,dog,Yes,night owl,Yes,august by Taylor Swift
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Other (please provide details below).,I am majoring in Economics and Statistics.,"Economics, Statistics",53715,59.3293,18.0686,Maybe,pepperoni,cat,No,night owl,Yes,Snowman by Sia
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Other (please provide details below).,Information Science ,,53703,41.8781,-87.6298,No,none (just cheese),dog,No,no preference,Yes,"Cold Damn Vampires, Zach Bryan "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,21,Other (please provide details below).,Information Science,N/A,53713,41.8781,-87.6298,Maybe,pepperoni,dog,Yes,early bird,Yes,"I do not have a favorite song, but favorite artist would probably be Travis Scott"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Computer Science,,,53715,31.14,121.29,Maybe,mushroom,cat,Yes,night owl,Yes,if looks could kill by chrissy costanza
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,22,Computer Science,"My primary major is Information Science, however, I am doing a Computer Science Certificate. ",,53711,25.2048,55.2708,No,pineapple,dog,No,early bird,Yes,Til Further Notice - Travis Scott & 21 Savage
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,21,Business: Other,,,53715,40.9807,-73.6838,No,pepperoni,dog,No,early bird,No,Everywhere Fleetwood Mac
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,22,Computer Science,.,.,53715,35.8687,128.605,Maybe,none (just cheese),neither,No,night owl,Maybe,Hello - Luther Vandross
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Engineering: Industrial,,,53706,56.3217,-2.716,No,none (just cheese),dog,Yes,night owl,Yes,Guy for That by Post Malone and Luke Combs
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Other,,,53706,44.7316,-73.3937,No,pineapple,dog,No,night owl,Yes,Maine - Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,22,Data Science,,,53706,37.5665,126.978,Maybe,pepperoni,dog,No,night owl,Yes,Smells like teen spirit - nirvana
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,18,Engineering: Biomedical,,,53706,43.3209,-1.9845,Maybe,basil/spinach,dog,No,night owl,Yes,Stick Season by Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Other (please provide details below).,undecided,,53706,48.8566,2.3522,Yes,none (just cheese),neither,No,night owl,Maybe,"Typa girl, by BLACKPINK"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,-43.5321,172.6362,No,pepperoni,cat,No,night owl,Yes,You Got Me by The Roots & Erykah Badu 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,20,Business: Finance,N/A,"Mathematics, Finance",53703,44.8511,-93.4773,No,sausage,dog,Yes,night owl,Maybe,SUPERPOSITION - Daniel Caesar
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,20,Other (please provide details below).,Econ,,53703,36.7783,-119.4179,Maybe,pepperoni,cat,No,night owl,Yes,Gracie Abrams - That's so True
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Mathematics/AMEP,,,53703,-2.9001,-79.0059,Yes,green pepper,dog,Yes,night owl,Yes,I will Survive Gloria Gainor
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,N/A,Data Science Certificate,53706,32.7765,-79.9311,No,sausage,dog,Yes,early bird,Yes,Race My Mind-Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,,Computer Science,,,63706,0,0,Maybe,mushroom,dog,Yes,night owl,Yes,jump around
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,"Math, Stats",53706,38.6083,-90.1813,Yes,pepperoni,dog,Yes,night owl,Yes,"Search & Rescue
+
+By:Drake"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,21,Business: Finance,,,53703,27.6233,-80.3893,No,pepperoni,dog,No,night owl,Yes,"FourFiveSeconds, Rihanna, Kanye West"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Information Science ,,53703,35.0116,135.768,Maybe,Other,cat,Yes,early bird,No,"Say It Right, Nelly Furtado "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Mechanical,,,53703,21.4055,-157.7402,No,pepperoni,dog,Yes,early bird,Yes,"More - Bobby Darin
+
+ "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,21,Computer Science,,,53715,34.0522,-118.2437,No,sausage,dog,No,night owl,No,Dehors
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,21,Mathematics/AMEP,,,53715,30,120,Yes,none (just cheese),cat,No,night owl,Yes,Clean by Taylor Swift
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pineapple,cat,No,no preference,Maybe,dtmf by Bad Bunny
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Other,,"Data science, computer science",53706,44.3154,-89.902,Maybe,pepperoni,dog,No,night owl,Yes,Hozier -> From Eden
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,Political Science,,53706,41.8818,87.6298,No,none (just cheese),neither,No,night owl,Yes,"Sprinter, Dave & Central Cee"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,25,Data Science,,,53703,41.8781,-87.6298,Yes,pepperoni,neither,No,early bird,No,REBEL HEART - IVE
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,21,Data Science,,,53703,18.4562,-67.1221,Yes,pepperoni,cat,No,night owl,Yes,NuevaYol - Bad Bunny
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,20.6296,-87.0739,No,pepperoni,cat,Yes,night owl,Yes,Yellow by coldplay
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,Maybe,sausage,cat,No,night owl,Yes,Art House by Malcolm Todd
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53589,31.7684,35.2137,No,pepperoni,dog,Yes,night owl,Yes,"Rompe la Piñata, Voces Infantiles"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,20,Mathematics/AMEP,,,53703,30.2741,120.1551,No,pineapple,cat,No,night owl,Maybe,"Coming Home
+
+Peter Jeremias"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Business: Finance,,,63117,51.1785,-115.5743,Yes,pepperoni,dog,No,night owl,Yes,Iris - The Goo Goo Dolls
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Mechanical,,,53706,43.7401,7.4266,No,none (just cheese),dog,No,night owl,Yes,Crooked Smile - J Cole
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Other (please provide details below).,I am not sure. ,,53706,22.1987,113.5439,Maybe,sausage,cat,No,night owl,Yes,Happiness is a butterfly - Lana Del Rey
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,,53703,39.4698,-106.0492,Yes,sausage,dog,No,night owl,Yes,Sundream by Rufus Du Sol
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,21,Data Science,Data Science,,53703,30,,Yes,sausage,dog,No,early bird,Yes,Justin Biber
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Computer Science,,,53715,40.0384,-76.1078,No,mushroom,cat,No,night owl,Yes,エータ・ベータ・イータ - ルゼ (Eta Beta Eta - LUZE)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Science: Biology/Life,,Data Science,53706,43.0775,-89.4122,Maybe,pineapple,cat,No,night owl,Yes,Redbone - Childish Gambino
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,21,Data Science,,,53703,18.3381,-64.8941,Yes,pepperoni,dog,No,no preference,Yes,"I like It, by Debarge"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Other,,,53718,45.9409,89.4957,No,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Personal finance ,,53703,43.0722,89.4008,No,pineapple,dog,No,night owl,Yes,"Fast car, Luke combs"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Other,,Classical humanities,53703,44.9291,-87.1967,No,none (just cheese),cat,No,no preference,No,Avalyn I by Slowdive
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC004,No,19,Computer Science,,,53703,26.2146,78.1827,Maybe,mushroom,dog,No,night owl,Yes,"MOCKINGBIRD , eminem"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Data Science,,I am also an Economics major. ,53703,41.8781,-87.6298,Yes,pepperoni,cat,Yes,night owl,Yes,"""Me and Your Mamma"" by Childish Gambino "
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,21,Data Science,,,53715,23.1291,113.2644,Yes,pepperoni,dog,No,night owl,Yes,luther - Kendrick Lamar & SZA
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,Information systems,53711,-6.1751,106,No,pineapple,dog,Yes,night owl,Yes,Kelis
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Biomedical,,no,53706,43.0731,-89.4012,No,pineapple,cat,Yes,no preference,Yes,Any bonjovi music
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,No,sausage,dog,No,night owl,Yes,"Hypnotize, System of a Down"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,17,Data Science,None,Data Sciemce,53715,35.4532,-82.2871,Yes,green pepper,dog,Yes,night owl,Yes,Astronomy
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,20,Engineering: Mechanical,,,53715,110.7624,43.4799,No,pineapple,dog,Yes,night owl,No,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Engineering: Biomedical,,,53706,44.9778,-93.265,No,sausage,dog,Yes,no preference,Yes,Linger by The Cranberries
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Science: Chemistry,,Possibly data science?,53706,32.7157,-117.1611,Yes,basil/spinach,dog,Yes,early bird,Yes,Vienna by Billy Joel
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Business: Finance,,Data Science Certificate,53706,34.0736,-118.4004,Maybe,pepperoni,dog,Yes,night owl,Yes,We are young - by fun.
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,20,Computer Science,,"I am double majoring, and Data Science is my other major",53715,36.3932,25.4615,Yes,sausage,cat,Yes,early bird,No,Lovesick by Laufey
+COMP SCI 319:LEC003,LEC003,No,26,Data Science,,,53703,30.5728,104.0668,No,basil/spinach,dog,Yes,early bird,Maybe,"Billy Joe
+
+Piano man"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,45.4408,12.3155,No,pepperoni,dog,Yes,no preference,No,Luther by SZA and Kendrick Lamar
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Computer Science,Data Science ,53706,35.6762,139.7636,Yes,pepperoni,dog,Yes,night owl,Yes,Who Knows Who Cares - Local Natives
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,48.8566,2.3522,Maybe,pepperoni,dog,No,no preference,Yes,"""That's What I Like"" - Bruno Mars"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Science: Physics,,Astrophysics,53706,42.9665,-88.0032,No,sausage,dog,Yes,early bird,No,Where the Wild Things Are by Luke Combs
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,22,Statistics,Statistics ,Economics,53715,31.299,120.5853,Maybe,tater tots,cat,No,night owl,Maybe,Someone like you - Adele
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,41.9028,12.4964,Maybe,pepperoni,cat,No,night owl,Yes,"The Marías-Cariño
+
+The Killers-Jenny was a friend of mine"
+COMP SCI 319:LEC004,LEC004,Yes,24,Business: Information Systems,,,53705,22.9995,120.2293,Yes,macaroni/pasta,dog,No,night owl,Yes,None
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Data Science,,Economic,53703,22.3964,114.1095,Yes,pineapple,neither,No,night owl,Yes,Love yourself- Justin Bieber
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Mathematics/AMEP,,,53715,44.7439,-93.2171,No,sausage,dog,Yes,night owl,Yes,Viva La Vida by Coldplay
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,20,Other (please provide details below).,Undecided major,N/A,53703,37.5665,126.978,Maybe,Other,dog,No,early bird,No,Luther by Kendrick Lamar
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,N/A,Data Science,53703,37.5665,37.5665,Maybe,pepperoni,cat,No,night owl,Yes,I had some help - Post Malone
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Computer Science,,,53706,48.8566,2.3522,Yes,pepperoni,cat,Yes,early bird,Maybe,The Unforgiven by Metallica
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Business: Finance,,Statistics,53703,32.0853,34.7818,Maybe,none (just cheese),dog,Yes,night owl,Yes,Phoenix by A$AP Rocky
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Biomedical,,,53706,36.1699,-115.1398,No,sausage,dog,No,no preference,Maybe,My favorite song is What I've Done by Linkin Park.
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Biomedical,,,53706,48.8566,2.3522,No,sausage,dog,No,no preference,Maybe,Sunday Morning - Maroon 5
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,20,Other (please provide details below).,"Design, Innovation, and Society",,53706,40.7128,-74.006,Maybe,none (just cheese),dog,No,no preference,Maybe,You Are Enough - Sleeping At Last
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,41.8988,12.5024,No,sausage,dog,No,no preference,No,Nine Ball by Zach Bryan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Business: Finance,,,53703,37.9838,23.7275,Maybe,pepperoni,neither,No,early bird,Yes,Redbone- Childish Gambino
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Engineering: Biomedical,,,53706,39.6635,-106.6218,No,pepperoni,dog,No,night owl,No,One of These Mornings - Zeds Dead
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Business: Actuarial,,,53706,48.8647,2.349,Maybe,none (just cheese),dog,Yes,night owl,Maybe,I remember everything by Zach Bryan
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,,Engineering: Mechanical,,,53706,44.86,-92.63,No,pepperoni,dog,Yes,night owl,Yes,"still standing, Elton john"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Personal Finance,53715,60.8608,7.1118,No,pineapple,dog,No,night owl,No,"""Sultans of Swing"" - Dire Straits"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53715,42.3601,-71.0589,No,pepperoni,dog,No,no preference,Maybe,Colder Weather - Zac Brown Band 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Other (please provide details below).,My primary major is Economics. ,data sciences,53703,33,107,Yes,pineapple,neither,No,night owl,Yes,《BYE BYE BYE》lovestoned
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Industrial,,,53703,51.5074,-0.1278,No,pineapple,dog,Yes,early bird,Yes,Julia - SZA
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,44.1874,-89.8742,No,sausage,dog,No,night owl,Yes,"We Are Young (feat. Janelle Monae), by Fun."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Mechanical,,,53706,-25.4075,-49.2825,No,Other,dog,No,no preference,No,Xtal by Aphex Twin
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Industrial,,,53715,43.3328,-88.0074,No,sausage,cat,Yes,early bird,No,Any song by the eagles
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53703,38.5394,-0.1912,Maybe,pepperoni,dog,No,night owl,Yes,Beautiful Things Benson Boone 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Data Science,,,53703,41.8781,87.6298,Yes,pepperoni,dog,No,night owl,Yes,More Than My Hometown by Morgan Wallen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Statistics,,Music,53715,44.9778,-93.265,Maybe,pepperoni,cat,No,night owl,Yes,"Texas Blue, Quadeca"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Economics,N/A,53703,44.8897,93.3499,Maybe,none (just cheese),dog,No,night owl,Maybe,Erase Me - Kid Cudi
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Other,Materials Science and Engineering ,none,53703,-23.01,-44.31,No,basil/spinach,dog,No,early bird,Maybe,halo - beyonce 
+COMP SCI 319:LEC001,LEC001,No,25,Engineering: Biomedical,no,no,53705,30,30,Maybe,pineapple,dog,Yes,no preference,Yes,SULONG WANG
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Other (please provide details below).,Economics ,Data Science,53706,12.9716,77.5946,Yes,pepperoni,dog,No,night owl,Maybe,Where is my mind-pixies
+COMP SCI 319:LEC002,LEC002,Yes,26,Data Science,INTERNATIONAL PUBLIC AFFAIRS,,53593,43.7696,11.2558,Maybe,mushroom,dog,Yes,night owl,Yes,"Sam Smith Say it first
+
+Sam Smith  Too Good At GoodByes"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Computer Science,,,53703,43.0718,-89.3949,No,Other,dog,Yes,night owl,Yes,DragonForce - Ashes of the Dawn
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,Don‘t make sure,nope,53707,1,1,Maybe,macaroni/pasta,dog,No,no preference,No,Girls Want Girls
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Biomedical,,,53706,42.3601,-71.0589,No,pepperoni,cat,Yes,early bird,Yes,"Walking on Sunshine, katrina and the waves "
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,24,Computer Science,,Psychology,53715,42.3601,-71.0589,Maybe,pepperoni,cat,No,night owl,Yes,"Pink Pony Club, Chappel Roan (but specifically the Plankton version)"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Science: Physics,,,53706,41.9028,12.4964,Maybe,sausage,cat,No,no preference,Yes,Don't Stop Believin' - Journey
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Engineering: Mechanical,,,53703,53.23,-9.71,No,pepperoni,dog,No,night owl,Yes,"Here Today, The Chameleons"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,35,Other (please provide details below).,Genetics and Genomics,Data Science,53706,8.815,108.4755,Yes,Other,neither,No,night owl,Yes,The Final Countdown
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,21,Other (please provide details below).,其实我到现在还没决定我的专业。但我可能会选择信息科学。,,53706,-37.8136,144.9631,Maybe,pineapple,cat,Yes,no preference,Maybe,Anyone Crystal_Bats
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,22,Computer Science,,Data Science,53703,40.7128,151.2093,Yes,Other,dog,No,early bird,No,"Mozart, Don Giovanni.
+
+ "
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,,Data Science,,,53706,37,126,Yes,pineapple,dog,No,night owl,Yes,"I like K-pop. And Enhypen is my favorite group. My favorite song is ""No Doubt"" from Enhypen. I will be so excited if this song is played before class starts!"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,22,Engineering: Mechanical,,,53726,45.6927,-90.4011,No,sausage,cat,No,night owl,Yes,Ten Years Gone - Led Zeppelin 
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Other,,,53706,41.0082,28.9784,No,basil/spinach,cat,Yes,early bird,Yes,5 dollar pony rides - Mac Miller
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,,Other (please provide details below).,Economics,Data Science,53706,10.8231,106.6297,Yes,sausage,dog,No,night owl,Yes,Girl with the tattoo enter - Miguel
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,22,Other (please provide details below).,Economics,Data science,53703,37.5665,126.978,Yes,mushroom,cat,No,early bird,Maybe,Sting - shape of my heart
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,39.0742,21.8243,No,mushroom,dog,No,night owl,Yes,CHIHIRO - Billie Eilish
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Other (please provide details below).,Astronomy-Physics,,53706,48.1771,16.3806,Maybe,green pepper,dog,No,night owl,Yes,Speed the Collapse - Metric
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,,Science: Other,,,53715,48.8566,2.3522,No,basil/spinach,dog,No,no preference,Maybe,Delicate by Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,24,Computer Science,,,53703,41.8,-87.6298,No,pepperoni,neither,No,no preference,No,Babymonster - Drip
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Other (please provide details below).,Economics,,53706,34.6937,135.5022,No,basil/spinach,cat,No,night owl,Yes,Brazil by Declan McKenna 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Engineering: Mechanical,,,53706,41.3851,2.1734,No,pepperoni,dog,No,night owl,Yes,Summertime Sadness (Lana Del Rey Vs. Cedric Gervais) - Cedric Gervais Remix
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Statistics,Statistics ,Mathematics,53703,30,121,Maybe,sausage,neither,No,night owl,Yes,"Risk It All, Jason Zhang"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Currently a pre business student but looking to apply to the engineering school,,53706,51.1802,-115.5657,Maybe,macaroni/pasta,dog,Yes,no preference,Yes,"Younger Years Zach Bryan
+
+Chase Her Baily Zimmerman
+
+Big Country music guy"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Physics,,,53706,46.7828,-92.1055,Maybe,none (just cheese),cat,No,night owl,No,"Love’s Train 
+
+Bruno Mars, Anderson .Paak, Silk Sonic"
+COMP SCI 319:LEC002,LEC002,Yes,22,Science: Other,,,53726,47.6062,-122.3321,No,Other,dog,Yes,no preference,Maybe,"Fast Car - Luke Combs cover
+
+Blinding Lights - The Weeknd
+
+Alley Rose - Conan Grey
+
+Iris - Goo Goo Dolls, preferably Live Buffalo version
+
+Highwayman - the Highwaymen (Johnny Cash, Willie Nelson, Kris Kristoferson, Waylon Jennings)
+
+Dream Lantern - RADWIMPS <English version, not Japanese
+
+Help! - The Beatles
+
+Crimson and Clover - Joan Jett
+
+Tiny Dancer - Elton John"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,Yes,19,Science: Physics,physics ,,53717,28.2199,112.9175,No,sausage,neither,Yes,night owl,Yes,春雷  Yonezu Kenshi
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Industrial,,,53703,40.7128,-74.006,No,basil/spinach,dog,No,night owl,Yes,Favourite by Fontaines D.C.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Other (please provide details below).,Economics,Nope,53706,39.93,116.38,Maybe,sausage,dog,No,no preference,Maybe,Blank Space by Taylor Swift
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Actuarial,,,53711,43.0389,-87.9065,No,pepperoni,cat,Yes,early bird,Yes,Counting Stars- One Republic
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,,Other (please provide details below).,neurobiology,,53715,23.1291,113.2644,No,none (just cheese),dog,Yes,no preference,Maybe,head in the clound by hayd
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Other (please provide details below).,History,Biology,53706,39.9524,-75.1636,No,pepperoni,dog,No,night owl,Yes,"""Man on the Moon"" - Zella Day"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53715,45.4408,12.3155,No,Other,cat,No,night owl,Yes,The Fine Print by The Stupendium
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Data Science,,,53706,39.3377,-83.3528,Yes,none (just cheese),dog,No,no preference,Yes,You're So Vain by Carly Simon
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Other (please provide details below).,Undecided major - just exploring some areas of possible interest. ,n/a,53706,39.0699,-77.1847,Maybe,pepperoni,dog,Yes,night owl,Yes,Something in the way you move - Ellie Goulding
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Biomedical,,,53706,39.0742,21.8243,No,pepperoni,dog,No,night owl,Yes,Shirt by SZA
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Business: Actuarial,,Risk Management & Insurance,53703,34.8697,-111.7609,No,pepperoni,dog,Yes,no preference,Yes,"All Star, Smash Mouth"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Business: Finance,,,53703,42.3601,-71.0589,No,Other,dog,No,no preference,Maybe,(Don't Fear) The Reaper - Blue Oyster Cult
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Mechanical,n/a,n/a,53726,43.6275,89.7661,Yes,Other,cat,No,early bird,No,Why Georgia - John Mayer
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,22,Business: Other,,Political science,53715,25.033,121.5654,Maybe,none (just cheese),cat,Yes,early bird,Maybe,Everything Sucks / Vaultboy
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Political Science ,,53706,41.8781,87.6298,Maybe,none (just cheese),dog,Yes,night owl,Yes,Pyramids by Frank Ocean
+COMP SCI 319:LEC003,LEC003,No,24,Computer Science,,,53705,-3.846,-32.412,Yes,pepperoni,dog,No,early bird,No,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Data Science,,,53715,31.2304,121.4737,Yes,mushroom,cat,No,night owl,Yes,Exhale
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,20,Engineering: Industrial,,,53703,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Yes,Sunflower - Post Malone (feat. Swae Lee)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,18,Data Science,,,53706,44.8653,-93.367,Yes,pineapple,dog,No,night owl,Yes,When the sun goes down - Arctic Monkeys
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Computer Science,,,53706,28.7041,77.1025,Maybe,Other,dog,No,no preference,Yes,Sailor Song by Gigi Perez
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,20,Computer Science,,,53703,57.697,11.9865,No,mushroom,cat,No,no preference,No,Julia - Yellow Ostrich
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,19,Computer Science,,Information Systems,53703,41.8781,-87.6298,No,Other,dog,No,no preference,Maybe,"Hey Jude, The Beatles"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,22,Other (please provide details below).,Psychology,Information Science,53703,32.0603,118.7969,No,mushroom,neither,No,night owl,Yes,Wasteland - Royal & The Serpent
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,23,Science: Physics,Not applicable,Not applicable,53706,43.07,-89.4,No,pepperoni,dog,No,night owl,Yes,"Deference for Darkness, Marty O'Donnell"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,20,Computer Science,,,53715,46.1129,-89.6445,Maybe,pepperoni,dog,No,night owl,Yes,Mr.Brightside by The Killers
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Business: Actuarial,,,53715,3.1279,101.5945,Maybe,none (just cheese),cat,Yes,early bird,Yes,'lock/unlock' by jhope (ft. benny blanco)
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Physics,Physics,Astronomy,2420,42,71,Maybe,basil/spinach,dog,No,night owl,Maybe,Somebody Else by 1975
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,23.032,113.1181,No,none (just cheese),dog,Yes,no preference,Maybe,富士山下-陈奕迅
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,N/A (I can't submit the quiz unless there is an answer in this field),N/A (I can't submit the quiz unless there is an answer in this field),53706,40.7128,-74.006,No,Other,dog,No,night owl,No,"""Biking"" - Frank Ocean, JAY-Z, Tyler, The Creator"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,20,Other (please provide details below).,Global Health,,53715,50.5486,-4.586,No,green pepper,cat,No,no preference,Yes,Jackie and Wilson by Hozier
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,21,Other (please provide details below).,Economics,Political Science,53703,3.1409,101.6932,Maybe,sausage,cat,No,early bird,Yes,Selfless by The Strokes
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,41.8781,-87.6298,No,pepperoni,dog,No,early bird,No,This is the life by Amy Macdonald
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Statistics,,psychology,53706,48.8566,2.3522,No,sausage,neither,No,night owl,Yes,"The other side of paradise
+
+Glass animals"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC002,Yes,20,Data Science,,"Math,Computer science,Statistic",53706,30.2741,120.1551,Yes,sausage,dog,No,early bird,Maybe,Divina Commedia by GD
+COMP SCI 319:LEC003,LEC003,Yes,24,Engineering: Biomedical,,,53705,44.8113,-91.4985,No,sausage,dog,No,early bird,Yes,"Summer, Highland Falls - Billy Joel"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Other,,,53716,49.0835,19.2818,No,pepperoni,cat,No,no preference,Yes,Ides of March by Silverstein
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,information science,Fashion Design,53706,35.0077,135.7471,Maybe,pepperoni,dog,No,night owl,Maybe,Apple Cider by Beabadoobee
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Other,Civil Engineering,N/A,53218,35.2271,-80.8431,No,mushroom,dog,No,early bird,Maybe,One of my favorite songs at the moment is Oscar winning tears by Raye.
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,,Risk Managment and Insurance,53703,46.4676,10.3782,No,pineapple,dog,Yes,night owl,Yes,"Title: Stargazing 
+
+Artist: Myles Smith
+
+ "
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Biomedical,N/A,N/A,53715,39.7392,-104.9903,No,pineapple,dog,No,night owl,Yes,Why Why Why - Shawn Mendes
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,19,Engineering: Mechanical,,,53562,35.7242,139.7976,No,mushroom,neither,No,night owl,Maybe,Flashback by Miyavi
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Science: Other,Pharmacy -toxicology ,,53706,48.1351,11.582,No,pepperoni,dog,No,night owl,Yes,toosii - favorite song
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Undecided now,,53703,31.299,120.5853,Yes,pineapple,cat,No,night owl,Yes,Love story
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Science: Physics,,,53706,24.8801,102.8329,No,pineapple,neither,Yes,early bird,Yes,Cello Concerto in E Minor by Jacqueline du Pre
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,20,Science: Other,Astrophysics,,53715,36.3932,25.4615,Maybe,pepperoni,dog,Yes,night owl,Maybe,Da Fonk (feat. Joni) - Mochakk
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Biomedical,,,53703,39.0968,120.0324,No,pepperoni,dog,No,no preference,No,Blood Bank - Bon Iver
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,21,Engineering: Other,,,53711,25,55,No,pepperoni,dog,No,night owl,Yes,Freebird - Lynyrd Skynyrd
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Engineering: Biomedical,,,53706,43.0731,-89.4012,No,pepperoni,dog,Yes,no preference,No,Love Lost by Mac Miller
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,,,53703,30.25,120.16,Yes,pineapple,dog,No,night owl,Yes,Regular Friends By David Tao
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,44.9355,-88.1572,No,pepperoni,dog,Yes,night owl,Yes,River - Leon Bridges
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Other,,,53706,45,92,No,pineapple,dog,Yes,night owl,Yes,"Misty mountains by The Wellerman
+
+or 
+
+I See Fire vinny marchi and bobby bass"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Engineering: Other,,,53703,41.9028,12.4964,No,sausage,cat,Yes,night owl,Yes,Jupiter from The Planets by Gustav Holst
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,20,Engineering: Industrial,,Computer Science,53706,26.8206,30.8025,Maybe,basil/spinach,dog,Yes,no preference,Maybe,"""In the stars"" : Benson Boone"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,,Data Science,,Cartography & GIS,53706,59.9138,10.7387,Yes,pepperoni,dog,No,night owl,Yes,"No Woman No Cry (live at the Lyceum, London, 1975), Bob Marley & The Wailers"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Mechanical,,,53706,47.6062,-122.3321,Maybe,pepperoni,cat,No,night owl,Yes,O Valencia! by The Decemberists
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,Economics,,53703,43.07,-89.4,Yes,pepperoni,dog,No,night owl,Yes,Otherside - Red Hot Chilli Peppers
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Business: Other,,,53706,43.0666,-89.3993,No,pepperoni,neither,Yes,night owl,Yes,"Don't Stop Me Now
+
+Queen"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,22,Business: Finance,,,53703,43.7696,11.2558,No,sausage,cat,No,night owl,Yes,Hungersite by Goose
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,40.7608,111.891,No,pepperoni,dog,Yes,early bird,Maybe,One Thing at a Time Morgan Wallen
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53706,44.9537,-93.09,No,sausage,dog,No,night owl,No,Tweaker - Gelo
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC001,Yes,19,Other (please provide details below).,Physics,Data Science,53706,55.7558,37.6173,Maybe,mushroom,cat,Yes,no preference,Yes,Tweaker by Gelo
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,我的主要专业是新闻学。,我的第二个专业是数据科学。,53706,30.5728,104.0668,Yes,pineapple,dog,Yes,night owl,Yes,My favorite song is Getaway Car from Taylor Swift.
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,Data Science,53706,55.6761,12.5683,Yes,sausage,cat,No,night owl,No,Kyoto - Phoebe Bridgers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Engineering: Other,,,53715,35.6895,139.6917,No,pepperoni,dog,No,no preference,Yes,Money Trees by Kendrick Lamar
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Data Science,,Econ,53706,16.0544,108.2022,Yes,sausage,dog,Yes,night owl,Yes,Sunroof (Nicky Youre & Dazy) 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Statistics,,,53706,20.6028,-105.2337,No,sausage,dog,No,night owl,Yes,Best Love Song by T-Pain
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,,Computer Science,,,53706,30,120,No,sausage,cat,No,night owl,Yes,Ashes from fireworks(Chenyu Hua)
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,No,19,Engineering: Industrial,,,53706,39.9172,-105.7895,Maybe,pepperoni,dog,Yes,night owl,Yes,Silver Lining Mt. Joy
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,41.9924,-87.6971,No,green pepper,dog,Yes,no preference,Maybe,"New Person, Same Old Mistakes by Tame Impala "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,21,Computer Science,,,53706,40,120,Yes,pineapple,cat,Yes,no preference,No,Twenty-one pilot: <line>
+COMP SCI 319:LEC004,LEC004,Yes,23,Engineering: Industrial,,,53703,34,-119,No,mushroom,dog,No,night owl,Maybe,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,Economics,Political Science,53703,41.8781,-87.6298,No,sausage,dog,No,no preference,Maybe,Piano Man by Billy Joel
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,,Other (please provide details below).,Economics,,53706,,113.2644,No,mushroom,dog,No,night owl,Yes,Young Cai Xukun
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Linguistics,,53706,43.0981,-89.4986,Yes,pepperoni,dog,No,night owl,Yes,Steppa Pig by JPEGMAFIA
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,21,Engineering: Mechanical,,,53706,45.4015,-92.6522,No,pepperoni,dog,No,night owl,Yes,"Dear Maria, count me in by all time low
+
+only the good die young by billy joel
+
+aint no rest for the wicked by cage the elephant
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Other (please provide details below).,经济的,数据科学,53706,30.5928,114.3055,Yes,none (just cheese),cat,No,night owl,Maybe,"Had I Not Seen the Sun
+
+by HOYO-Mix/Chevy"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Business: Information Systems,,,53706,33.597,130.4081,Maybe,mushroom,dog,Yes,early bird,Maybe,Strategy - TWICE
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Other,Supply Chain Management & Operations and Technology Management,Data Science Certificate,53707,52.3702,4.8952,No,pepperoni,dog,No,no preference,Yes,Rhymes Like Dimes- MF DOOM
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Data Science,,Molecular and cell biology,53706,41.9028,12.4964,Yes,Other,cat,No,night owl,Yes,Fake tales of San francisco by arctic monkeys 
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,44.4932,11.3275,No,sausage,dog,Yes,night owl,Yes,"Wisconsin, On, Wisconsin. EA Sports College Football Marching Band"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC002,Yes,20,Statistics,,,53715,31.2304,121.4737,No,Other,dog,No,night owl,Yes,You'll be back (theme of Alexander Hamilton)
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Science: Biology/Life,,,53703,43038902,-87.9064,No,pepperoni,cat,No,night owl,Yes,dangerous - big data
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Science: Other,,,53703,30.25,120.1667,Maybe,pepperoni,neither,No,early bird,Maybe,Isahini-Lucy
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Statistics,,,53706,45.6378,-89.4113,No,pepperoni,cat,No,night owl,No,Lose yourself-Eminem 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,21,Other (please provide details below).,Accounting,Information Systems,53703,45.4642,9.19,No,basil/spinach,dog,Yes,night owl,Yes,Starting Over- Chris Stapleton 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Engineering: Mechanical,,,53706,44.3113,-93.928,No,Other,dog,No,no preference,Yes,Different 'Round Here by Riley Green Ft. Luke Combs
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,21,Business: Finance,,Risk Management and Insurance,53726,31.542,-82.4687,No,mushroom,dog,Yes,early bird,Yes,"Colder Weather, Zach Brown Band"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Business: Information Systems,,,53726,41.8781,-87.6298,Maybe,Other,dog,Yes,no preference,Yes,Way I Are by Timbaland
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Business: Actuarial,,Risk Management & Insurance,53715,19.0414,-98.2063,No,none (just cheese),cat,No,night owl,No,Return of the Mack by Mark Morrison
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,,Business: Information Systems,,,53703,41.8967,12.4822,No,pineapple,neither,No,no preference,Yes,"No scrubs, by tlc"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,Economics ,Psychology,53703,43.0389,-87.9065,No,pepperoni,dog,Yes,night owl,Maybe,alabama pines -Jason isbell
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,Currently Engineering Undecided,,53706,45.6495,13.7768,No,sausage,dog,Yes,no preference,Maybe,"The Veldt , deadmau5"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,48.5015,-113.9848,No,sausage,dog,Yes,night owl,Yes,through the wire- kanye west 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Other,I am undecided between different types of engineering. Im trying to decide between chemical and mechanical.,I might get a math certificate,53706,21.5808,-158.1053,No,pepperoni,dog,Yes,early bird,No,One of these nights by the egales
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53706,55.6755,12.5539,No,pepperoni,dog,No,no preference,No,OCT 33 by the Black Pumas 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Engineering: Mechanical,,,53703,41.8781,-87.6298,Yes,pepperoni,cat,No,night owl,Maybe,Bad Romance - Lady Gaga
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,German,53703,36.1627,-86.7816,No,sausage,dog,No,night owl,Maybe,Good Looking by Suki Waterhouse
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,,53706,17.385,78.4867,Yes,sausage,dog,Yes,night owl,Yes,Feather - Sabrina Carpenter
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC001,No,24,Mathematics/AMEP,,,53704,26.0745,119.2965,No,pepperoni,dog,No,night owl,Yes,"Just the Two of US - Grover Washington, Jr., Bill Withers"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,43.4138,-89.7148,No,pepperoni,dog,No,no preference,No,NOW WHAT? by Connor Price
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,Economics,,53572,42.3659,21.1545,No,none (just cheese),cat,Yes,early bird,Maybe,Tahir Meha - Ilir Shaqiri
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Business: Information Systems,,Operations and Technology Management (OTM),53703,33.5458,-117.7817,No,sausage,dog,No,no preference,Yes,"""Say Something"" - Zac Samuel Remix"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Computer Science,,,53702,51.5074,-0.1278,Yes,Other,dog,No,night owl,No,No One Like You - Scorpions
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,40.7128,-74.006,No,sausage,dog,No,early bird,No,"Mr. Brightside, The Killers"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Finance,,,53703,36.0566,-112.1251,Yes,pepperoni,dog,Yes,no preference,Yes,All Falls Down - Kanye West
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Statistics,,,53706,40.7128,-74.006,Yes,pineapple,dog,No,night owl,Yes,One Headlight - The Wallflowers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Industrial,,,53706,45.7852,-88.0987,Maybe,sausage,dog,No,night owl,No,"The Prodigal, Josiah Queen "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Other,,,53706,40.6299,14.4863,No,sausage,dog,No,night owl,Yes,Everlong by Foofighters
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53719,35.6895,139.6917,No,pepperoni,dog,Yes,night owl,Yes,From The Start - Laufey
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,NA,NA,53706,39.1447,8.3037,No,Other,dog,No,night owl,Maybe,hooked on a feeling
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,NA,NA,53706,45.1821,-93.6522,No,sausage,dog,No,night owl,Maybe,Ghost Town by Kanye West
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,22,Computer Science,,,53715,43.0731,89.4012,No,pepperoni,cat,No,night owl,Yes,The Great Mermaid - Lesserafim
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Engineering: Mechanical,,,53711,31.23,121.47,No,pepperoni,cat,No,night owl,Maybe,When you say nothing at all-Ronan Keating
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Mechanical,,,53706,41.8468,3.1286,No,basil/spinach,dog,Yes,early bird,Yes,MUSSEGU - Figa Flawas
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Science: Physics,,"Mathematics, Astrophysics",53703,43.4256,-88.1321,No,green pepper,dog,No,early bird,Yes,"2112, Rush"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,,,53706,35.6764,139.65,No,pepperoni,neither,Yes,night owl,Yes,my favorite song is Lost in Space by Derivakat
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Business: Finance,,Accounting,53703,41.8781,-87.6298,No,sausage,dog,No,night owl,No,"""Saturday Mornings"" by Cordae"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Other (please provide details below).,Economics,"Data Science, Computer Science",53706,42.4545,-83.502,Yes,sausage,cat,Yes,night owl,No,Upside Down
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,44.98,-93.26,No,basil/spinach,dog,Yes,night owl,Maybe,Surfin' USA - Beach Boys
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Biomedical,,,53706,23.4814,120.4539,Maybe,pepperoni,dog,Yes,night owl,Yes,"Photograph, Ed Sheeran"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,41.9956,-87.7029,Maybe,pineapple,dog,Yes,early bird,Yes,Virgen - Adolescent's Orquesta
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,N/A,N/A,53706,35.6895,139.6917,No,mushroom,dog,No,no preference,Yes,Unwritten by Natasha Bedingfield
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,22,Other (please provide details below).,Economics,Political Science,53703,55.6564,12.5983,No,pepperoni,cat,No,early bird,No,Good days by SZA
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,,Data Science,,,53703,40.767,-73.962,Yes,pepperoni,dog,Yes,night owl,Maybe,Saturn by SZA
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,22,Engineering: Industrial,,"Economics, Data Science",53703,-33.8688,151.2093,Yes,mushroom,dog,Yes,night owl,Maybe,"This month, my favorite song has been Burn, Burn, Burn by Zach Bryan. However, I'd say my 3 lifetime favorite songs are:
+
+* this is me trying, Taylor Swift
+
+* Somebody That I Used To Know, Gotye 
+
+* For Emma, Bon Iver"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Computer Science,,,53715,39.9042,116.4074,Maybe,mushroom,neither,No,night owl,Yes,"Chasing Pavements, Adele"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,,537152236,19.3785,-81.4007,Yes,pepperoni,dog,No,night owl,Yes,Coffee Bean - Travis Scott
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Mechanical,,,53706,11.5888,37.3881,No,none (just cheese),cat,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Mechanical,,,53706,38.627,-90.1994,No,none (just cheese),dog,No,night owl,Yes,Young Metro by Future and Metro Boomin
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Industrial,,,53703,43.77,11.2577,Maybe,pepperoni,dog,Yes,night owl,Yes,Sheep by Mt.Joy
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,20,Business: Other,Economics ,"data science, Risk Management and insurance ",53703,40.6281,14.485,Yes,sausage,cat,No,no preference,Maybe,new perspective - noah kahn 
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,.,.,53706,37.5665,126.978,No,pineapple,dog,No,early bird,Yes,Sunflower - Post Malone
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Engineering: Mechanical,,,53703,45.514,-122.6733,No,pepperoni,dog,Yes,night owl,Maybe,Cigarette Daydreams - Cage the Elephant 
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,Psychology,53726,52.52,13.405,Yes,pepperoni,dog,No,no preference,Yes,"El Muchacho de los Ojos Tristes, Jeanette"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Engineering: Mechanical,,,53706,41.4944,-87.8748,No,pepperoni,dog,Yes,night owl,Yes,Brazil- Declan Mckenna
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Data Science,,Information Sciences,53706,40.7128,-74.006,Yes,Other,dog,No,night owl,Yes,One More Love Song - Marc DeMarco
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Computer Science,,,53703,34.0522,-118.2437,Maybe,pepperoni,dog,No,night owl,Maybe,where you are - john summit
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Biomedical,N/A,Pre-Med (Not a major),53703,40.7293,-73.9964,No,sausage,cat,No,night owl,Yes,I Lived by OneRepublic
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Science: Physics,,,53706,47,122,No,pepperoni,neither,Yes,early bird,No,Clocks Coldplay
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Finance,,,53706,41.8318,-88.1098,Maybe,pepperoni,dog,No,no preference,Yes,No Pasa Nada by Fuerza Regida and Clave Especial 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Data Science,,Computer science,53706,43.8064,-87.7706,Yes,pepperoni,cat,Yes,night owl,Yes,holy land - wave to earth
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Mechanical,,,53706,52.52,13.405,No,macaroni/pasta,dog,Yes,night owl,Yes,"1812 Overture
+
+ by Pyotr Ilyich Tchaikovsky"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,,53703,34.5218,69.1807,Yes,green pepper,cat,No,night owl,Maybe,I don't listen to music!
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC003,Yes,21,Business: Finance,Economics,computer science,53703,22,66,Yes,mushroom,cat,No,night owl,Yes,Bahamus
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Mechanical,,,53703,42.3314,-83.0458,No,sausage,dog,Yes,night owl,Yes,Higher by Creed
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Science: Other,,Environmental Studies,53703,45.0124,-92.9921,No,basil/spinach,dog,Yes,early bird,Yes,Sunlight by Hozier
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,,,53706,32,117,No,sausage,dog,No,early bird,Maybe,knockin on heavens door bob Dylan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Mechanical,,,53706,40.7131,-74.0072,No,none (just cheese),dog,Yes,no preference,Yes,Brazil by Declan McKenna
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Other,Engineering Mechanics,"Might do Econ, Physics, or DS",53706,35.6895,139.6917,Maybe,basil/spinach,dog,No,night owl,Yes,Outside today - NBA Youngboy
+COMP SCI 319:LEC002,LEC002,Yes,32,Science: Physics,,,53714,13.45,-16.57,Maybe,pineapple,neither,Yes,early bird,No,"Bob Marley
+
+No Woman, No Cry"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Biomedical,,,53706,50.1185,-122.9604,No,pepperoni,dog,Yes,night owl,Maybe,Free Now by Gracie Abrams
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,21,Engineering: Mechanical,,,53590,34.0522,-118.2437,No,pepperoni,dog,No,night owl,Yes,popular by the weeknd
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,22,Statistics,,Data Science,42,-76,106.53,Yes,mushroom,neither,Yes,no preference,No,"Here There And Everywhere, Paul McCartney"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Data Science,,,53706,46.024,-123.92,Yes,basil/spinach,dog,No,night owl,Yes,Musta been a ghost by Proxima Prada
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Engineering: Mechanical,,,53706,45.83,-89.27,No,sausage,dog,No,night owl,Yes,"Run This Town - JAY-Z, Rihanna, Kanye West"
+COMP SCI 319:LEC004,LEC004,Yes,26,Business: Information Systems,,,53705,23.5,121,Maybe,mushroom,dog,No,night owl,Maybe,Someone You Loved - Lewis Capaldi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Science: Other,,,53715,33.4484,-112.074,No,sausage,cat,No,night owl,Yes,Follow You by Imagine Dragons
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,I do not have a secondary major.,53703,49.2269,17.669,No,pepperoni,dog,No,early bird,No,One of my favorite songs is Circadian Rhythm by Drake.
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Mathematics/AMEP,,I'm gonna learning data science in the future.,53706,30.5728,104.0668,Yes,pepperoni,dog,Yes,night owl,Yes,"Take me to Church, Hozier"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Engineering: Mechanical,,,57306,40.7128,-74.006,No,pepperoni,dog,Yes,night owl,Maybe,Mr. Jones by Counting Crows
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Actuarial,,,53703,43.1566,-77.6088,Maybe,sausage,cat,Yes,night owl,Maybe,Obsession - Joywave
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,N/A,N/A,53706,41.8781,-87.6298,No,macaroni/pasta,cat,No,no preference,Yes,Maine by Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Industrial,,,53706,41.8781,-87.6298,No,pepperoni,cat,No,no preference,Yes,Something Just Like This - Chainsmokers 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,20,Data Science,,Economics,53703,20,-156,Yes,pepperoni,dog,Yes,no preference,No,Tweaker by Gelo
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,19,Engineering: Biomedical,,,53706,44.0668,-92.7538,No,pepperoni,dog,Yes,night owl,Maybe,Borderline - Tame Impala
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Other,,,53706,50.0755,14.4378,Maybe,none (just cheese),dog,No,no preference,Yes,Smoke a little smoke - Eric Church
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Biomedical,,,53715,43.732,7.4196,No,pepperoni,dog,No,night owl,No,"Cello Suite No. 1 in G Major; Johann Sebastian Bach, Yo-Yo Ma"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53715,43.4799,-110.7624,Yes,Other,dog,No,night owl,No,Paul Revere by Noah Kahan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,Maybe,pepperoni,dog,Yes,early bird,Maybe,Unwritten by Natasha Bedingfield
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC001,No,21,Engineering: Industrial,,,53715,45.8157,-94.6374,No,pepperoni,dog,No,night owl,Yes,"Unwritten, by Natasha Bedingfield"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Business: Finance,,Economics,53726,43.07,-89.39,No,Other,neither,Yes,no preference,No,Down Under -Men At Work
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Business: Finance,Data Science,,53706,87.6298,41.8781,Yes,pepperoni,dog,Yes,night owl,Maybe,Back to Black by Amy Winehouse
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Data Science,,,53706,40.374,-105.509,Yes,pepperoni,dog,No,night owl,Maybe,eenie meenie - Sean Kingston and Justice Bieber
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Engineering: Biomedical,,,53706,47.8095,13.055,No,sausage,cat,Yes,night owl,Yes,"On Wisconsin! - Finale
+
+University of Wisconsin Marching Band"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Data Science,,,53715,25.2854,51.531,Yes,mushroom,cat,Yes,early bird,Yes,"Borderline by Tame Impala
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Data Science,,,53706,45.0697,92.9516,Maybe,pineapple,dog,No,night owl,Yes,Strange to hear - By Sports
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Business: Information Systems,,Business: Operations and Technology Management,53716,43.0731,-89.4012,No,mushroom,dog,No,night owl,Yes,You Give Love a Bad Name by Bon Jovi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Business: Other,,,53703,37.7749,-122.4194,Yes,basil/spinach,dog,Yes,night owl,Yes,What I got - Sublime 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,,,53706,43.0779,-89.4134,No,pineapple,dog,No,no preference,No,Next to You by Flavors
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Business: Other,Economics.,Data science,53706,28.6107,-244.1199,Maybe,Other,dog,No,night owl,Yes,Sometimes-Goth Babe
+COMP SCI 319:LEC001,LEC001,No,22,Engineering: Other,ECE,,53715,31.2304,121.4737,Maybe,pineapple,cat,No,no preference,Yes,"Never Gonna Give You Up, by Rick Astley"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,19,Data Science,Nothing,Economics ,53706,35.689,139691,Yes,green pepper,neither,No,night owl,Yes,Sun flower by Post Malone
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Information Systems,,,53706,3.139,101.6869,Maybe,Other,dog,Yes,no preference,Maybe,Livin' on a Prayer by Bon Jovi
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,No,pepperoni,dog,Yes,no preference,No,甜蜜蜜 鄧麗君
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,20,Other (please provide details below).,Environmental Science,n/a,53703,39.9526,-75.1652,No,pepperoni,dog,No,no preference,Maybe,Anything from kendrick lamar
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Geography,,53726,47.6032,-122.3303,Maybe,Other,dog,No,night owl,No,Beef Stew by Nicki Minaj
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,20,Engineering: Other,,,53706,31.298,120.585,No,none (just cheese),cat,No,no preference,Maybe,Subhuman by Garbage
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,21,Statistics,,,53703,43.0389,-87.9065,No,pepperoni,dog,Yes,night owl,Yes,Dirty Water by Foo Fighters
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Biomedical,N/A,N/A,53706,43.7696,11.2558,No,pepperoni,dog,No,night owl,Yes,Stick Season by Noah Kahan 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Mechanical,,,53715,49.4435,1.098,No,sausage,dog,Yes,night owl,Maybe,Sleep on the Floor - The Lumineers
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Science: Other,Biochemistry,,53706,46.595,7.9075,No,pineapple,dog,No,night owl,Maybe,Flower Shops by ERNEST and Morgan Wallen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Business: Information Systems,,,53703,41.8781,-87.6298,Maybe,pepperoni,dog,Yes,no preference,Yes,All falls Down- Kanye West 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Journalism,,53706,-22.9068,-43.1729,No,pepperoni,dog,Yes,no preference,Maybe,"Cool Blue by The Japanese House
+
+or
+
+My Love by Until the Ribbon Breaks"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Engineering: Other,,,53706,48.1118,-1.6803,Maybe,none (just cheese),dog,No,night owl,Yes,A Troubled Mind-Noah Kahan
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Industrial,,Naval Science,53703,-18.1248,178.4501,No,sausage,dog,Yes,early bird,No,"Angela, The Lumineers"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,57303,43.0731,-89.4012,No,pepperoni,dog,No,night owl,Yes,YMCA 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Engineering: Mechanical,,,53706,32,34.8,No,basil/spinach,dog,Yes,night owl,Maybe,Lovestick by asap rocky
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Finance,I am also a Data Science major,,53706,25.1,55.2,Yes,mushroom,dog,No,night owl,Yes,Fein (Feat. playboi carti) by Travis Scott
+COMP SCI 319:LEC001,LEC001,Yes,,Business: Finance,,,53715,30.5,104,No,pineapple,dog,Yes,night owl,Yes,"I love you baby
+
+Paul Anka"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Science: Other,,,53575,43.07,-89.4,Maybe,Other,cat,Yes,night owl,Yes,Sexy Villain - Remi Wolf
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,21,Statistics,,,53703,40.7128,-74.006,No,mushroom,dog,No,early bird,No,my heart will go on
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Business: Information Systems,,Business: Operations & Technology Management ,53703,48.8566,2.3522,Maybe,sausage,dog,Yes,early bird,Yes,30 for 30 by SZA
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical," 
+
+ ",Neurobiology,53706,53.5745,10.0778,No,basil/spinach,cat,No,night owl,Yes,"Maine by Noah kahan
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Business: Actuarial,,RMI,53715,43.0389,-87.9065,No,pepperoni,cat,Yes,night owl,No,Congratulations by Mac Miller
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC002,No,19,Business: Information Systems,,I am also a Marketing major with a certificate in Digital Studies!,53706,39.1434,-77.2014,Maybe,basil/spinach,dog,Yes,night owl,Maybe,"Gracie Abrams: ""Risk"""
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Business: Other,,Data Science,53706,42.3601,-71.0589,Yes,mushroom,dog,No,no preference,Yes,Luther by Kendrick Lamar and SZA
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Other (please provide details below).,Economics,,53703,40.7128,74.006,No,mushroom,dog,Yes,early bird,Yes,Pursuit of Happiness- Kid Cudi
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,18,Engineering: Biomedical,,,53706,39.0742,21.8243,No,sausage,cat,No,early bird,Yes,Weight of Love - The Black Keys
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,45,-93,No,sausage,dog,No,night owl,No,Die with a Smile - Bruno Mars
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,19.076,72.8777,No,pineapple,dog,Yes,early bird,Yes,Luther by Kendrick Lamar and SZA.
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,-45.0327,168.658,No,sausage,dog,Yes,night owl,Yes,Night Changes - One Direction
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Physics,,,53706,40.7,70,No,none (just cheese),neither,No,night owl,Yes,My Eyes by Travis Scott
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53703,3.139,101.6869,No,macaroni/pasta,cat,No,early bird,No,GOT7 PYTHON 
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,,53706,41.8781,-87.6298,No,mushroom,dog,No,night owl,Yes,Coyote Joni Mitchell
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53706,37.8715,112.5512,No,sausage,cat,Yes,early bird,Maybe,Soledad y el Mar by Natalia Lafourcade
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Computer Science,,,53715,37.5665,126.978,No,sausage,neither,Yes,night owl,No,"Echo, The Marias"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Engineering: Mechanical,,,53703,43.7696,11.2558,No,mushroom,neither,No,no preference,No,"When it rains it pours
+
+Luke combs"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53715,45.4408,12.3155,No,sausage,dog,No,night owl,Yes,Put Me Thru by Anderson .Paak
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,17,Computer Science,,,53706,35.6528,139.8395,No,pepperoni,cat,Yes,early bird,Maybe,"40oz, polyphia"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,42.3009,-71.0684,No,sausage,dog,Yes,night owl,No,Breakdown by Jack Johnson
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53706,42.3601,-71.0589,No,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine by Guns and Roses
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Science: Physics,,Mathematics,53706,37.9838,23.7275,No,none (just cheese),dog,No,no preference,Yes,Bohemian Rhapsody-Queen
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,Above,None,53706,-29.94,-50.99,No,none (just cheese),dog,No,night owl,No,That's So True by Gracie Abrams
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Computer Science,,data science,53703,43.0731,-89.4012,Yes,sausage,neither,No,night owl,Maybe,doja
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,21,Other (please provide details below).,Geography and Cartography/Geographic Information Systems,"Data Science Certificate, Environmental Studies Certificate",53715,36.1699,-115.1398,No,sausage,dog,Yes,night owl,Yes,"Rain, The Beatles"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Biomedical,,,53706,41.16,-8.63,Maybe,sausage,cat,No,night owl,Yes,This Must Be the Place - Talking Heads
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Science: Physics,,Astronomy,53726,36.9741,122.0308,No,pepperoni,dog,No,night owl,Yes,Californication Red Hot Chili Peppers
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC003,No,20,Computer Science,,"Data Science, Economics, Accounting",53706,-1.2921,36.8219,Yes,pepperoni,cat,No,no preference,Yes,"Verdansk, Dave"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,,,53706,41.1184,20.8,No,mushroom,dog,No,early bird,Yes,November Air - Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Engineering: Biomedical,n/a,n/a,53706,53.3498,-6.2603,No,green pepper,dog,Yes,night owl,Maybe,Moon River by Frank Ocean
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,22.0964,-159.5261,No,pineapple,dog,Yes,night owl,No,Maine by Noah Kahan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Computer Science,,Data Science,53711,43.0731,-89.4012,No,none (just cheese),cat,No,night owl,Yes,I'm A Believer - The Monkees
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,19,Engineering: Mechanical,,,53706,44,-88,No,sausage,cat,Yes,night owl,Yes,Triggers - Royal Blood
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,,Engineering: Other,,,53703,36.0671,120.3826,Maybe,mushroom,dog,No,night owl,Yes,《Glad You Came》by Boyce Avenue
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Mathematics/AMEP,,,53715,37.5407,-77.436,No,mushroom,cat,Yes,no preference,Yes,Posthumous forgiveness - Tame Impala
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,,,53706,21.28,-157.83,No,sausage,cat,Yes,early bird,No,Yellow by Coldplay
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53715,43.0739,-89.3852,No,macaroni/pasta,cat,No,night owl,Yes,Africa by Toto
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,24,Statistics,,,53713,30.4515,-91.1871,Yes,mushroom,dog,No,no preference,Yes,Liberation - Outkast ft. Cee-Lo Green
+COMP SCI 319:LEC002,LEC002,No,22,Engineering: Other,,,53703,36.1699,-115.1398,No,pineapple,dog,No,night owl,Yes,dancinwithsomebawdy - ericdoa
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,45.0033,-93.484,Maybe,sausage,cat,No,night owl,No,Second Nature by Clairo
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,22,Computer Science,,"German, Data Science",53703,45.4404,12.316,No,sausage,dog,No,night owl,Yes,Modern Day Cowboy (Tesla)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Engineering: Industrial,,,53706,25.0772,55.3093,No,pepperoni,dog,No,night owl,Maybe,Drake - Gods Plan
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,47.0543,8.3094,Maybe,none (just cheese),cat,Yes,early bird,Maybe,Shes always a woman (billy joel)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Engineering: Mechanical,,,53706,43.6775,-70.299,No,pepperoni,dog,Yes,early bird,Yes,The Cave by NEEDTOBREATHE
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Industrial,,,57303,34.0549,118.2426,No,sausage,cat,No,night owl,Yes,Feather - Sabrina Carpenter
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Engineering: Other,Material Science and Engineering,,53715,35.8617,104.1954,No,sausage,cat,Yes,night owl,Maybe,"patrick Brasca
+
+BRB
+
+Ryan.B"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,23,Science: Biology/Life,Biochemistry,N/A,53703,33,120,Maybe,pepperoni,cat,No,night owl,Yes,"Piano Concerto No.23 in A major, K.488 - 1. Allegro
+
+Mozart"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Industrial,Industrial Engineering,,53706,,,Maybe,pineapple,dog,No,early bird,No,Ride the Lightning by Warren Zeiders
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,17,Engineering: Mechanical,,,53703,33.1042,-96.6717,No,none (just cheese),dog,Yes,night owl,Yes,Stick Season by Noah Kahan
+COMP SCI 319:LEC004,LEC004,Yes,27,Engineering: Other,Environmental Engineering,,53719,30.98,121.5,Maybe,none (just cheese),dog,No,night owl,No,"Salt
+
+Ava Max"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Data Science,,,53706,44,91,Yes,Other,cat,Yes,early bird,No,"Oak Island, Zach Bryan "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Business: Finance,,,53706,40.0169,-105.2796,Maybe,pineapple,dog,Yes,early bird,No,Back in Black by ACDC
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Other,Material Science and Engineering,,53706,46.5378,12.1359,No,basil/spinach,dog,Yes,early bird,No,Sweet Dreams by Eurythmics
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Computer Science,,"Data Science, Graphic Design (certificate)",53715,42.6403,18.1083,Yes,basil/spinach,cat,No,night owl,Maybe,South Side - Moby
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Engineering: Biomedical,,Accounting,53715,41.9028,12.4964,No,pepperoni,dog,Yes,no preference,No,"She Had ME At Heads Carolina, Cole Swindell"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Other (please provide details below).,Currently undecided but intend to have a business major and double major in something along these lines. Wanted to try out this class to see if I would enjoy it ! ,None.,53706,35.5405,-79.3692,Maybe,sausage,dog,No,night owl,Maybe,I have too many liked songs to choose just one! If I were to choose a genre of music thought it would have to be R&B :)
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Industrial,N/A.,N/A.,53706,41.9408,-87.7532,No,Other,cat,No,night owl,No,Sunday morning Maroon 5
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Mechanical,,,53175,32.7765,-79.931,No,sausage,dog,No,night owl,Maybe,God Gave Me Style - 50 Cent
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Engineering: Biomedical,,,53726,47.0455,8.308,No,pepperoni,dog,No,early bird,Maybe,Black and White by Niall Horan
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,,60010,48.8566,2.3522,Maybe,green pepper,cat,Yes,night owl,Yes,Learning To Fly - Tom Petty and the Heartbreakers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Data Science,,,53706,121.4365,31.1886,Maybe,pineapple,cat,Yes,night owl,Maybe,"Song Title: I Like Me Better
+
+Artist: Lauv "
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Data Science,na,Economics,53715,1.3521,103.8198,Yes,pepperoni,dog,No,early bird,Yes,Toxic Till The End - Rose
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Biomedical,,,53706,45.5017,-73.5673,No,pepperoni,dog,No,night owl,Yes,She's always a woman - Billy Joel
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,22,Other (please provide details below).,Economics,,53703,31.2304,121.4737,No,pineapple,dog,No,early bird,Yes,Kammy - Fred again..
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,-3.6225,-79.2388,No,macaroni/pasta,cat,No,night owl,Yes,"DtMF, by Bad Bunny"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,Molecular and Cell Biology,Statistics,53706,35.0844,-106.6504,No,Other,dog,Yes,early bird,No,Run by One Republic
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,Maybe,Other,cat,No,night owl,Maybe,Lovers Rock - TV Girl
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Engineering: Other,Engineering Mechanics: Aerospace,Applied Mathematics,53715,41.3851,2.1734,No,pepperoni,cat,Yes,early bird,Yes,Set Sail by The Movement
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,43.0747,89.3842,No,pineapple,dog,Yes,night owl,Yes,"The Man who sold the world, David Bowie"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Other (please provide details below).,Economics,,53703,35.994,-78.8986,Yes,none (just cheese),dog,Yes,night owl,Yes,Any song by Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Science: Other,Biochemistry,Chinese,53703,41.8781,87.6298,No,sausage,cat,No,night owl,Yes,Empire of the Sun-We the People
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,21,Business: Information Systems,,,53703,43.0731,-89.4012,Maybe,sausage,cat,Yes,night owl,Yes,"Scott Mescudi Vs. The World, By Kid Cudi"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Music ,Data science,53706,41.8781,-87.6298,Yes,macaroni/pasta,cat,No,night owl,Yes,Oompa Loompa song from Wonka
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,37.5641,126.9756,No,pepperoni,dog,No,night owl,Yes,toxic till the end by ROSE
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Other,,certificate in data science,53706,43.7696,11.2558,No,mushroom,dog,No,night owl,No,"Vienna, Billy Joel"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Engineering: Biomedical,,,53715,45.1034,-93.7295,No,pepperoni,dog,No,early bird,Maybe,"See You Again, Tyler the Creator"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Actuarial,,Business: Risk Management and Insurance,53703,43.0752,-89.3964,No,pepperoni,cat,No,no preference,Yes,Prison Song - System of a Down
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Engineering: Biomedical,,,53703,52.37,4.9,No,sausage,dog,No,night owl,Yes,Fast Forward - Floating Points
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Biomedical,,,53706,41,12,No,pepperoni,dog,Yes,night owl,No,Locked out of Heaven - Bruno Mars
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,,,53715,43.8464,-91.2398,No,pepperoni,dog,Yes,night owl,Maybe,Missed Call by Treaty Oak Revival
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,55.9533,-3.1883,No,pepperoni,dog,No,night owl,Yes,Work Song - Hozier
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Computer Science,,,53703,25.033,121.5654,No,tater tots,cat,No,night owl,Yes,Dive - Olivia Dean
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,My primary major is Classical Humanities. ,,53703,36.5983,-121.8964,No,green pepper,cat,No,night owl,Yes,"My Father's House, Eidola"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Science: Physics,,Astronomy,53706,43.0731,-89.4012,Maybe,sausage,dog,No,night owl,Yes,Judaiyaan- Darshan Raval
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Industrial,,,53706,43.0495,88.0076,No,pepperoni,dog,No,night owl,Maybe,Holy Ghost Asap Rocky
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Mechanical,,,53706,43.0728,-89.3835,No,pepperoni,dog,No,night owl,Yes,Something in the Orange: Zach Bryan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Engineering: Other,Chemical Engineering ,,53706,43.0739,-89.3852,No,macaroni/pasta,dog,No,night owl,Yes,Dancing Queen by Abba
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Business: Actuarial,,,53706,52.3732,4.8907,No,pepperoni,dog,Yes,night owl,No,Popular Weeknd
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,23,Other (please provide details below).,Consumer Behavior and Marketplace Studies,Economics,53703,42.3555,71.0565,No,Other,dog,Yes,early bird,No,Jackie and Wilson by Hoizer
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Science: Biology/Life,,,53706,43.0731,43.0731,Maybe,mushroom,dog,Yes,early bird,Maybe,Live Well - Palace
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Business: Finance,,,53706,-34.9276,-57.9578,Yes,mushroom,cat,Yes,early bird,Yes,Cafe con ron Bad Bunny
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Engineering: Industrial,,,53715,52.6638,8.6267,No,pepperoni,cat,No,early bird,Maybe,Do for love - Tupac
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,40.6958,-73.8666,No,pineapple,cat,Yes,no preference,Yes,Hell on the heart Eric Church  
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Other (please provide details below).,Undecided,,53715,40.7128,-74.006,Maybe,pepperoni,dog,Yes,night owl,Yes,"New Drop, Don Toliver"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Mechanical,,,53706,41.88,87.62,No,sausage,dog,No,night owl,Maybe,Buy dirt by Jordan Davis
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,21,Other (please provide details below).,economics,n/a,53073,415204.8,873954,No,green pepper,dog,Yes,night owl,Yes,"you're not the only one - the sundays
+
+blue Sunday - the doors
+
+dazed and confused - led zeppelin"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,Economics,53706,6.5244,3.3792,Yes,Other,dog,No,early bird,Maybe,Jealousy - Khalil Harrison & Tyler ICU
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Data Science,,,53703,41.8781,-87.6298,Yes,none (just cheese),dog,Yes,early bird,No,charlie brown - coldplay
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,No,mushroom,cat,No,no preference,No,"My My, Hey Hey - Neil Young"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,41.9028,12.4964,No,pepperoni,cat,No,no preference,Yes,Replay by Iyaz
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Business: Finance,,,53066,25.2048,55.2708,No,pepperoni,neither,No,night owl,Yes,Duvet Boa
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,,53706,43.0731,-89.4012,Maybe,none (just cheese),dog,No,early bird,Yes,RIOT! - Earl Sweatshirt
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Economics with Math Emphasis,Data Science,53715,41.8781,-87.6298,Yes,sausage,dog,No,night owl,Yes,Everybody Wants To Rule The World by Tears For Fears
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,20,Engineering: Industrial,,,53703,40.7128,-74.006,No,pepperoni,dog,No,night owl,Yes,Stairway to Heaven by Led Zepplin
+COMP SCI 319:LEC004,LEC004,No,27,Other (please provide details below).,Information,,53715,48.8566,2.3522,No,Other,cat,No,night owl,Yes,Instant Crush (feat. Julian Casablancas) - Daft Punk
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Data Science,Planning on to be Data Science.,Global Health or communications possibly.,53715,36.1975,-79.7935,Yes,basil/spinach,neither,Yes,no preference,Maybe,"Give Me Everything by Pitbull
+
+Me Like Yuh Jay Park "
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Business: Actuarial,,Risk Management and Insurance,53715,41.3851,2.1734,Maybe,sausage,dog,No,night owl,Yes,Like a Boy by Ciara
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,20,Statistics,,,53703,23.1291,113.2644,Maybe,none (just cheese),dog,Yes,night owl,Maybe,Flashing light by kanye west
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Science: Biology/Life,,,53715,53715,-106.3468,Maybe,pepperoni,cat,No,night owl,Yes,When I was your man - Bruno Mars
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Data Science,,,53706,43.1049,-89.3512,Yes,tater tots,cat,Yes,night owl,Yes,A Love Supreme Pt I - John Coltrane
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,20,Statistics,,,53711,34.6887,-82.8349,No,sausage,dog,Yes,night owl,Yes,Go Your Own Way - Fleetwood Mac
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,,53715,30,114,Maybe,mushroom,cat,No,night owl,Yes,Standing Before Mt. Fuji  by Eason Chan
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Industrial,,,53703,43.4796,-110.7624,No,sausage,dog,No,night owl,No,Miss You - The Rolling Stones
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Engineering: Mechanical,,,53702,45.4408,12.3155,No,pepperoni,dog,No,night owl,Maybe,"Escape, by RupertHolmes"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Engineering: Other,,,53705,43.08,-89.383,No,basil/spinach,cat,No,no preference,No,"I'm too embarrassed to open Youtube in the middle of class- also, I'm in Louis's section. I'm so sorry."
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,22,Computer Science,,DS and Stat,53715,37.5326,127.0246,Maybe,pepperoni,dog,No,night owl,No,Marigold - Aimyon
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Other,N/A,N/A,53706,43.1686,-89.2784,No,none (just cheese),cat,No,early bird,Yes,California Dreaming' - The Mamas and The Papas
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,,Other (please provide details below).,Economics,,53703,51.5074,-0.1278,No,none (just cheese),dog,No,night owl,Yes,The only exception by Paramore
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53715,32.7157,117.1611,No,pineapple,dog,No,night owl,Yes,Jingle BOOM! - A.J. & Big Justice 
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Biomedical,,,53706,52.3062,10.4835,No,basil/spinach,dog,No,night owl,Yes,Black Magic Woman by Santana
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,,Engineering: Biomedical,,,53706,1.3521,103.8198,Yes,pepperoni,dog,No,night owl,Yes,Come Together by The Beatles
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,sausage,dog,Yes,night owl,Yes,Houston Old Head by A$AP Rocky
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,19,Computer Science,computer science ,,53703,35.6764,139.65,Yes,basil/spinach,neither,No,night owl,Yes,"green room ken carson 
+
+summer sixteen osamason 
+
+congrats osamason 
+
+pose for the pic che 
+
+swag overlord ken carson 
+
+intro ken carson 
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Science: Biology/Life,,,53706,30.2741,120.1551,Yes,sausage,cat,No,night owl,Yes,no favorite songs
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Computer Science,n/a,Physics?,53706,34.8927,127.9688,Maybe,mushroom,neither,Yes,no preference,Maybe,"Tender Surrender, Steve Vai"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC004,No,21,Data Science,,,53711,37.5665,126.978,Yes,pineapple,dog,No,night owl,Yes,pink + white - frank ocean
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Engineering: Industrial,,,53715,34,-118,No,sausage,dog,No,night owl,Yes,Payphone - Maroon 5
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Mechanical,,,53711,33.63,-111.85,No,pepperoni,dog,Yes,night owl,Yes,"While My Guitar Gently Weeps - Prince, Tom Petty, Jeff Lynne"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53706,45.9213,89.2035,Maybe,tater tots,dog,No,no preference,Maybe,Agnes by Glass Animals
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,"I am currently a pre-business student choosing between the fields of finance, real estate, data science, and economics.",,53706,45.8711,89.7093,Maybe,sausage,dog,Yes,night owl,Yes,Banana Pancakes - Jack Johnson
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Other,Biochemistry,,53703,43.4799,110.7624,No,sausage,dog,No,night owl,Yes,Wish you were here - Pink Floyd
+COMP SCI 319:LEC004,LEC004,Yes,24,Engineering: Other,ECE,N/A,53711,39.9042,116.4074,No,mushroom,dog,No,night owl,Yes,"song:爱我还是他
+
+singer:陶喆"
+COMP SCI 319:LEC004,LEC004,Yes,26,Other (please provide details below).,Electrical and computer Engineering,,53711,38.9248,121.6279,Maybe,pepperoni,dog,No,night owl,No,EMINEM
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,41.3874,2.1686,Maybe,mushroom,dog,Yes,night owl,Yes,Many Men (Wish Death) by 50 Cent
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,48.8566,2.3522,No,pepperoni,cat,Yes,no preference,Maybe,"Whitney Houston: I Wanna Dance with Somebody
+--------------------------------------------
+
+Bob Marley and The Wailers: Could You Be Loved"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,18,Engineering: Biomedical,N/A,N/A,53706,41.3851,2.1734,No,pepperoni,dog,No,night owl,Maybe,Rolling Stone - Brent Faiyaz
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Mechanical,,,53706,37.7749,-122.419,No,pineapple,dog,Yes,night owl,Yes,Roll the Dice by Arden Jones
+COMP SCI 319:LEC002,LEC002,Yes,24,Other (please provide details below).,International Public Affairs,N/A,53715,41.795,140.74,No,pepperoni,cat,No,night owl,Yes,Astronaut - Simple Plan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Science: Other,,Data Science,53703,35.6895,139.6917,Yes,sausage,dog,Yes,no preference,Maybe,Cant Feel My Face - The Weeknd
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,Political Science,53706,42.2499,-71.0409,No,basil/spinach,dog,Yes,no preference,Yes,Waiting Room by Phoebe Bridgers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,21,Science: Biology/Life,,,53715,48.8575,2.3514,No,mushroom,dog,No,night owl,Yes,Take On Me by A-ha
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Biomedical,,,53706,44.932,-93.2853,No,pepperoni,dog,Yes,night owl,Yes,Operator (That's Not the Way It Feels) by Jim Croce
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Engineering: Mechanical,,,53706,41.8789,-87.6355,No,pepperoni,cat,Yes,no preference,Maybe,someday by the strokes
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Biomedical,,,53706,43.7696,11.2558,Maybe,basil/spinach,dog,No,night owl,Maybe,Boy - Lee Brice
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Engineering: Biomedical,,,53715,35.6895,139.6917,No,mushroom,dog,No,night owl,Maybe,Button by Lyn Lapid
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Engineering: Mechanical,,,53706,24.1477,120.6736,No,Other,dog,No,night owl,Yes,Remember the Time - Michael Jackson
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Biology/Life,,Life Science Communication,53706,43.0844,-89.3812,No,Other,dog,Yes,no preference,Yes,"Reach Out, Four Tops"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Science: Physics,,Astronomy-Physics,53706,44.2165,-114.93,Maybe,pepperoni,dog,No,early bird,Yes,"Bad Kids to the Back, Snarky Puppy"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,Undecided planning on Biomedical Engineering,,53706,37.3925,-5.9941,No,none (just cheese),cat,No,night owl,No,Much too Much - Rex Orange County
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Science: Biology/Life,,,53706,39.9042,116.4074,No,sausage,cat,No,night owl,Maybe,"A Heart Like Hers, Mac DeMarco"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53706,25.0338,121.527,No,green pepper,dog,Yes,early bird,Maybe,Alaska - Maggie Rogers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Engineering: Mechanical,,,53706,43.8307,-91.2395,No,macaroni/pasta,dog,Yes,night owl,Maybe,"New York, Lucki"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,22,Engineering: Other,,,53703,12.3715,-1.5197,No,sausage,neither,No,no preference,Yes,Flowers by Samantha Ebert
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Science: Biology/Life,,Spanish,53715,39.4822,-106.0435,No,pepperoni,dog,No,no preference,No,"Title ""Rockin' in the Free World""
+
+Artist: Neil Young"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,,,53715,43.05,-89.45,No,pepperoni,dog,No,early bird,Maybe,Pictures of You by The Cure
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,,Engineering: Mechanical,,,54944,44,-89,No,sausage,dog,No,night owl,Yes,Apple Pie by Travis Scott
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,,Maybe stats,53703,43.0731,-89.4012,Yes,sausage,dog,No,night owl,Maybe,Jay Chou
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,N/A,N/A,53706,40.7128,-74.006,No,basil/spinach,dog,No,night owl,Maybe,"Two Princes - Spin Doctors
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Engineering: Biomedical,,,53715,41.8781,-87.6298,No,mushroom,dog,No,early bird,Maybe,Maria by Justin Bieber 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Other (please provide details below).,Economics ,Statistics ,53703,37.5,127.02,No,pepperoni,dog,No,night owl,Maybe,Rewrite the Stars (Zac Efron and Zendaya) 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Political Science,Business: Finance,53703,40.7128,-74.006,Maybe,none (just cheese),dog,No,early bird,Yes,America by Simon and Garfunkel 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,"Legal Studies, International Studies",53706,53.9045,27.5615,Yes,sausage,cat,No,no preference,Yes,Spanish Eyes - Ricky Martin
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Industrial,,,53706,43.18,-89.21,Maybe,sausage,dog,No,night owl,No,Telescope cage the elephant
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Mathematics,53590,71,42,No,mushroom,dog,Yes,night owl,No,You're The One by The Vogues 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Other (please provide details below).,Undecided but scouting out Information Science as a major.,Also considering a Comm Arts major. ,53711,43.0731,-89.4012,Yes,sausage,dog,Yes,no preference,Yes,Kick Your Game -> TLC
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Science: Other,Genetics and Genomics,,53706,42.3601,-71.0589,Maybe,pepperoni,dog,No,night owl,No,Champagne Problems Taylor Swift
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Biomedical,,,53706,37.8136,144.9631,Maybe,basil/spinach,cat,Yes,night owl,Yes,"sunday morning views
+
+by: Drod"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,20,Data Science,,,53703,43.0731,-89.4012,Yes,pepperoni,dog,No,night owl,Yes,Let Go - Aaron May
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Biomedical,,,53706,29.9012,-81.3124,No,pepperoni,dog,No,early bird,Yes,Dreams by Fleetwood Mac
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Data Science,,Economics,53706,51.5074,-0.1278,Yes,pepperoni,dog,Yes,no preference,No,Good Life by Kanye West
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,20,Engineering: Biomedical,,,53715,43.6123,-110.7054,No,pepperoni,dog,Yes,early bird,No,When It Rains It Pours by Luke Combs
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Mechanical,,,53706,62.8126,-150.2252,No,pepperoni,dog,No,no preference,Maybe,Forever - Noah Kahan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Engineering: Industrial,,,53706,27.2679,-82.5555,No,macaroni/pasta,dog,No,night owl,No,Unwritten by Natasha Bedingfield
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Business: Other,Accounting,Information Systems,53703,44.8977,-85.9916,No,pepperoni,dog,Yes,night owl,Yes,Vienna Billy Joel
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Other,,Computer Science,53715,70.221,-148.39,No,sausage,cat,No,night owl,No,"I Miss You, Blink-182"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53726,42.3,-711,No,green pepper,cat,Yes,early bird,No,Silver Lining by Mt. Joy
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Data Science,,,53715,36.154,-99.952,Yes,basil/spinach,neither,No,night owl,Yes,Jealous - Eyedress
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Statistics,,,53706,42.3555,71.0565,Maybe,basil/spinach,dog,No,night owl,Maybe,Dreams by Fleetwood Mac
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Maybe,Restless Mind by Sam Barber
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Other,Engineering: Aerospace,"Aerospace Engineering, Data Science ",53703,74.006,40.7128,Yes,pepperoni,dog,Yes,night owl,Yes,"American Pie, Don McLean "
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,21,Statistics,,Mathematics,53703,39.9042,116.4074,No,mushroom,cat,No,no preference,Maybe,Mind over Matter by PVRIS
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,non,non,,33.5138,33.5138,No,mushroom,neither,No,early bird,Maybe,"1) Hobbak Metl Beirut- elissa
+
+2) Mararti Bisadri - Kadim Al Sahir 
+
+3) Betew7ashini- Weal Jassar
+
+ "
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,34.2121,-119.0341,No,macaroni/pasta,cat,Yes,no preference,Maybe,7 Summers - Morgan Wallen
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,none,53706,41.8781,-87.6298,No,mushroom,neither,Yes,night owl,Yes,mind over matter by Young the Giant.
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC002,Yes,18,Engineering: Mechanical,,,53706,20.7754,-156.4534,No,sausage,dog,No,night owl,Yes,Take Me Out - Franz Ferdinand
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Engineering: Mechanical,,"AMEP -  Applied Mathematics, Engineering and Physics Program",53703,9.3183,76.6135,No,sausage,dog,No,night owl,Yes,TobyMac help is on the way
+COMP SCI 319:LEC002,LEC002,Yes,27,Data Science,N/A,N/A,53705,25.033,121.5654,Maybe,mushroom,cat,Yes,early bird,Maybe,I drink wine - Adele
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Data Science,,,53706,20.6752,-103.3473,Yes,pepperoni,dog,Yes,night owl,Yes,El hijo major- junior H 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Engineering: Mechanical,/,/,53706,30.5728,104.0668,No,pepperoni,neither,No,night owl,Maybe,Call of silence / gemie
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Mechanical,,,53151,42.9955,-88.0957,No,pepperoni,dog,No,night owl,Yes,none
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,no preference,Maybe,Under the Bridge by Red Hot Chili Peppers 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Science: Biology/Life,,,53703,51.5074,-0.1278,No,pineapple,cat,No,night owl,Yes,When Am I Gonna Lose You by Local Natives
+COMP SCI 319:LEC003,LEC003,No,33,Data Science,,,53704,43.7102,7.262,No,pepperoni,dog,Yes,night owl,Yes,Cruel Summer - Taylor Swift
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Economics,,53715,22.5726,88.3639,Maybe,Other,dog,No,night owl,Yes,Norwegian Wood by The Beatles
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Engineering: Industrial,,,53703,44.0221,-92.4666,No,pepperoni,dog,No,night owl,Yes,UK rap- central cee/dave
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Science: Physics,,,53706,35.676,139.65,No,basil/spinach,dog,Yes,night owl,Yes,My favorite song is Stayin Alive from the Bee Gees 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,economics,data science,53715,32.72,-117.16,No,sausage,dog,Yes,early bird,Yes,"You're the one kaytranada, syd"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,,Business: Management,53703,21.1619,-86.8515,Maybe,pepperoni,dog,No,night owl,Maybe,Kryptonite by The Better Life
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,N/A,Real Estate,53706,42.355,-71.057,No,pepperoni,dog,Yes,night owl,Yes,"Crazy Story Pt 3
+
+King Von"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Data Science,,Economics,53706,32.69,-117.18,Yes,pepperoni,dog,Yes,no preference,Maybe,Tin Man - America
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,Astrophysics,"Data science, physics",53706,43.06,88.4042,Yes,mushroom,dog,Yes,night owl,Yes,Tear in Space- Glass Animals
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53175,51.5074,-0.1278,No,pepperoni,cat,No,night owl,Yes,Sex [EP Version] - The 1975
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Engineering: Other,EE,Spanish,53715,40.4168,-3.7038,Maybe,basil/spinach,dog,No,no preference,No,Lune by Moya
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Science: Biology/Life,,,53715,10.012,76.2901,No,pineapple,dog,Yes,night owl,No,good things fall apart by Jon Bellion
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Engineering: Mechanical,n/a,n/a,53715,49.9712,10.4182,No,pepperoni,dog,No,night owl,Yes,Homecoming- Kanye
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Engineering: Mechanical,,,53706,37.0475,112.5263,No,sausage,dog,Yes,early bird,No,Stick Season - Noah Kahan 
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Computer Science,n/a,Mathematics,53706,45.4408,12.3155,Maybe,mushroom,neither,No,night owl,Maybe,Instant Crush - Daft Punk
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Science: Chemistry,n/a,n/a,53703,40.62,14.48,No,macaroni/pasta,cat,No,night owl,No,Club can't handle me - Flo Rida
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Business: Actuarial,N/A,N/A,53703,40.7128,-74.006,Maybe,pepperoni,dog,Yes,night owl,Maybe,Sunshine by Steve Lacy 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Engineering: Mechanical,,,53706,35.8819,-106.3077,No,pepperoni,dog,Yes,early bird,Yes,All my love - Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Statistics,,,53715,35.9078,127.7669,Yes,mushroom,cat,Yes,no preference,No,Take On Me by a-ha
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Other (please provide details below).,Economics,Chinese,53703,20.7815,-156.4627,No,pepperoni,cat,No,night owl,Yes,She will be loved by Maroon5
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Business: Information Systems,,,53706,40.7128,-74.006,No,pepperoni,dog,No,early bird,No,"24/7, 365 by Elijah Woods"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Business: Information Systems,,,53715,53.9006,27.559,Yes,sausage,dog,No,night owl,Yes,Breaking Dishes - Rihanna
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Science: Biology/Life,NA,NA,53715,31.2304,121.4737,Yes,pepperoni,dog,No,night owl,Yes,Like Me Better -Lauv
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,-33.8688,151.2093,No,pepperoni,dog,No,night owl,Maybe,"Bones, Imagine Dragons"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Data Science,,"Data Science, Molecular and Cell Biology",53715,39.9,116.36,Yes,sausage,dog,No,night owl,Yes,Last Dance - Bigbang
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,20,Business: Finance,,Real Estate,53703,40.718,-74.3587,No,none (just cheese),dog,No,early bird,Maybe,One of these Nights - Eagles
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,21,Data Science,N/A,Economics,53711,40,116,Yes,pineapple,cat,No,no preference,Yes,Hastune Miku
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,20,Computer Science,,,53706,40.7128,-74.006,No,Other,dog,Yes,night owl,Maybe,Blackjack ---> Gunna
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Engineering: Biomedical,na,Looking possibly for a different field of engineering ,53715,43.7382,11.2299,No,sausage,dog,No,night owl,Yes,"Echo by Incubus (So good, live for the guitar riff at the beginning and the chorus vocals)"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,Yes,19,Engineering: Industrial,N/A,N/A,53703,43.7684,11.2562,No,pepperoni,dog,Yes,night owl,Yes,Disorder by Joy Division
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Biomedical,,,53715,51.5074,-0.1278,No,pepperoni,cat,No,no preference,Maybe,"We Are Young
+
+fun."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Data Science,,,53726,39.9042,116.4074,Yes,pepperoni,dog,No,night owl,Yes,Toxic by Meovv 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Data Science,,"Economics, Consulting Certificate",53706,41.8818,-87.6232,Yes,pepperoni,dog,Yes,early bird,Maybe,"Cigarettes and Coffee, Otis Retting"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,No,19,Business: Information Systems,,Business: Operations Technology Management,53703,43.3216,-87.9518,No,sausage,dog,Yes,early bird,Yes,Biggest Part of Me - Ambrosia 
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Mechanical,,,53703,43.0309,-87.9047,No,mushroom,cat,No,no preference,No,I can't get no satisfaction - Rolling stones 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Engineering: Mechanical,,,53715,44.9778,-93.265,No,pineapple,cat,No,night owl,Yes,Total Eclipse of the Heart by Bonnie Tyler
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,Economics,53706,,,Yes,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Science: Biology/Life,,Psychology,53715,43.0758,-89.4001,No,mushroom,dog,No,night owl,Yes,Redbone by Childish Gambino
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,Data Science,Risk Management,53706,41,2.17,Yes,sausage,dog,No,early bird,Yes,See you again-Tyler the Creator
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Data Science,,,53706,22.8948,-109.9152,Yes,none (just cheese),dog,Yes,early bird,No,miami- will smith
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,economics,n/a,53715,74.006,40.7128,Yes,pepperoni,dog,No,night owl,Yes,riptide 
+COMP SCI 319:LEC002,LEC002,Yes,29,Science: Other,Geosciences Graduate Student,,53715,41.3851,2.1734,No,pineapple,dog,No,night owl,Yes,Xtal Aphex Twin
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Cartography & Geographic Information Systems,,53703,41.88,-87.6,No,sausage,cat,No,night owl,Yes,The Other Side of Paradise - Glass Animals
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,My primary major is Biochemistry,,53726,43.0703,-89.422,No,pepperoni,cat,No,night owl,Maybe,My favorite singer is SZA
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Engineering: Biomedical,,,53706,37.9838,23.7275,No,sausage,dog,No,night owl,No,Forever by Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Other (please provide details below).,"Environmental Sciences, but planning on transferring to the industrial engineering major",,53703,-12.0464,-77.0428,No,pepperoni,cat,No,night owl,Yes,circles - mac miller
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,,,53726,33.8847,-118.4109,No,pepperoni,dog,No,night owl,Yes,"Title: Self Esteem
+
+Artist: The Offspring"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Engineering: Other,Civil Engineering,,53706,43.0645,-88.1192,No,pepperoni,dog,Yes,no preference,No,"Mother Natures Song, By the Beatles"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Science: Physics,,Currently working my way into the mechanical engineering major,53703,23.725,-100.5469,No,sausage,dog,Yes,night owl,No,Loco - Neton Vega
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,,,53706,71,42,Yes,pepperoni,cat,No,night owl,,Threat of Joy - The Strokes
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Biomedical,,,53706,18.4663,-66.1052,No,sausage,dog,No,night owl,Yes,Close to you by Gracie Abrams 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Business: Other,Business: Accounting,Business: Information Systems,54942,51.51,0.12,No,Other,dog,Yes,night owl,Yes,Laser-Shooting Dinosaur by Angus McSix
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Engineering: Biomedical,N/A,N/A,55449,35.6895,139.6917,No,pepperoni,dog,Yes,night owl,Yes,"Mystery Lady - Masego, Don Toliver"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Statistics,,Cell Biology,53075,,,No,basil/spinach,cat,Yes,early bird,No,Be Sweet by Japanese Breakfast
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Data Science,,Economics,53706,37.3859,-5.9906,Yes,none (just cheese),dog,Yes,night owl,Yes,"Assassin, John Mayer"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Engineering: Mechanical,,,53715,25,-80,No,pepperoni,dog,No,night owl,Yes,All Your'n- Tyler Childers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Engineering: Biomedical,,,53704,44.5133,-88.0133,No,sausage,dog,No,night owl,No,Under Pressure - Queen
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,19.64,-155.9969,No,green pepper,dog,Yes,early bird,Maybe,Dreams Fleetwood Mac
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,20,Engineering: Other,,,53528,40.7128,-74.006,No,pepperoni,dog,No,no preference,Maybe,Amazonia by Gorjira
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Other (please provide details below).,Economics,,53706,37.3414,-122.0284,No,pineapple,dog,No,night owl,Yes,"One of These Nights, Eagles"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Computer Science,,"Data Science, Economics",53706,51.5074,-0.1278,Yes,pepperoni,dog,Yes,night owl,Yes,16 by Baby Keep
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Other (please provide details below).,"Music: Performance
+
+Engineering/Science/Undecided?",,53706,49.8,-63.3,No,pepperoni,dog,No,early bird,Yes,"Just the Way You Are, Billy Joel"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,46.4761,-93.9014,No,sausage,cat,Yes,night owl,Maybe,"One of my favorite songs is ""New Perspective"" by Noah Kahan."
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,No,pepperoni,cat,No,night owl,Yes,Weird Fishes - Radiohead
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Statistics,,,53706,33.4484,-112.074,Maybe,pepperoni,dog,No,night owl,Maybe,Springsteen by Eric Church
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,47,87,No,pepperoni,dog,Yes,early bird,Maybe,Upside down Jack Johnson 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Other (please provide details below).,Economics,Data Science,53706,41.8781,-87.6298,Yes,macaroni/pasta,cat,Yes,early bird,Yes,Bad Boy - Red Velvet
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Data Science,,,53706,46.8182,8.2275,Yes,none (just cheese),dog,Yes,early bird,Maybe,Classic music
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,,,53703,41.9028,12.4964,No,mushroom,dog,No,night owl,Maybe,"Dancing queen, ABBA"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Mathematics/AMEP,,Economics,53706,31,121,Maybe,pineapple,neither,No,night owl,Yes,ma meilleure ennemie
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC002,No,19,Engineering: Mechanical,,,53706,30.246,87.7,No,sausage,dog,Yes,night owl,Yes,A Cold Sunday - Lil Yachty
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,,data science,53715,32.0603,118.7969,Maybe,mushroom,cat,No,night owl,No,counting star
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Science: Other,,Data science,53706,32.8328,-117.2713,Maybe,sausage,cat,Yes,night owl,Maybe,Please Please Please - Sabrina Carpenter
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Other (please provide details below).,education policy,,53706,48.8566,2.3522,No,sausage,dog,No,night owl,Yes,Better Than - Lake Street Dive
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Business: Actuarial,N/A,Risk Management & Insurance,53706,39.9526,-75.1652,No,macaroni/pasta,cat,No,no preference,Maybe,See you again - Tyler the Creator
+COMP SCI 319:LEC001,LEC001,Yes,22,Engineering: Biomedical,,,53705,31.2304,121.4737,Maybe,mushroom,dog,No,no preference,Yes,"city of stars, ryan gosling & emma stone"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53715,48.86,2.3488,No,pepperoni,dog,No,night owl,Maybe,Silver Springs- 2004 remastered By: Fleetwood Mac
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Science: Other,,Data science,53706,32.8328,-117.2713,Maybe,sausage,cat,Yes,night owl,Maybe,Good Graces - Sabrina Carpenter
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53715,26.1267,-81.7863,No,none (just cheese),cat,Yes,early bird,No,Ground Khalid
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Actuarial,,Risk Management & Insurance,53706,-87.6298,41.8781,Maybe,pineapple,cat,Yes,night owl,No,Electric Relaxation by a Tribe Called Quest
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Business: Actuarial,,,53703,45.1602,-87.1719,No,pepperoni,dog,No,no preference,No,Les by Childish Gambino
+COMP SCI 319:LEC002,LEC002,Yes,23,Other (please provide details below).,Agricultural and Applied Economics,N/A,53703,37.87,112.55,Maybe,pepperoni,cat,No,early bird,Yes,Unconditional by Eason Chan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,Yes,19,Data Science,N/.A,Economics,53706,43.8,123.5,Maybe,mushroom,dog,No,early bird,No,lie BTS
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Data Science,,,57303,43.8514,-89.1338,Yes,pineapple,cat,No,night owl,Yes,Better Off Alone - Alice Deejay
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,22,Science: Biology/Life,,Neurobiology,53715,44.0121,-92.4802,No,sausage,dog,Yes,early bird,Yes,"Five Leaf Clover, Luke Combs"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Biomedical,,,53706,39.9526,-75.1652,No,pepperoni,dog,Yes,night owl,No,Any colour you like - Pink Floyd 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Data Science,,,53715,32.0853,34.7818,No,pepperoni,dog,No,night owl,Maybe,New Years Day by Charlie Robison
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,Business: Other,53726,41.8781,-87.6298,Yes,pepperoni,dog,Yes,no preference,Yes,Billy Joel- Vienna
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Biomedical,,,53706,20.8771,-156.6813,No,basil/spinach,dog,No,no preference,Yes,If We Were Vampires by Jason Isbell and the 400 Unit
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Other,Undecided,,53706,32,118,No,sausage,neither,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Biomedical,,,53715,51.5074,-0.1278,No,none (just cheese),cat,No,night owl,Yes,Take  it  easy by the eagles
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53706,36.1946,139.043,No,Other,dog,No,no preference,Maybe,Killer Queen Queen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Engineering: Biomedical,,,53706,44.9778,-93.265,No,basil/spinach,dog,Yes,night owl,Yes,She Lit a Fire by Lord Huron
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,29.4316,106.9123,No,pepperoni,neither,Yes,no preference,Yes,
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53089,-17.7134,178.065,No,sausage,dog,No,night owl,Yes,"A Bar Song, Shaboozey"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,21,Other (please provide details below).,Economics,,53703,44.7785,-81.2872,Maybe,sausage,dog,No,night owl,No,seasons-wave to earth
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Engineering: Mechanical,,,53706,35.6764,139.65,No,sausage,dog,No,night owl,Maybe,4 Your Eyez Only - J Cole
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Mechanical,,,53706,17.1584,-89.0691,No,pepperoni,dog,No,night owl,Yes,Thinkin Bout You - Frank Ocean
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Other,,"Geology & Geophysics, Mathematics",53705,43.0731,-89.4012,No,pepperoni,cat,Yes,night owl,No,Uptown Girl (Billy Joel)
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,44.6366,-124.0545,No,basil/spinach,cat,No,night owl,Yes,Paul Revere by Noah Kahan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Engineering: Biomedical,,,53706,42.3555,71.0565,No,sausage,dog,No,early bird,No,Second Hand News by Fleetwood Mac
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Biomedical,,,53706,38.9072,-77.0369,No,none (just cheese),dog,No,no preference,No,III. Telegraph Ave - Childish Gambino
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Business: Actuarial,,"Data Science, Risk Management & Insurance",53711,32.2154,-80.7476,Yes,basil/spinach,dog,Yes,early bird,No,
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,18.3463,-65.8137,No,pepperoni,dog,No,night owl,Yes,Alive! by Bakar
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Actuarial,,Risk Management and Insurance,53703,41.9028,12.4964,No,pepperoni,dog,Yes,early bird,No,Timeless-The Weeknd
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53703,45.0981,-93.4445,No,basil/spinach,dog,Yes,early bird,Yes,"st elmos fire, john parr"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,24,Engineering: Mechanical,,,52719,43.0747,89.3842,No,Other,cat,No,night owl,Yes,"""Through Me"" - Hozier"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,I am still undecided but maybe data science or economics,,53715,31.4912,120.3119,Maybe,mushroom,cat,No,no preference,Yes,The songs of Jay Chou!
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Mechanical,,,53706,28.06,-80.56,No,sausage,dog,No,night owl,Maybe,Wish You Were Here- Pink Floyd
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Data Science,,,53715,41.885,-87.6215,Yes,none (just cheese),dog,Yes,night owl,Yes,Starman - David Bowie
+COMP SCI 319:LEC001,LEC001,No,23,Other (please provide details below).,Economics,,53711,43.0731,-89.4012,No,pineapple,dog,No,early bird,No,Any Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,18,Data Science,Psychology,,53703,33.3875,120.1233,Yes,none (just cheese),dog,No,night owl,No,Whiplash from aespa.
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Other,,I have a minor in Data Science. ,53726,35.6895,139.6917,No,sausage,cat,No,no preference,Yes,Lit Up by Buckcherry.
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53706,40.7,74,No,pepperoni,dog,Yes,early bird,No,Ms. Jackson - Outkast
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Mechanical,,,53703,44.9886,93.268,No,pepperoni,dog,No,night owl,Yes,Land of the Snakes - J Cole
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,18,Statistics,,,53715,-28.0015,153.4285,Maybe,pepperoni,cat,No,no preference,Yes,"1:37
+
+OMORI OST - 005 By Your Side.
+
+by OMOCAT"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53715,43,11,No,pineapple,dog,Yes,early bird,No,called on me
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Legal Studies,Information Science,53715,48.3707,-114.1866,No,sausage,cat,No,night owl,Maybe,When the Sun Hits by Slowdive
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,19,Engineering: Biomedical,,,53072,40.4111,-105.6413,No,pepperoni,neither,No,no preference,Maybe,"I have a wide range of music variety that I like, from Noah Khan to Pitbull I really don't have a preference. But recently I have been listening to brown eye girl by van morrison."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Engineering: Other,,,53706,26.142,81.7948,No,pepperoni,dog,Yes,early bird,Yes,Champagne Supernova by Oasis
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53706,42.4627,2.455,No,pepperoni,dog,No,night owl,Yes,Dreamer - Laufey
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,22,Business: Other,Business: Marketing. ,,53703,36.1993,117.0643,No,pepperoni,cat,No,night owl,Yes,Title: 雑踏、僕らの街 (Wrong World). Artist: TOGENASHI TOGEARI
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Other (please provide details below).,Economics with Math Emphasis,certificates in data science and asian American studies,53706,25.033,121.5654,Maybe,basil/spinach,dog,Yes,night owl,Yes,Bolo by Penomeco 
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Business: Information Systems,,,53703,41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,No,My Eyes - Travis Scott
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,21,Other (please provide details below).,电子信息工程,,53703,31.2304,121.4737,Yes,sausage,cat,No,no preference,Yes,Without You -- Avicii
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Other (please provide details below).,Biochemistry,Neurobiology,53706,-13.532,-71.9675,No,mushroom,dog,No,night owl,Yes,"Drugs, Sex and Hella Melodies by Don Toliver"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,41.8781,87.6298,No,none (just cheese),dog,Yes,early bird,Yes,Vienna Billy Joel
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,"Right now I’m undecided in the college of Letters and Science, but I’m thinking about applying to the school of engineering potentially.",,53706,58.4566,16.8331,Maybe,pepperoni,dog,Yes,night owl,Yes,get away from you— Jason Aldean
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Biomedical,,,53706,45.4384,10.9917,No,pepperoni,dog,No,night owl,Maybe,Si antes te hubiera conocido Karol G
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Astronomy-Physics,,53706,46.0105,-95.6817,No,pineapple,cat,No,early bird,No,Let it Die - Foo Fighters
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,21,Data Science,,,53715,41.8781,-87.6298,Yes,sausage,cat,No,night owl,Maybe,Southern Nights by Glen Campbell
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,No,pineapple,dog,No,night owl,Yes,Babydoll by Dominic Fike
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Biomedical,,Material Science and Engineering ,53706,40.416,-3.7,No,pepperoni,neither,No,early bird,Maybe,indigo- Sam Barber
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Other (please provide details below).,Astronomy-Physics,Data Science,53711,31,121,Yes,pepperoni,neither,No,no preference,Maybe,"Shoulder of Giants, Various Artists (2009)"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Data Science,Data science,,53703,40.7128,-74.006,Yes,basil/spinach,neither,Yes,early bird,Yes,Love Song
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Business: Information Systems,,Management ,53703,41.5933,-74.5039,No,basil/spinach,dog,No,night owl,No,One of my favorite songs is Umbrella by Rihanna. 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Other (please provide details below).,Atmospheric & Oceanic Sciences,,53711,35,139,Yes,pepperoni,cat,No,night owl,Maybe,
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,40.015,105.2705,Maybe,sausage,dog,No,night owl,Yes,"Laramee
+
+Ritchy Mitch and the coal miners"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,,Business: Other,,,53706,31.23,121.47,Yes,sausage,cat,No,night owl,Yes,The race by Chris James 
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,20,Other (please provide details below).,Psychology ,none,53703,55.6761,12.5683,No,Other,dog,No,no preference,Yes,Precious by Depeche Mode is my absolute favorite song of all time
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,21,Science: Biology/Life,,Zoology & Conservation Biology,53703,35.6895,139.6917,No,pepperoni,cat,Yes,early bird,Maybe,"Give Me My Heart Back, Masked Wolf"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,18,Mathematics/AMEP,,,53706,54.3722,18.6383,No,pepperoni,cat,No,no preference,Yes,"Toutes les machines ont un cœur
+
+Maëlle"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Data Science,,Math based Economics,53705,34.6937,135.5022,Yes,Other,cat,No,night owl,Yes,"Higher, Creed"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53715,43.7102,7.262,Maybe,pepperoni,cat,No,early bird,Yes,Silver Lining - In Guards We Trust
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Engineering: Mechanical,,,53706,43.0731,-89.4012,Maybe,sausage,dog,No,night owl,Yes,
+COMP SCI 319:LEC001,LEC001,,24,Science: Biology/Life,,,53711,33.9331,-83.3389,No,none (just cheese),cat,Yes,early bird,Maybe,"""Linger"" by The Cranberries"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Science: Biology/Life,Global Health ,Conservation Biology with certificates in Data Science and Environmental Studies and Health Policy ,53715,40.7128,-74.006,Maybe,green pepper,dog,No,night owl,No,Where You Are by John Summit 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Business: Finance,,other major: Risk Management ,53706,45.6793,-111.0466,Maybe,sausage,dog,Yes,night owl,Maybe,devil in a new dress- kanye west
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Other (please provide details below).,Data Science.,Probably economics.,53706,56.4104,-5.4697,Maybe,basil/spinach,dog,No,night owl,Maybe,Surrender by Cheap Trick.
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Mechanical,,,53706,43.0686,-89.3988,No,pepperoni,dog,No,night owl,Maybe,"Hanging by a moment, Lifehouse"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Other (please provide details below).,undecided,,53703,28.9704,118.8707,Yes,pineapple,dog,No,night owl,Yes,What She Hasn't Seen - The 1999
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Business: Information Systems,,I am doing a data science certificate.,53706,39444164,,Maybe,pepperoni,dog,No,night owl,Maybe,Blowing in the wind - Bob Dylan
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Science: Other,Information Science,"English, language & linguistics",53703,43.0731,-89.4012,No,pepperoni,cat,No,night owl,No,La Seine - Vanessa Paradis
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Science: Physics,,,53706,18.4655,-66.1057,No,none (just cheese),cat,No,night owl,Maybe,Rim Tim Tagi Dim by Baby Lasagna
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Engineering: Biomedical,,,53715,12.9716,77.5946,No,green pepper,cat,No,no preference,Yes,In cold blood 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Other (please provide details below).,"Art History, trying to get into business school ",,53706,46.2044,6.1432,No,pepperoni,dog,No,early bird,Yes,"Halo by Beyonce 
+
+someday from the movie Zombies 
+
+mojo so dope by kid kudi 
+
+hotline bling by drake 
+
+scar tissue by Red Hot Chili Peppers "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Engineering: Industrial,,,53706,-6.2615,106.8106,No,sausage,cat,Yes,early bird,Maybe,luther
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Engineering: Biomedical,,,53706,42.2934,-83.5241,No,none (just cheese),dog,Yes,no preference,Maybe,linger by the cranberries
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Biomedical,,,53715,46.8721,-113.994,No,pepperoni,dog,Yes,early bird,No,Sara by Fleetwood Mac
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,37.45,25.35,Yes,pepperoni,dog,Yes,night owl,Yes,"Luther, Sza & Kendrick Lamar"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,,53149,40.3761,-105.5237,No,sausage,dog,Yes,early bird,Maybe,Silver Springs -Fleetwood Mac
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Biomedical,,,94022,41.8781,-87.6298,No,sausage,dog,No,early bird,Yes,Babel - Mumford and Sons 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Business: Finance,,,53706,20.7984,-156.3319,No,mushroom,dog,Yes,early bird,No,"Burn, Burn, Burn - Zach Bryan"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,26,Engineering: Mechanical,,,53703,26.1219,-80.3975,No,none (just cheese),dog,Yes,early bird,Yes,Pitorro de Coco - Bad Bunny
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Other (please provide details below).,Information Science ,Journalism,53706,40.7306,-73.9352,No,pepperoni,dog,No,night owl,Yes,Push 2 Start by Tyla 
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Biomedical,,,53706,34.1347,-118.0516,Maybe,pepperoni,dog,No,night owl,Yes,Sweet Disposition - The Temper Trap
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Business: Finance,,"Math, potentially data science as well",53706,40.6344,14.6026,Yes,Other,dog,No,night owl,No,Arms wide open by Creed
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Data Science,,,53703,35.6895,139.6917,Yes,pineapple,cat,No,night owl,Maybe,Hiding In The Blue-TheFatRat
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,21,Data Science,,,53726,43.0722,89.4008,Yes,pepperoni,dog,No,no preference,Yes,BON VOYAGE! by Mika Ogawa
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,20,Engineering: Mechanical,,,53706,43.0338,-87.9208,No,pepperoni,cat,No,no preference,Maybe,"Come on, Come Over (Jaco Pastorius)"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53706,25.761,-80.192,No,macaroni/pasta,dog,No,night owl,Yes,Seabird by the Alessi Brothers
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Other,"Economics, Data Science cert",ds cert,53703,41.8781,-87.6298,No,none (just cheese),cat,No,early bird,Maybe,jackie down the line - fontaines d.c.
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53706,78,15,No,pepperoni,dog,No,night owl,Yes,Seimeisei Syndrome by Camellia ft. Hatsune Miku
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Business: Other,My primary major is Business: Operations and Technology Management,,53715,41.8781,87.6298,No,pepperoni,cat,No,night owl,Yes,"Give You the World - Steve Lacy
+
+Homecoming - Kanye West "
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Industrial,,,53715,38.5382,75.0587,No,pepperoni,neither,Yes,early bird,No,"After Hours, The Weekend"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Science: Physics,,,53706,40.7128,-74.006,No,none (just cheese),cat,No,night owl,Yes, benzi box by dangerdoom
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Engineering: Mechanical,Mechanical Engineering,,53706,25.2048,55.2708,No,pepperoni,cat,Yes,night owl,Maybe,Travis Scott: K-pop
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Science: Biology/Life,,,53715,23.6978,120.9605,Yes,mushroom,cat,No,night owl,Yes,Hazel Eyes - BoyWithUke
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,19,Science: Other,Biology & Environmental Science,Minor: French Language,53706,41.8781,87.6298,No,basil/spinach,dog,No,night owl,Yes,Stir Fry - Migos
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,NA,53706,51.0543,3.7174,Maybe,pepperoni,dog,Yes,early bird,No,Chocolate by The 1975
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,46.0207,7.7491,No,none (just cheese),dog,Yes,no preference,Yes,nangs - tame impala 
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Other,Material Science and Engineering,Nuclear Engineering,53715,45.197,-89.647,No,sausage,dog,Yes,early bird,No,"Snow, Zach Bryan
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Engineering: Biomedical,,,53706,46.3489,10.9072,No,mushroom,cat,No,early bird,No,Hysteria - Muse
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,,Engineering: Industrial,,,53715,42.3611,-71.0571,Maybe,pineapple,dog,No,early bird,Yes,Burning Man by Dierks Bentley
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,36.5116,-104.9154,No,pepperoni,dog,Yes,no preference,Yes,Doolin-Dalton by the Eagles
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Science: Biology/Life,,,53703,35.6895,139.6917,No,pepperoni,neither,No,night owl,Yes,SPECIALZ by King Gnu
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Biomedical,,,53706,44.2832,-88.3132,No,pepperoni,dog,No,night owl,Yes,Nobody Gets Me - SZA
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC002,No,18,Engineering: Mechanical,,,53706,31.2304,121.4737,No,sausage,dog,Yes,no preference,Yes,Room for You - grentperez and Lyn Lapid
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,,Science: Other,,,53705,31.9522,35.2332,No,basil/spinach,cat,No,no preference,Maybe,I don't know that's a tough question
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,25,55,Yes,pepperoni,dog,Yes,no preference,No,no church in the wild by kanye
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Data Science,,Accounting,53706,34.0522,-118.2437,Yes,pepperoni,dog,Yes,night owl,Yes,Use Somebody - Kings of Leon
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,51.5074,-0.1278,No,mushroom,dog,No,night owl,Yes,Exit Music (For A Film) by Radiohead
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,French,53715,48.2082,16.3738,No,pepperoni,cat,Yes,night owl,Maybe,Somebody to Love- Queen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53715,21.1619,-86.8515,No,sausage,dog,No,night owl,Maybe,Sunflower - post malone
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Engineering: Other,,,53706,30.1726,107.8857,No,Other,cat,No,night owl,Yes,Tango-ABIR
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Engineering: Industrial,,,53706,41.8781,-87.6298,No,pineapple,dog,No,early bird,Maybe,Put Your Records On - Corrine Bailey Rae 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Data Science,,Mathematics,53706,49.4825,20.0318,Yes,green pepper,cat,No,early bird,No,Black by Pearl Jam
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Mechanical,,,53706,41.9028,12.4964,No,sausage,dog,Yes,no preference,Yes,One of these nights or After the Thrill is gone by the Eagles
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Mechanical,Mechanical Engineer,,53965,-1.1435,13.9002,No,sausage,dog,No,night owl,Yes,Burn burn burn by Zach bryan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,21,Science: Biology/Life,,Music Performance ,53703,14.4423,121.044,No,mushroom,cat,Yes,early bird,Maybe,Strawberry Fields Forever - The Beatles
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,33.7501,84.3885,No,pepperoni,dog,Yes,no preference,Yes,Gasolina - Daddy Yanke
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,41.3851,2.1734,Yes,Other,dog,No,early bird,No,Runaway - Kanye West
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53706,45.78,88.5368,No,Other,dog,No,no preference,Yes,"Rockstar, Nickleback"
+COMP SCI 319:LEC001,LEC001,No,25,Other (please provide details below).,PhD student in Animal Sciences studying primarily rumen microbiology,none,53705,45.374,-84.9556,Maybe,mushroom,dog,Yes,early bird,No,Apple Charli xcx
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Data Science,,,53715,43.0731,-89.4012,Yes,basil/spinach,cat,No,early bird,No,let down - radiohead
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53703,41.8781,-87.6298,Maybe,none (just cheese),dog,Yes,early bird,No,The Promise by When in Rome
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Engineering: Industrial,,,53706,59.9139,10.7522,Maybe,basil/spinach,dog,Yes,early bird,Maybe,wannabe spice girls
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,43.0731,-89.4012,Yes,Other,cat,Yes,early bird,Maybe,penny lane- the beatles
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Science: Other,"Social science, sociology",Data science,53703,41.8781,-87.6298,Maybe,basil/spinach,cat,No,night owl,Maybe,Lovely Day by Bill Withers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Mechanical,,,53706,46,7.7,No,pineapple,dog,Yes,no preference,No,"brandy 
+
+The looking glass"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC003,No,19,Other (please provide details below).,Integrative Animal Biology,"Atmospheric and Oceanic Sciences, Folklore certificate",53703,47.75,90.33,No,macaroni/pasta,cat,Yes,night owl,Yes,"Damage Gets Done by Hozier and Brandi Carlile, or Everybody Wants to Rule the World by Tears for Fears"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,22,Statistics,,,53715,43.0731,-89.4012,No,pineapple,dog,Yes,early bird,Maybe,Counting Stars
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Biomedical,,,53703,6.2476,75.5658,No,pineapple,dog,No,early bird,No,isnt she lovely - Stevie Wonder
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Science: Physics,,,53706,43.0731,-89.4012,No,sausage,cat,No,no preference,Maybe,Move Along - All American Rejects
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,22,Engineering: Other,Electronic Computer Engineering,no,53703,24.9893,121.6583,Maybe,macaroni/pasta,dog,Yes,early bird,No,Alexander Hamilton——my shot
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,n/a,53562,41.3851,2.1734,No,mushroom,dog,No,night owl,Maybe,Beer for my horses - Toby Keith
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Science: Physics,,,53706,47.5928,-120.6676,Maybe,pepperoni,cat,No,no preference,Yes,Work Song by Hozier
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,18.582,-68.4055,No,pepperoni,dog,No,night owl,Yes,Vienna by billy joel 
+COMP SCI 319:LEC004,LEC004,Yes,27,Other (please provide details below).,Financial Economics,,53572,37.9838,23.7275,No,basil/spinach,dog,No,no preference,No,Mr Blue Sky by ELO
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Engineering: Biomedical,,,53706,41.3851,2.1734,No,mushroom,dog,Yes,early bird,Maybe,Homemade Dynamite by Lorde
+COMP SCI 319:LEC001,LEC001,Yes,35,Engineering: Other,Electrical and Computer Engineering,,53715,36.1839,113.1053,Maybe,sausage,neither,No,early bird,No,An‘he Bridge - Dongye Song
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Mathematics/AMEP,,,53706,48.8566,2.3522,Maybe,pineapple,dog,Yes,early bird,No,"FLY ME TO THE MOON
+
+Song by Claire Littley, Kotono Mitsuishi, and Yūko Miyamura"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53706,59.9139,10.7522,No,pepperoni,dog,Yes,early bird,No,Seven Nation Army by White Stripes
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,Yes,19,Data Science,N/A,Economics,54706,43.8,125.3,Maybe,mushroom,dog,No,early bird,No,"wait for it 
+
+Leslie Odom Jr."
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,20,Data Science,,,53715,34.2544,108.9418,Yes,pepperoni,dog,No,early bird,Maybe,Love Transfer by Eason Chan
diff --git a/s25/Louis_Lecture_Notes/19_JSON/cs571.json b/s25/Louis_Lecture_Notes/19_JSON/cs571.json
new file mode 100644
index 0000000000000000000000000000000000000000..ba5fa2d6713aa971143c144af3216ca700f642c6
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/cs571.json
@@ -0,0 +1,206 @@
+{
+    "msg": "Successfully got the latest messages!",
+    "page": 1,
+    "messages": [
+        {
+            "id": 393,
+            "poster": "q",
+            "title": "test2",
+            "content": "hello!",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-20T00:52:09.000Z"
+        },
+        {
+            "id": 391,
+            "poster": "q",
+            "title": "test1",
+            "content": "hello!",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-20T00:48:19.000Z"
+        },
+        {
+            "id": 375,
+            "poster": "newAnkit",
+            "title": "test",
+            "content": "test",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T22:19:52.000Z"
+        },
+        {
+            "id": 357,
+            "poster": "car",
+            "title": "Test",
+            "content": "vroom",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T21:32:50.000Z"
+        },
+        {
+            "id": 354,
+            "poster": "user",
+            "title": "test",
+            "content": "test",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T21:31:17.000Z"
+        },
+        {
+            "id": 350,
+            "poster": "user",
+            "title": "Test",
+            "content": "Test",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T21:17:04.000Z"
+        },
+        {
+            "id": 349,
+            "poster": "testaccmc1234",
+            "title": "Testing Testing 7 8 9",
+            "content": "Even MORE generic content",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T21:11:48.000Z"
+        },
+        {
+            "id": 348,
+            "poster": "testaccmc1234",
+            "title": "Testing Testing 4 5 6",
+            "content": "More generic posting content",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T21:08:56.000Z"
+        },
+        {
+            "id": 345,
+            "poster": "user",
+            "title": "I need this to be a generic title",
+            "content": "I need this to be generic content",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T20:19:33.000Z"
+        },
+        {
+            "id": 323,
+            "poster": "testtesttest1",
+            "title": "testtets",
+            "content": "tttt",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T18:17:04.000Z"
+        },
+        {
+            "id": 320,
+            "poster": "chase",
+            "title": "UI is cool",
+            "content": "i <3 react",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T18:04:36.000Z"
+        },
+        {
+            "id": 314,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "so I went running for answers",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:24:32.000Z"
+        },
+        {
+            "id": 313,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "The evils of lucy was all around me",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:24:22.000Z"
+        },
+        {
+            "id": 312,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "I didn't want to self destruct",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:24:03.000Z"
+        },
+        {
+            "id": 311,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "found myself screaming in a hotel room",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:23:51.000Z"
+        },
+        {
+            "id": 310,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "resentment that turned into a great depressions",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:22:17.000Z"
+        },
+        {
+            "id": 309,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "abusing my power full of resentment",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:22:01.000Z"
+        },
+        {
+            "id": 308,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "sometimes I did the same",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:21:43.000Z"
+        },
+        {
+            "id": 307,
+            "poster": "k.dot",
+            "title": "poem",
+            "content": "I remember you was conflicted misusing your influence",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:21:14.000Z"
+        },
+        {
+            "id": 302,
+            "poster": "g",
+            "title": "test",
+            "content": "r",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T17:11:47.000Z"
+        },
+        {
+            "id": 297,
+            "poster": "b",
+            "title": "Test",
+            "content": "Hello",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T16:10:44.000Z"
+        },
+        {
+            "id": 295,
+            "poster": "w",
+            "title": "hello",
+            "content": "hello",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T16:09:42.000Z"
+        },
+        {
+            "id": 271,
+            "poster": "krirk1",
+            "title": "Good luck everyone",
+            "content": "You got this!",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T07:09:12.000Z"
+        },
+        {
+            "id": 262,
+            "poster": "robert",
+            "title": "test again",
+            "content": "test again",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T06:32:45.000Z"
+        },
+        {
+            "id": 261,
+            "poster": "robert",
+            "title": "test",
+            "content": "test",
+            "chatroom": "Bascom Hill Chatters",
+            "created": "2023-10-19T06:31:59.000Z"
+        }
+    ]
+}
\ No newline at end of file
diff --git a/s25/Louis_Lecture_Notes/19_JSON/kiva.json b/s25/Louis_Lecture_Notes/19_JSON/kiva.json
new file mode 100644
index 0000000000000000000000000000000000000000..8495da076f3311930a009e7e30b023e663696b3c
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/kiva.json
@@ -0,0 +1,75 @@
+{
+  "data": {
+    "lend": {
+      "loans": {
+        "values": [
+          {
+            "name": "Polikseni",
+            "description": "Polikseni is 70 years old and married. She and her husband are both retired and their main income is a retirement pension of $106 a month for Polikseni and disability income for her husband of $289 a month. <br /><br />Polikseni's husband, even though disabled, works in a very small shop as a watchmaker on short hours, just to provide additional income for his family and to feel useful. Polikseni's husband needs constant medical treatment due to his health problems. She requested another loan, which she will use to continue paying for the therapy her husband needs. With a part of the loan, she is going to pay the remainder of the previous loan.",
+            "loanAmount": "1325.00",
+            "geocode": {
+              "city": "Korce",
+              "country": {
+                "name": "Albania",
+                "region": "Eastern Europe",
+                "fundsLentInCountry": 9051250
+              }
+            }
+          },
+          {
+            "name": "Safarmo",
+            "description": "Safarmo is 47 years old. She lives with her husband and her children in Khuroson district. <br /><br />Safarmo is a seamstress. She has been engaged in sewing for 10 years. She learned this activity with help of her mother and elder sister. <br /><br />Safarmo's sewing machine is old and she cannot work well. Her difficulty is lack of money. That’s why she applied for a loan to buy a new modern sewing machine. <br /><br />Safarmo needs your support.",
+            "loanAmount": "1075.00",
+            "geocode": {
+              "city": "Khuroson",
+              "country": {
+                "name": "Tajikistan",
+                "region": "Asia",
+                "fundsLentInCountry": 64243075
+              }
+            }
+          },
+          {
+            "name": "Elizabeth",
+            "description": "Elizabeth is a mom blessed with five lovely children, who are her greatest motivation in life.  She lives in the Natuu area of Kenya.  Elizabeth is one of the most hardworking women in sub-Saharan Africa.  Being a mother and living in a poor country has never been an excuse for Elizabeth, who has practiced mixed farming for the past few years.<br /><br />The cultural expectations in her area contribute to the notion that men should support their families.  However, Elizabeth works independently for the success of her children.  She perseveres because she wants to provide a better future for them.<br /><br />Elizabeth  has always loved farming. She is a very proud farmer and enjoys milking her dairy cows.  Elizabeth keeps poultry and grows crops, but she has not been making a good profit because of poor farming inputs. <br /><br />Elizabeth will use this loan to buy farm inputs and purchase high-quality seeds and good fertilizer to improve her crop production.  Modern farming requires the use of modern techniques, and, therefore, using high-quality seeds will assure her of a bumper harvest and increased profit levels.<br /><br />Elizabeth  is very visionary.  Her goal for the season is to boost her crop production over the previous year.",
+            "loanAmount": "800.00",
+            "geocode": {
+              "city": "Matuu",
+              "country": {
+                "name": "Kenya",
+                "region": "Africa",
+                "fundsLentInCountry": 120841775
+              }
+            }
+          },
+          {
+            "name": "Ester",
+            "description": "Ester believes that this year is her year of prosperity. Ester is a hardworking, progressive and honest farmer from a very remote village in the Kitale area of Kenya. This area is very fertile, with favorable weather patterns that support farming activities. Ester is happily married and the proud mother of lovely children. Together, they live on a small piece of land that she really treasures. Her primary sources of income are eggs and milk.<br /><br />Although this humble and industrious mother makes a profit, she faces the challenge of not being able to produce enough to meet the readily available market. Therefore, she is seeking funds from Kiva lenders to buy farm inputs such as good fertilizer and good-quality seeds. Through this loan, Ester should double her production, and this will translate into increased income. She then intends to save more money in the future so that she can develop her farming.<br /><br />One objective that Juhudi Kilimo aims at fulfilling is increasing the ease of accessing farm inputs and income-generating assets for farmers. Through the intervention of Juhudi Kilimo and Kiva, inputs such as fertilizers and pesticides have become more accessible to its members than buying a bottle of water. Ester is very optimistic and believes this loan will change her life completely.",
+            "loanAmount": "275.00",
+            "geocode": {
+              "city": "Kitale",
+              "country": {
+                "name": "Kenya",
+                "region": "Africa",
+                "fundsLentInCountry": 120841775
+              }
+            }
+          },
+          {
+            "name": "Cherifa",
+            "description": "Cherifa is married, 57 years old with two children. She caters and also sells the local drink. She asks for credit to buy the necessities, in particular bags of anchovies, bags of maize and bundles of firewood. She wants to have enough income to run the house well.",
+            "loanAmount": "875.00",
+            "geocode": {
+              "city": "Agoe",
+              "country": {
+                "name": "Togo",
+                "region": "Africa",
+                "fundsLentInCountry": 13719125
+              }
+            }
+          }
+        ]
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/s25/Louis_Lecture_Notes/19_JSON/score_history.json b/s25/Louis_Lecture_Notes/19_JSON/score_history.json
new file mode 100644
index 0000000000000000000000000000000000000000..f08f53ead7677faaebba9f7ea73383f68a8c68fe
--- /dev/null
+++ b/s25/Louis_Lecture_Notes/19_JSON/score_history.json
@@ -0,0 +1,14 @@
+{
+  "bob": [
+    20.0,
+    10.0
+  ],
+  "alice": [
+    30.0,
+    20.0
+  ],
+  "meena": [
+    100.0,
+    10.0
+  ]
+}
\ No newline at end of file